@@ -48,6 +48,7 @@ import { PostConsolidateAccount } from './v2/consolidateAccount';
4848import { PostCanonicalAddress } from './v2/canonicalAddress' ;
4949import { PostWalletEnableTokens } from './v2/walletEnableTokens' ;
5050import { PostWalletSweep } from './v2/walletSweep' ;
51+ import { PostWalletAccelerateTx } from './v2/walletAccelerateTx' ;
5152import { PostIsWalletAddress } from './v2/isWalletAddress' ;
5253
5354// Too large types can cause the following error
@@ -311,6 +312,12 @@ export const ExpressV2WalletSweepApiSpec = apiSpec({
311312 } ,
312313} ) ;
313314
315+ export const ExpressV2WalletAccelerateTxApiSpec = apiSpec ( {
316+ 'express.v2.wallet.accelerateTx' : {
317+ post : PostWalletAccelerateTx ,
318+ } ,
319+ } ) ;
320+
314321export type ExpressApi = typeof ExpressPingApiSpec &
315322 typeof ExpressPingExpressApiSpec &
316323 typeof ExpressLoginApiSpec &
@@ -348,6 +355,7 @@ export type ExpressApi = typeof ExpressPingApiSpec &
348355 typeof ExpressWalletSigningApiSpec &
349356 typeof ExpressV2CanonicalAddressApiSpec &
350357 typeof ExpressV2WalletSweepApiSpec &
358+ typeof ExpressV2WalletAccelerateTxApiSpec &
351359 typeof ExpressWalletManagementApiSpec ;
352360
353361export const ExpressApi : ExpressApi = {
@@ -388,6 +396,7 @@ export const ExpressApi: ExpressApi = {
388396 ...ExpressWalletSigningApiSpec ,
389397 ...ExpressV2CanonicalAddressApiSpec ,
390398 ...ExpressV2WalletSweepApiSpec ,
399+ ...ExpressV2WalletAccelerateTxApiSpec ,
391400 ...ExpressWalletManagementApiSpec ,
392401} ;
393402
0 commit comments