File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,10 @@ export const ACCOUNT_COIN_DEFAULT_FEATURES_EXCLUDE_SINGAPORE = ACCOUNT_COIN_DEFA
2121 ( feature ) => feature !== CoinFeature . CUSTODY_BITGO_SINGAPORE
2222) ;
2323
24+ export const ACCOUNT_COIN_DEFAULT_FEATURES_EXCLUDE_MENA_FZE = ACCOUNT_COIN_DEFAULT_FEATURES . filter (
25+ ( feature ) => feature !== CoinFeature . CUSTODY_BITGO_MENA_FZE
26+ ) ;
27+
2428export const ETH_FEATURES = [
2529 ...ACCOUNT_COIN_DEFAULT_FEATURES ,
2630 CoinFeature . SUPPORTS_TOKENS ,
@@ -276,6 +280,10 @@ export const BSC_TOKEN_FEATURES_EXCLUDE_SINGAPORE = [
276280 ...ACCOUNT_COIN_DEFAULT_FEATURES_EXCLUDE_SINGAPORE ,
277281 CoinFeature . BULK_TRANSACTION ,
278282] ;
283+ export const BSC_TOKEN_FEATURES_EXCLUDE_MENA_FZE = [
284+ ...ACCOUNT_COIN_DEFAULT_FEATURES_EXCLUDE_MENA_FZE ,
285+ CoinFeature . BULK_TRANSACTION ,
286+ ] ;
279287export const STX_FEATURES = [
280288 ...ACCOUNT_COIN_DEFAULT_FEATURES ,
281289 CoinFeature . CUSTODY_BITGO_GERMANY ,
Original file line number Diff line number Diff line change 11import { bscToken , tbscToken , AccountCoin } from '../account' ;
22import { UnderlyingAsset , CoinFeature } from '../base' ;
3- import { BSC_TOKEN_FEATURES , BSC_TOKEN_FEATURES_EXCLUDE_SINGAPORE } from '../coinFeatures' ;
3+ import {
4+ BSC_TOKEN_FEATURES ,
5+ BSC_TOKEN_FEATURES_EXCLUDE_SINGAPORE ,
6+ BSC_TOKEN_FEATURES_EXCLUDE_MENA_FZE ,
7+ } from '../coinFeatures' ;
48
59export const bscTokens = [
610 bscToken (
@@ -1399,6 +1403,6 @@ export const bscTokens = [
13991403 18 ,
14001404 '0x000ae314e2a2172a039b26378814c252734f556a' ,
14011405 UnderlyingAsset [ 'bsc:aster' ] ,
1402- BSC_TOKEN_FEATURES
1406+ BSC_TOKEN_FEATURES_EXCLUDE_MENA_FZE
14031407 ) ,
14041408] ;
You can’t perform that action at this time.
0 commit comments