File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -510,6 +510,12 @@ export enum CoinFeature {
510510 */
511511 EVM_COMPATIBLE_WP = 'evm-compatible-wp' ,
512512
513+ /**
514+ * This coin does not support EVM Keyring.
515+ * Add this feature to any EVM-family coin that should be excluded from EVM Keyring
516+ */
517+ EVM_KEYRING_UNSUPPORTED = 'evm-keyring-unsupported' ,
518+
513519 /**
514520 * This token is internal and shouldn't be exposed to users
515521 */
Original file line number Diff line number Diff line change @@ -602,7 +602,10 @@ export const COREDAO_FEATURES = [
602602 CoinFeature . EIP1559 ,
603603 CoinFeature . ERC20_BULK_TRANSACTION ,
604604] ;
605- export const TEMPO_FEATURES = EVM_FEATURES . filter ( ( feature ) => feature !== CoinFeature . ENTERPRISE_PAYS_FEES ) ;
605+ export const TEMPO_FEATURES = [
606+ ...EVM_FEATURES . filter ( ( feature ) => feature !== CoinFeature . ENTERPRISE_PAYS_FEES ) ,
607+ CoinFeature . EVM_KEYRING_UNSUPPORTED ,
608+ ] ;
606609export const HYPERLIQUID_FEATURES = [
607610 ...ACCOUNT_COIN_DEFAULT_FEATURES ,
608611 CoinFeature . MULTISIG_COLD ,
You can’t perform that action at this time.
0 commit comments