Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions modules/statics/src/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -509,6 +509,12 @@ export enum CoinFeature {
*/
EVM_COMPATIBLE_WP = 'evm-compatible-wp',

/**
* This coin does not support EVM Keyring.
* Add this feature to any EVM-family coin that should be excluded from EVM Keyring
*/
EVM_KEYRING_UNSUPPORTED = 'evm-keyring-unsupported',

/**
* This token is internal and shouldn't be exposed to users
*/
Expand Down
5 changes: 4 additions & 1 deletion modules/statics/src/coinFeatures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,10 @@ export const COREDAO_FEATURES = [
CoinFeature.EIP1559,
CoinFeature.ERC20_BULK_TRANSACTION,
];
export const TEMPO_FEATURES = EVM_FEATURES.filter((feature) => feature !== CoinFeature.ENTERPRISE_PAYS_FEES);
export const TEMPO_FEATURES = [
...EVM_FEATURES.filter((feature) => feature !== CoinFeature.ENTERPRISE_PAYS_FEES),
CoinFeature.EVM_KEYRING_UNSUPPORTED,
];
export const HYPERLIQUID_FEATURES = [
...ACCOUNT_COIN_DEFAULT_FEATURES,
CoinFeature.MULTISIG_COLD,
Expand Down
Loading