@@ -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 { PostPrebuildAndSignTransaction } from './v2/prebuildAndSignTransaction' ;
3940import { PostCoinSign } from './v2/coinSign' ;
@@ -161,6 +162,12 @@ export const ExpressV2WalletCreateAddressApiSpec = apiSpec({
161162 } ,
162163} ) ;
163164
165+ export const ExpressV2WalletSendManyApiSpec = apiSpec ( {
166+ 'express.v2.wallet.sendmany' : {
167+ post : PostSendMany ,
168+ } ,
169+ } ) ;
170+
164171export const ExpressKeychainLocalApiSpec = apiSpec ( {
165172 'express.keychain.local' : {
166173 post : PostKeychainLocal ,
@@ -256,6 +263,7 @@ export type ExpressApi = typeof ExpressPingApiSpec &
256263 typeof ExpressLightningGetStateApiSpec &
257264 typeof ExpressLightningInitWalletApiSpec &
258265 typeof ExpressLightningUnlockWalletApiSpec &
266+ typeof ExpressV2WalletSendManyApiSpec &
259267 typeof ExpressOfcSignPayloadApiSpec &
260268 typeof ExpressWalletRecoverTokenApiSpec &
261269 typeof ExpressCoinSigningApiSpec &
@@ -286,6 +294,7 @@ export const ExpressApi: ExpressApi = {
286294 ...ExpressLightningGetStateApiSpec ,
287295 ...ExpressLightningInitWalletApiSpec ,
288296 ...ExpressLightningUnlockWalletApiSpec ,
297+ ...ExpressV2WalletSendManyApiSpec ,
289298 ...ExpressOfcSignPayloadApiSpec ,
290299 ...ExpressWalletRecoverTokenApiSpec ,
291300 ...ExpressCoinSigningApiSpec ,
0 commit comments