@@ -34,6 +34,7 @@ import { PostWalletTxSignTSS } from './v2/walletTxSignTSS';
3434import { PostShareWallet } from './v2/shareWallet' ;
3535import { PutExpressWalletUpdate } from './v2/expressWalletUpdate' ;
3636import { PostFanoutUnspents } from './v2/fanoutUnspents' ;
37+ import { PostSendMany } from './v2/sendmany' ;
3738import { PostConsolidateUnspents } from './v2/consolidateunspents' ;
3839import { PostCoinSign } from './v2/coinSign' ;
3940
@@ -157,6 +158,12 @@ export const ExpressV2WalletCreateAddressApiSpec = apiSpec({
157158 } ,
158159} ) ;
159160
161+ export const ExpressV2WalletSendManyApiSpec = apiSpec ( {
162+ 'express.v2.wallet.sendmany' : {
163+ post : PostSendMany ,
164+ } ,
165+ } ) ;
166+
160167export const ExpressKeychainLocalApiSpec = apiSpec ( {
161168 'express.keychain.local' : {
162169 post : PostKeychainLocal ,
@@ -252,6 +259,7 @@ export type ExpressApi = typeof ExpressPingApiSpec &
252259 typeof ExpressLightningGetStateApiSpec &
253260 typeof ExpressLightningInitWalletApiSpec &
254261 typeof ExpressLightningUnlockWalletApiSpec &
262+ typeof ExpressV2WalletSendManyApiSpec &
255263 typeof ExpressOfcSignPayloadApiSpec &
256264 typeof ExpressWalletRecoverTokenApiSpec &
257265 typeof ExpressCoinSigningApiSpec &
@@ -282,6 +290,7 @@ export const ExpressApi: ExpressApi = {
282290 ...ExpressLightningGetStateApiSpec ,
283291 ...ExpressLightningInitWalletApiSpec ,
284292 ...ExpressLightningUnlockWalletApiSpec ,
293+ ...ExpressV2WalletSendManyApiSpec ,
285294 ...ExpressOfcSignPayloadApiSpec ,
286295 ...ExpressWalletRecoverTokenApiSpec ,
287296 ...ExpressCoinSigningApiSpec ,
0 commit comments