Skip to content

Commit 47a710b

Browse files
authored
Merge pull request #5278 from BitGo/ungate-cardano-ada
feat(statics): ungate ada for Frankfurt Trust - Bitstamp
2 parents 174e727 + 4571a8c commit 47a710b

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

modules/statics/src/coins.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ const ALGO_FEATURES = [
159159
CoinFeature.BULK_TRANSACTION,
160160
];
161161
const ADA_FEATURES = [...Ada.DEFAULT_FEATURES, CoinFeature.BULK_TRANSACTION];
162+
const ADA_FEATURES_WITH_FRANKFURT = [...ADA_FEATURES, CoinFeature.CUSTODY_BITGO_FRANKFURT];
162163
const DOT_FEATURES = [
163164
...AccountCoin.DEFAULT_FEATURES,
164165
CoinFeature.TSS,
@@ -435,14 +436,21 @@ export const coins = CoinMap.fromCoins([
435436
Networks.test.avalancheP,
436437
UnderlyingAsset.AVAXP
437438
),
438-
ada('fd4d125e-f14f-414b-bd17-6cb1393265f0', 'ada', 'Cardano ADA', Networks.main.ada, UnderlyingAsset.ADA),
439+
ada(
440+
'fd4d125e-f14f-414b-bd17-6cb1393265f0',
441+
'ada',
442+
'Cardano ADA',
443+
Networks.main.ada,
444+
UnderlyingAsset.ADA,
445+
ADA_FEATURES_WITH_FRANKFURT
446+
),
439447
ada(
440448
'1cbfb5aa-94ba-415b-b5c2-c51e801e21b3',
441449
'tada',
442450
'Testnet Cardano ADA',
443451
Networks.test.ada,
444452
UnderlyingAsset.ADA,
445-
ADA_FEATURES
453+
ADA_FEATURES_WITH_FRANKFURT
446454
),
447455
account(
448456
'ec41e62a-cc57-4aa0-9b9e-217da1226817',

modules/statics/test/unit/coins.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ const custodyFeatures: Record<string, { features: CoinFeature[] }> = {
7070
},
7171
celo: { features: [CoinFeature.CUSTODY_BITGO_GERMANY, CoinFeature.CUSTODY_BITGO_FRANKFURT] },
7272
coreum: { features: [CoinFeature.CUSTODY_BITGO_FRANKFURT] },
73+
ada: { features: [CoinFeature.CUSTODY_BITGO_FRANKFURT] },
7374
doge: {
7475
features: [
7576
CoinFeature.CUSTODY_BITGO_GERMANY,
@@ -360,6 +361,7 @@ const custodyFeatures: Record<string, { features: CoinFeature[] }> = {
360361
},
361362
tcelo: { features: [CoinFeature.CUSTODY_BITGO_GERMANY, CoinFeature.CUSTODY_BITGO_FRANKFURT] },
362363
tcoreum: { features: [CoinFeature.CUSTODY_BITGO_FRANKFURT] },
364+
tada: { features: [CoinFeature.CUSTODY_BITGO_FRANKFURT] },
363365
tdoge: { features: [CoinFeature.CUSTODY_BITGO_GERMANY, CoinFeature.CUSTODY_BITGO_FRANKFURT] },
364366
tdot: { features: [CoinFeature.CUSTODY_BITGO_FRANKFURT] },
365367
teos: { features: [CoinFeature.CUSTODY_BITGO_GERMANY, CoinFeature.CUSTODY_BITGO_FRANKFURT] },

0 commit comments

Comments
 (0)