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 4801d51 + 4626eba commit 0e76b0aCopy full SHA for 0e76b0a
modules/statics/src/base.ts
@@ -366,6 +366,11 @@ export enum CoinFeature {
366
*/
367
SHARED_EVM_SIGNING = 'shared-evm-signing',
368
369
+ /**
370
+ * This coin is EVM based coin
371
+ */
372
+ EVM_COIN = 'evm_coin',
373
+
374
/**
375
* This coin supports multisig wallets
376
modules/statics/src/coinFeatures.ts
@@ -25,6 +25,7 @@ export const ETH_FEATURES = [
25
CoinFeature.SUPPORTS_TOKENS,
26
CoinFeature.ENTERPRISE_PAYS_FEES,
27
CoinFeature.WALLET_CONNECT_DEFI,
28
+ CoinFeature.EVM_COIN,
29
];
30
export const ETH_FEATURES_WITH_MMI = [...ETH_FEATURES, CoinFeature.METAMASK_INSTITUTIONAL];
31
export const ETH_FEATURES_WITH_STAKING = [...ETH_FEATURES, CoinFeature.STAKING];
0 commit comments