Skip to content

Commit 4626eba

Browse files
feat(statics): adding EVM_COIN coin feature
Ticket: WIN-4729 TICKET: WIN-4729
1 parent 43be408 commit 4626eba

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)