Skip to content

Commit 33b2fee

Browse files
Merge pull request #7216 from BitGo/COIN-5948
feat(statics): onboard new batch of tokens
2 parents 623eabf + f70224f commit 33b2fee

File tree

5 files changed

+54
-0
lines changed

5 files changed

+54
-0
lines changed

modules/statics/src/base.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2144,6 +2144,7 @@ export enum UnderlyingAsset {
21442144
'eth:mavia' = 'eth:mavia',
21452145
'eth:lm' = 'eth:lm',
21462146
'eth:kub' = 'eth:kub',
2147+
'eth:fidd' = 'eth:fidd',
21472148

21482149
// Ondo Tokenized Assets
21492150
'eth:qqqon' = 'qqqon',
@@ -3192,6 +3193,8 @@ export enum UnderlyingAsset {
31923193
// Nep141 tokens
31933194
'near:usdc' = 'near:usdc',
31943195
'near:usdt' = 'near:usdt',
3196+
'near:mpdao' = 'near:mpdao',
3197+
'near:stnear' = 'near:stnear',
31953198

31963199
// Nep141 testnet tokens
31973200
'tnear:tnep24dp' = 'tnear:tnep24dp',

modules/statics/src/coins/erc20Coins.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13603,4 +13603,12 @@ export const erc20Coins = [
1360313603
'0x0649cef6d11ed6f88535462e147304d3fe5ae14d',
1360413604
UnderlyingAsset['eth:kub']
1360513605
),
13606+
erc20(
13607+
'379c0ab5-7729-456b-b0b6-db74c3bd6a03',
13608+
'eth:fidd',
13609+
'Fidelity Digital Dollar',
13610+
18,
13611+
'0x7c135549504245b5eae64fc0e99fa5ebabb8e35d',
13612+
UnderlyingAsset['eth:fidd']
13613+
),
1360613614
];

modules/statics/src/coins/nep141Tokens.ts

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,27 @@ export const nep141Tokens = [
2323
UnderlyingAsset['near:usdt'],
2424
[...NEAR_TOKEN_FEATURES, CoinFeature.STABLECOIN]
2525
),
26+
nep141Token(
27+
'c34f7765-e8b6-46a5-bf03-5e547d5ebac2',
28+
'near:mpdao',
29+
'Meta Pool',
30+
6,
31+
'mpdao-token.near',
32+
'1250000000000000000000',
33+
UnderlyingAsset['near:mpdao'],
34+
NEAR_TOKEN_FEATURES
35+
),
36+
nep141Token(
37+
'04a288c1-8aee-4ff2-b59b-a3e13ce49c03',
38+
'near:stnear',
39+
'stNEAR',
40+
24,
41+
'meta-pool.near',
42+
'1250000000000000000000',
43+
UnderlyingAsset['near:stnear'],
44+
NEAR_TOKEN_FEATURES
45+
),
46+
2647
// testnet tokens
2748
tnep141Token(
2849
'de55cb4b-afaf-4ac0-b271-d7eba49eb8e9',

modules/statics/src/coins/ofcCoins.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3417,6 +3417,20 @@ export const ofcCoins = [
34173417
UnderlyingAsset['near:usdt'],
34183418
[CoinFeature.STABLECOIN]
34193419
),
3420+
ofcnep141Token(
3421+
'711a31d8-0513-449d-9649-2f9b5b0eb141',
3422+
'ofcnear:mpdao',
3423+
'Meta Pool',
3424+
6,
3425+
UnderlyingAsset['near:mpdao']
3426+
),
3427+
ofcnep141Token(
3428+
'125bd6cb-1927-408e-9045-dc55f2da7eed',
3429+
'ofcnear:stnear',
3430+
'stNEAR',
3431+
24,
3432+
UnderlyingAsset['near:stnear']
3433+
),
34203434
tofcnep141Token(
34213435
'a3a47204-c114-42d7-b673-0a5f60ca0d9e',
34223436
'ofctnear:tnep24dp',

modules/statics/src/coins/ofcErc20Coins.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4452,6 +4452,14 @@ export const tOfcErc20Coins = [
44524452
ofcerc20('abeefced-cfda-4afa-8f9c-aebfcadbecfd', 'ofceth:align', 'Aligned', 18, UnderlyingAsset['eth:align']),
44534453

44544454
ofcerc20('bcfffdee-daeb-4bfb-9fad-bfcadbecfdae', 'ofceth:xan', 'Anoma', 18, UnderlyingAsset['eth:xan']),
4455+
4456+
ofcerc20(
4457+
'a9d3645d-4a42-4e9d-999b-83e4785b3f57',
4458+
'ofceth:fidd',
4459+
'Fidelity Digital Dollar',
4460+
18,
4461+
UnderlyingAsset['eth:fidd']
4462+
),
44554463
];
44564464

44574465
function underlyingAssetForSymbol(underlyingAssetValue: string): UnderlyingAsset {

0 commit comments

Comments
 (0)