Skip to content

Commit fa01469

Browse files
feat(statics): add sol:trump token
2 parents 601c1a6 + f209c9d commit fa01469

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

modules/statics/src/base.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2384,6 +2384,7 @@ export enum UnderlyingAsset {
23842384
'sol:nos' = 'sol:nos',
23852385
'sol:jlp' = 'sol:jlp',
23862386
'sol:grass' = 'sol:grass',
2387+
'sol:trump' = 'sol:trump',
23872388

23882389
// TRX tokens
23892390
'trx:htx' = 'trx:htx',

modules/statics/src/coins.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18494,6 +18494,20 @@ export const coins = CoinMap.fromCoins([
1849418494
UnderlyingAsset['sol:grass'],
1849518495
SOL_TOKEN_FEATURES
1849618496
),
18497+
solToken(
18498+
'732f22a5-8ffc-4722-a194-0fdb14caf448',
18499+
'sol:trump',
18500+
'OFFICIAL TRUMP',
18501+
6,
18502+
'6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN',
18503+
UnderlyingAsset['sol:trump'],
18504+
[
18505+
...SOL_TOKEN_FEATURES,
18506+
CoinFeature.CUSTODY_BITGO_FRANKFURT,
18507+
CoinFeature.CUSTODY_BITGO_GERMANY,
18508+
CoinFeature.CUSTODY_BITGO_SINGAPORE,
18509+
]
18510+
),
1849718511

1849818512
tsolToken(
1849918513
'b98c5a7a-49c5-45f1-a6ee-b08dff596a7d',

modules/statics/test/unit/coins.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,13 @@ const custodyFeatures: Record<string, { features: CoinFeature[] }> = {
261261
'sol:wen': { features: [CoinFeature.CUSTODY_BITGO_FRANKFURT] },
262262
'sol:nos': { features: [CoinFeature.CUSTODY_BITGO_FRANKFURT] },
263263
'sol:spx': { features: [CoinFeature.CUSTODY_BITGO_FRANKFURT] },
264+
'sol:trump': {
265+
features: [
266+
CoinFeature.CUSTODY_BITGO_FRANKFURT,
267+
CoinFeature.CUSTODY_BITGO_GERMANY,
268+
CoinFeature.CUSTODY_BITGO_SINGAPORE,
269+
],
270+
},
264271
'xlm:ZUSD-GDF6VOEGRWLOZ64PQQGKD2IYWA22RLT37GJKS2EJXZHT2VLAGWLC5TOB': {
265272
features: [CoinFeature.CUSTODY_BITGO_FRANKFURT],
266273
},

0 commit comments

Comments
 (0)