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: 1 addition & 5 deletions modules/statics/src/allCoinsAndTokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,6 @@ export const allCoinsAndTokens = [
CoinFeature.USES_NON_PACKED_ENCODING_FOR_TXDATA,
CoinFeature.SHARED_EVM_SDK,
CoinFeature.SHARED_EVM_SIGNING,
CoinFeature.SHARED_EVM_MESSAGE_SIGNING,
CoinFeature.EVM_COMPATIBLE_IMS,
CoinFeature.EVM_COMPATIBLE_UI,
CoinFeature.EVM_NON_BITGO_RECOVERY,
Expand All @@ -429,7 +428,6 @@ export const allCoinsAndTokens = [
CoinFeature.USES_NON_PACKED_ENCODING_FOR_TXDATA,
CoinFeature.SHARED_EVM_SDK,
CoinFeature.SHARED_EVM_SIGNING,
CoinFeature.SHARED_EVM_MESSAGE_SIGNING,
CoinFeature.EVM_COMPATIBLE_IMS,
CoinFeature.EVM_COMPATIBLE_UI,
CoinFeature.EVM_NON_BITGO_RECOVERY,
Expand Down Expand Up @@ -882,7 +880,6 @@ export const allCoinsAndTokens = [
...EVM_FEATURES,
CoinFeature.SHARED_EVM_SIGNING,
CoinFeature.SHARED_EVM_SDK,
CoinFeature.SHARED_EVM_MESSAGE_SIGNING,
CoinFeature.EVM_COMPATIBLE_IMS,
CoinFeature.EVM_COMPATIBLE_UI,
CoinFeature.EVM_UNSIGNED_SWEEP_RECOVERY,
Expand Down Expand Up @@ -1566,7 +1563,7 @@ export const allCoinsAndTokens = [
18,
UnderlyingAsset.MON,
BaseUnit.ETH,
[...EVM_FEATURES, CoinFeature.SHARED_EVM_SIGNING, CoinFeature.SHARED_EVM_MESSAGE_SIGNING]
[...EVM_FEATURES, CoinFeature.SHARED_EVM_SIGNING]
),
account(
'5c5ebe50-fa27-4312-ae3d-7032520aedb5',
Expand All @@ -1580,7 +1577,6 @@ export const allCoinsAndTokens = [
...EVM_FEATURES,
CoinFeature.SHARED_EVM_SIGNING,
CoinFeature.SHARED_EVM_SDK,
CoinFeature.SHARED_EVM_MESSAGE_SIGNING,
CoinFeature.EVM_UNSIGNED_SWEEP_RECOVERY,
CoinFeature.EVM_NON_BITGO_RECOVERY,
]
Expand Down
5 changes: 1 addition & 4 deletions modules/statics/src/coinFeatures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ export const ETH_FEATURES = [
CoinFeature.WALLET_CONNECT_DEFI,
CoinFeature.EVM_COIN,
CoinFeature.STUCK_TRANSACTION_MANAGEMENT_ONCHAIN,
CoinFeature.SHARED_EVM_MESSAGE_SIGNING,
];
export const ETH_FEATURES_WITH_MMI = [...ETH_FEATURES, CoinFeature.METAMASK_INSTITUTIONAL];
export const ETH_FEATURES_WITH_STAKING = [...ETH_FEATURES, CoinFeature.STAKING];
Expand Down Expand Up @@ -256,7 +257,6 @@ export const POLYGON_FEATURES = [
CoinFeature.MPCV2,
CoinFeature.STUCK_TRANSACTION_MANAGEMENT_TSS,
CoinFeature.BULK_TRANSACTION,
CoinFeature.SHARED_EVM_MESSAGE_SIGNING,
CoinFeature.ERC20_BULK_TRANSACTION,
];

Expand Down Expand Up @@ -513,7 +513,6 @@ export const ARBETH_FEATURES = [
CoinFeature.MULTISIG,
CoinFeature.BULK_TRANSACTION,
CoinFeature.ERC20_BULK_TRANSACTION,
CoinFeature.SHARED_EVM_MESSAGE_SIGNING,
CoinFeature.STUCK_TRANSACTION_MANAGEMENT_TSS,
];
export const OPETH_FEATURES = [
Expand All @@ -531,7 +530,6 @@ export const OPETH_FEATURES = [
CoinFeature.WALLET_CONNECT_DEFI,
CoinFeature.BULK_TRANSACTION,
CoinFeature.ERC20_BULK_TRANSACTION,
CoinFeature.SHARED_EVM_MESSAGE_SIGNING,
CoinFeature.STUCK_TRANSACTION_MANAGEMENT_TSS,
];
export const ZKETH_FEATURES = [
Expand Down Expand Up @@ -731,7 +729,6 @@ export const FLR_FEATURES = [
CoinFeature.MULTISIG_SUPPORT_GATED,
CoinFeature.USES_NON_PACKED_ENCODING_FOR_TXDATA,
CoinFeature.ERC20_BULK_TRANSACTION,
CoinFeature.SHARED_EVM_MESSAGE_SIGNING,
];

export const WFLR_FEATURES = [...ACCOUNT_COIN_DEFAULT_FEATURES, CoinFeature.STABLECOIN, CoinFeature.STAKING];
Expand Down