Skip to content

Commit 0e76b0a

Browse files
Merge pull request #6246 from BitGo/WIN-4729
feat(statics): adding EVM_COIN coin feature
2 parents 4801d51 + 4626eba commit 0e76b0a

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
@@ -366,6 +366,11 @@ export enum CoinFeature {
366366
*/
367367
SHARED_EVM_SIGNING = 'shared-evm-signing',
368368

369+
/**
370+
* This coin is EVM based coin
371+
*/
372+
EVM_COIN = 'evm_coin',
373+
369374
/**
370375
* This coin supports multisig wallets
371376
*/

modules/statics/src/coinFeatures.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export const ETH_FEATURES = [
2525
CoinFeature.SUPPORTS_TOKENS,
2626
CoinFeature.ENTERPRISE_PAYS_FEES,
2727
CoinFeature.WALLET_CONNECT_DEFI,
28+
CoinFeature.EVM_COIN,
2829
];
2930
export const ETH_FEATURES_WITH_MMI = [...ETH_FEATURES, CoinFeature.METAMASK_INSTITUTIONAL];
3031
export const ETH_FEATURES_WITH_STAKING = [...ETH_FEATURES, CoinFeature.STAKING];

0 commit comments

Comments
 (0)