Skip to content

Commit 812af4e

Browse files
Merge pull request #6074 from BitGo/WIN-5371
chore: gate the dragonx token for mena fze trust
2 parents 1d6018f + 01a310e commit 812af4e

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

modules/statics/src/coins/erc20Coins.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -836,7 +836,11 @@ export const erc20Coins = [
836836
18,
837837
'0x96a5399d07896f757bd4c6ef56461f58db951862',
838838
UnderlyingAsset['eth:dragonx'],
839-
AccountCoin.DEFAULT_FEATURES_EXCLUDE_SINGAPORE
839+
AccountCoin.getFeaturesExcluding([
840+
CoinFeature.CUSTODY_BITGO_SINGAPORE,
841+
CoinFeature.CUSTODY_BITGO_CUSTODY_MENA_FZE,
842+
CoinFeature.CUSTODY_BITGO_MENA_FZE,
843+
])
840844
),
841845
erc20(
842846
'bcb2af13-b64d-403a-bb61-1990e6286fcd',

modules/statics/test/unit/coins.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -627,6 +627,19 @@ const coinsWithExcludedFeatures: Record<string, { features: CoinFeature[] }> = {
627627
CoinFeature.CUSTODY_BITGO_FRANKFURT,
628628
],
629629
},
630+
'eth:dragonx': {
631+
features: [
632+
CoinFeature.ACCOUNT_MODEL,
633+
CoinFeature.REQUIRES_BIG_NUMBER,
634+
CoinFeature.VALUELESS_TRANSFER,
635+
CoinFeature.TRANSACTION_DATA,
636+
CoinFeature.CUSTODY,
637+
CoinFeature.CUSTODY_BITGO_TRUST,
638+
CoinFeature.CUSTODY_BITGO_KOREA,
639+
CoinFeature.CUSTODY_BITGO_EUROPE_APS,
640+
CoinFeature.CUSTODY_BITGO_FRANKFURT,
641+
],
642+
},
630643
'avaxc:nxpc': {
631644
features: [
632645
CoinFeature.ACCOUNT_MODEL,

0 commit comments

Comments
 (0)