We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 802cc5d + f4088cc commit d9160caCopy full SHA for d9160ca
modules/statics/src/base.ts
@@ -496,6 +496,11 @@ export enum CoinFeature {
496
* This coin supports one-step deposit
497
*/
498
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',
504
}
505
506
/**
modules/statics/src/coinFeatures.ts
@@ -728,4 +728,5 @@ export const CANTON_FEATURES = [
728
CoinFeature.CUSTODY_BITGO_EUROPE_APS,
729
CoinFeature.CUSTODY_BITGO_FRANKFURT,
730
CoinFeature.SUPPORTS_ONE_STEP_DEPOSIT,
731
+ CoinFeature.REQUIRES_WALLET_INITIALIZATION_TRANSACTION,
732
];
0 commit comments