Skip to content

Commit d9160ca

Browse files
Merge pull request #7578 from BitGo/COIN-6607
feat: add new coin feature - wallet initialization tx
2 parents 802cc5d + f4088cc commit d9160ca

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

modules/statics/src/base.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -496,6 +496,11 @@ export enum CoinFeature {
496496
* This coin supports one-step deposit
497497
*/
498498
SUPPORTS_ONE_STEP_DEPOSIT = 'supports-one-step-deposit',
499+
500+
/**
501+
* This coin requires a wallet initialization transaction
502+
*/
503+
REQUIRES_WALLET_INITIALIZATION_TRANSACTION = 'requires-wallet-initialization-transaction',
499504
}
500505

501506
/**

modules/statics/src/coinFeatures.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -728,4 +728,5 @@ export const CANTON_FEATURES = [
728728
CoinFeature.CUSTODY_BITGO_EUROPE_APS,
729729
CoinFeature.CUSTODY_BITGO_FRANKFURT,
730730
CoinFeature.SUPPORTS_ONE_STEP_DEPOSIT,
731+
CoinFeature.REQUIRES_WALLET_INITIALIZATION_TRANSACTION,
731732
];

0 commit comments

Comments
 (0)