Skip to content

Commit 5184d45

Browse files
authored
Merge pull request #7592 from BitGo/COIN-6617-wmx-ton-tokens
feat(statics): added new batch of tokens COIN-6617
2 parents 001c662 + 7dda05a commit 5184d45

File tree

5 files changed

+55
-0
lines changed

5 files changed

+55
-0
lines changed

modules/statics/src/base.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2320,6 +2320,7 @@ export enum UnderlyingAsset {
23202320
'eth:usdi' = 'eth:usdi',
23212321
'eth:tea' = 'eth:tea',
23222322
'eth:ofc' = 'eth:ofc',
2323+
'eth:wxm' = 'eth:wxm',
23232324

23242325
'xlm:BST-GADDFE4R72YUP2AOEL67OHZN3GJQYPC3VE734N2XFMEGRR2L32CZ3XYZ' = 'xlm:BST-GADDFE4R72YUP2AOEL67OHZN3GJQYPC3VE734N2XFMEGRR2L32CZ3XYZ',
23252326
'xlm:VELO-GDM4RQUQQUVSKQA7S6EM7XBZP3FCGH4Q7CL6TABQ7B2BEJ5ERARM2M5M' = 'xlm:VELO-GDM4RQUQQUVSKQA7S6EM7XBZP3FCGH4Q7CL6TABQ7B2BEJ5ERARM2M5M',
@@ -3320,6 +3321,10 @@ export enum UnderlyingAsset {
33203321

33213322
// TON mainnet tokens
33223323
'ton:usdt' = 'ton:usdt',
3324+
'ton:usde' = 'ton:usde',
3325+
'ton:not' = 'ton:not',
3326+
'ton:cati' = 'ton:cati',
3327+
'ton:dogs' = 'ton:dogs',
33233328

33243329
// TON testnet tokens
33253330
'tton:ukwny-us' = 'tton:ukwny-us',

modules/statics/src/coins/erc20Coins.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14059,4 +14059,13 @@ export const erc20Coins = [
1405914059
'0x9cb7a4ef0cae65b07362bc679a0b874041e3da53',
1406014060
UnderlyingAsset['eth:ofc']
1406114061
),
14062+
14063+
erc20(
14064+
'23b21214-3fe0-4785-8324-46a6814a334e',
14065+
'eth:wxm',
14066+
'WeatherXM',
14067+
18,
14068+
'0xde654f497a563dd7a121c176a125dd2f11f13a83',
14069+
UnderlyingAsset['eth:wxm']
14070+
),
1406214071
];

modules/statics/src/coins/jettonTokens.ts

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,42 @@ export const jettonTokens = [
1313
UnderlyingAsset['ton:usdt'],
1414
TON_TOKEN_FEATURES
1515
),
16+
jettonToken(
17+
'c8e53be1-4313-40eb-a2ca-7ab92e89eb1a',
18+
'ton:usde',
19+
'Ethena USDe',
20+
6,
21+
'EQAIb6KmdfdDR7CN1GBqVJuP25iCnLKCvBlJ07Evuu2dzP5f',
22+
UnderlyingAsset['ton:usde'],
23+
TON_TOKEN_FEATURES
24+
),
25+
jettonToken(
26+
'3879d8a3-5273-455e-9c9d-de6784953b34',
27+
'ton:not',
28+
'Notcoin',
29+
9,
30+
'EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT',
31+
UnderlyingAsset['ton:not'],
32+
TON_TOKEN_FEATURES
33+
),
34+
jettonToken(
35+
'819f4d1f-61d6-45be-950c-9033b8310536',
36+
'ton:cati',
37+
'Catizen',
38+
9,
39+
'EQD-cvR0Nz6XAyRBvbhz-abTrRC6sI5tvHvvpeQraV9UAAD7',
40+
UnderlyingAsset['ton:cati'],
41+
TON_TOKEN_FEATURES
42+
),
43+
jettonToken(
44+
'59b2e53f-9f11-416e-b22b-2aa27397a919',
45+
'ton:dogs',
46+
'Dogs',
47+
9,
48+
'EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS',
49+
UnderlyingAsset['ton:dogs'],
50+
TON_TOKEN_FEATURES
51+
),
1652

1753
// testnet tokens
1854
tjettonToken(

modules/statics/src/coins/ofcCoins.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3608,6 +3608,10 @@ export const ofcCoins = [
36083608
UnderlyingAsset['thash:ylds']
36093609
),
36103610
ofcTonToken('c0e7396b-d21a-4b5a-b547-fdfe001cf3ba', 'ofcton:usdt', 'Ton USDT', 6, UnderlyingAsset['ton:usdt']),
3611+
ofcTonToken('8977a6f0-0864-4250-a060-6ff385d304f9', 'ofcton:usde', 'Ethena USDe', 6, UnderlyingAsset['ton:usde']),
3612+
ofcTonToken('827bf2c7-a741-406f-9ed4-fb0f3c33b01a', 'ofcton:not', 'Notcoin', 9, UnderlyingAsset['ton:not']),
3613+
ofcTonToken('874a497e-61a8-45b5-abe1-1d9637f49264', 'ofcton:cati', 'Catizen', 9, UnderlyingAsset['ton:cati']),
3614+
ofcTonToken('41ee59d6-2484-429c-aad1-5e79ae766c4b', 'ofcton:dogs', 'Dogs', 9, UnderlyingAsset['ton:dogs']),
36113615
tofcTonToken(
36123616
'e7d516c1-b975-4905-b5d0-8460f6ea7eb9',
36133617
'ofctton:ukwny-us',

modules/statics/src/coins/ofcErc20Coins.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4550,6 +4550,7 @@ export const tOfcErc20Coins = [
45504550
ofcerc20('884a97f2-5808-4614-814e-2cd1d17d29df', 'ofceth:usdi', 'USDi', 6, UnderlyingAsset['eth:usdi']),
45514551
ofcerc20('f4e98148-b703-4608-b416-67cd89c8a9f0', 'ofceth:tea', 'Tea', 18, UnderlyingAsset['eth:tea']),
45524552
ofcerc20('727298fe-56c5-477a-92af-5b4139e792ea', 'ofceth:ofc', 'OneFootball Club', 18, UnderlyingAsset['eth:ofc']),
4553+
ofcerc20('10c41a70-8bd2-4415-af52-fefe3af01132', 'ofceth:wxm', 'WeatherXM', 18, UnderlyingAsset['eth:wxm']),
45534554
];
45544555

45554556
function underlyingAssetForSymbol(underlyingAssetValue: string): UnderlyingAsset {

0 commit comments

Comments
 (0)