Skip to content

Commit 61dff4c

Browse files
committed
feat(statics): add 11 tokens across 7 chains
- sui:haedal, opeth:cyber, avaxc:ausd, sol:bmt, sol:huma - bsc:hyper, eth:nom, eth:kite, eth:sahara, eth:epic, baseeth:home - Includes UnderlyingAsset, token definitions, and OFC entries Refs: CECHO-164 TICKET: CECHO-164
1 parent 2aba69f commit 61dff4c

File tree

8 files changed

+164
-0
lines changed

8 files changed

+164
-0
lines changed

modules/statics/src/allCoinsAndTokens.ts

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3977,6 +3977,15 @@ export const allCoinsAndTokens = [
39773977
UnderlyingAsset['baseeth:xusd'],
39783978
Networks.main.basechain
39793979
),
3980+
erc20Token(
3981+
'04191b92-7ad5-433f-9ee3-12d951ac095e',
3982+
'baseeth:home',
3983+
'Home (Defi App)',
3984+
18,
3985+
'0x4bfaa776991e85e5f8b1255461cbbd216cfc714f',
3986+
UnderlyingAsset['baseeth:home'],
3987+
Networks.main.basechain
3988+
),
39803989

39813990
// XDC mainnet tokens
39823991
xdcErc20(
@@ -6159,6 +6168,14 @@ export const allCoinsAndTokens = [
61596168
UnderlyingAsset['opeth:eqtyx'],
61606169
AccountCoin.DEFAULT_FEATURES_EXCLUDE_SINGAPORE
61616170
),
6171+
opethErc20(
6172+
'332caeea-7ceb-49cd-9079-9df278ac3685',
6173+
'opeth:cyber',
6174+
'CyberConnect',
6175+
18,
6176+
'0x14778860e937f509e651192a90589de711fb88a9',
6177+
UnderlyingAsset['opeth:cyber']
6178+
),
61626179
opethErc20(
61636180
'73beeb1f-73a1-48c1-bc08-552f7be4a57b',
61646181
'opeth:velo',
@@ -6655,6 +6672,18 @@ export const allCoinsAndTokens = [
66556672
UnderlyingAsset['sui:fud'],
66566673
SUI_TOKEN_FEATURES
66576674
),
6675+
suiToken(
6676+
'82c3392b-81ac-4c88-9df1-dc62a623adb7',
6677+
'sui:haedal',
6678+
'Haedal Protocol',
6679+
9,
6680+
'0x3a304c7feba2d819ea57c3542d68439ca2c386ba02159c740f7b406e592c62ea',
6681+
'haedal',
6682+
'HAEDAL',
6683+
'0x3a304c7feba2d819ea57c3542d68439ca2c386ba02159c740f7b406e592c62ea::haedal::HAEDAL',
6684+
UnderlyingAsset['sui:haedal'],
6685+
SUI_TOKEN_FEATURES
6686+
),
66586687
suiToken(
66596688
'0d35b697-01f6-4694-a5b1-283ecfd733ac',
66606689
'sui:afsui',

modules/statics/src/base.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2599,6 +2599,7 @@ export enum UnderlyingAsset {
25992599
'avaxc:benji' = 'avaxc:benji',
26002600
'avaxc:emdx' = 'avaxc:emdx',
26012601
'avaxc:eurc' = 'avaxc:eurc',
2602+
'avaxc:ausd' = 'avaxc:ausd',
26022603
// End FTX missing AVAXC tokens
26032604

26042605
// polygon Token ERC-20
@@ -2802,6 +2803,7 @@ export enum UnderlyingAsset {
28022803
'bsc:front' = 'bsc:front',
28032804
'bsc:hft' = 'bsc:hft',
28042805
'bsc:high' = 'bsc:high',
2806+
'bsc:hyper' = 'bsc:hyper',
28052807
'bsc:inj' = 'bsc:inj',
28062808
'bsc:iotx' = 'bsc:iotx',
28072809
'bsc:auto' = 'bsc:auto',
@@ -3028,6 +3030,7 @@ export enum UnderlyingAsset {
30283030
'baseeth:kaito' = 'baseeth:kaito',
30293031
'baseeth:xsgd' = 'baseeth:xsgd',
30303032
'baseeth:xusd' = 'baseeth:xusd',
3033+
'baseeth:home' = 'baseeth:home',
30313034

30323035
// BaseETH testnet tokens
30333036
'tbaseeth:usdc' = 'tbaseeth:usdc',
@@ -3157,6 +3160,7 @@ export enum UnderlyingAsset {
31573160
'opeth:wtgxx' = 'opeth:wtgxx',
31583161
'opeth:lngvx' = 'opeth:lngvx',
31593162
'opeth:eqtyx' = 'opeth:eqtyx',
3163+
'opeth:cyber' = 'opeth:cyber',
31603164
'opeth:velo' = 'opeth:velo',
31613165

31623166
// Optimism testnet tokens
@@ -3432,6 +3436,8 @@ export enum UnderlyingAsset {
34323436
'sol:prcl' = 'sol:prcl',
34333437
'sol:asp' = 'sol:asp',
34343438
'sol:skr' = 'sol:skr',
3439+
'sol:bmt' = 'sol:bmt',
3440+
'sol:huma' = 'sol:huma',
34353441

34363442
'tsol:txsgd' = 'sol:txsgd',
34373443
'tsol:txusd' = 'sol:txusd',
@@ -3480,6 +3486,7 @@ export enum UnderlyingAsset {
34803486
'sui:sca' = 'sui:sca',
34813487
'sui:times' = 'sui:times',
34823488
'sui:fud' = 'sui:fud',
3489+
'sui:haedal' = 'sui:haedal',
34833490
'sui:afsui' = 'sui:afsui',
34843491
'sui:navx' = 'sui:navx',
34853492
'sui:vsui' = 'sui:vsui',
@@ -3648,6 +3655,10 @@ export enum UnderlyingAsset {
36483655
'eth:pt-cusdo-28may2026' = 'eth:pt-cusdo-28may2026',
36493656
'eth:usd1cx' = 'eth:usd1cx',
36503657
'eth:ctusd1cx' = 'eth:ctusd1cx',
3658+
'eth:nom' = 'eth:nom',
3659+
'eth:kite' = 'eth:kite',
3660+
'eth:sahara' = 'eth:sahara',
3661+
'eth:epic' = 'eth:epic',
36513662

36523663
// ADA testnet tokens
36533664
'tada:water' = 'tada:water',

modules/statics/src/coins/avaxTokens.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -735,6 +735,14 @@ export const avaxTokens = [
735735
'0xc891eb4cbdeff6e073e859e987815ed1505c2acd',
736736
UnderlyingAsset['avaxc:eurc']
737737
),
738+
avaxErc20(
739+
'629cf77d-07d6-4e7d-ab6a-20b89553866a',
740+
'avaxc:ausd',
741+
'AUSD',
742+
6,
743+
'0x00000000efe302beaa2b3e6e1b18d08d69a9012a',
744+
UnderlyingAsset['avaxc:ausd']
745+
),
738746
// End FTX missing AVAXC tokens
739747
tavaxErc20(
740748
'cd107316-6e78-4936-946f-70e8fd5d8040',

modules/statics/src/coins/bscTokens.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -623,6 +623,15 @@ export const bscTokens = [
623623
UnderlyingAsset['bsc:high'],
624624
BSC_TOKEN_FEATURES
625625
),
626+
bscToken(
627+
'b98a36bf-93fc-442e-bc0f-70750ba9fb7d',
628+
'bsc:hyper',
629+
'Hyperlane',
630+
18,
631+
'0xc9d23ed2adb0f551369946bd377f8644ce1ca5c4',
632+
UnderlyingAsset['bsc:hyper'],
633+
BSC_TOKEN_FEATURES
634+
),
626635
bscToken(
627636
'be1e64ad-189e-4885-b7f0-2c661ffba041',
628637
'bsc:inj',

modules/statics/src/coins/erc20Coins.ts

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14550,6 +14550,38 @@ export const erc20Coins = [
1455014550
'0xcc4d271c881d73cd38d09ae9c5e7264aef2f6d47',
1455114551
UnderlyingAsset['eth:ctusd1cx']
1455214552
),
14553+
erc20(
14554+
'b528cf38-f49d-4b76-98d6-6aaf03794b90',
14555+
'eth:nom',
14556+
'Nomina',
14557+
18,
14558+
'0x6e6f6d696e61decd6605bd4a57836c5db6923340',
14559+
UnderlyingAsset['eth:nom']
14560+
),
14561+
erc20(
14562+
'e8aebe08-1fd6-4609-b50a-ac3d7923d553',
14563+
'eth:kite',
14564+
'Kite',
14565+
18,
14566+
'0x904567252d8f48555b7447c67dca23f0372e16be',
14567+
UnderlyingAsset['eth:kite']
14568+
),
14569+
erc20(
14570+
'8850c5c1-41da-4215-bcec-7dc0376fd7df',
14571+
'eth:sahara',
14572+
'Sahara AI',
14573+
18,
14574+
'0xfdfbb411c4a70aa7c95d5c981a6fb4da867e1111',
14575+
UnderlyingAsset['eth:sahara']
14576+
),
14577+
erc20(
14578+
'2101f10f-3fc2-45f6-ba68-d92944398898',
14579+
'eth:epic',
14580+
'Epic Chain',
14581+
18,
14582+
'0x94314a14df63779c99c0764a30e0cd22fa78fc0e',
14583+
UnderlyingAsset['eth:epic']
14584+
),
1455314585
terc20(
1455414586
'0c333619-e5a6-4f9d-8bbc-5b0e5dc64d03',
1455514587
'hteth:grtxp',

modules/statics/src/coins/ofcCoins.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2141,6 +2141,7 @@ export const ofcCoins = [
21412141
6,
21422142
UnderlyingAsset['avaxc:eurc']
21432143
),
2144+
ofcAvaxErc20('9f0a8419-c114-4809-96af-d083e2945c8d', 'ofcavaxc:ausd', 'AUSD', 6, UnderlyingAsset['avaxc:ausd']),
21442145
ofcAvaxErc20('9fb77e47-8916-4dcb-ac10-e11fa07172fb', 'ofcavaxc:nxpc', 'NEXPACE', 18, UnderlyingAsset['avaxc:nxpc']),
21452146
ofcOpethErc20('10259b23-2e2e-4574-b146-b49f1119600f', 'ofcopeth:op', 'Optimism', 18, UnderlyingAsset['opeth:op']),
21462147
ofcOpethErc20(
@@ -2477,6 +2478,7 @@ export const ofcCoins = [
24772478
18,
24782479
UnderlyingAsset['bsc:high']
24792480
),
2481+
ofcBscToken('e6ab18e7-1a9a-4522-84bb-c49e9aaa0486', 'ofcbsc:hyper', 'Hyperlane', 18, UnderlyingAsset['bsc:hyper']),
24802482
ofcBscToken(
24812483
'5c977f6a-4b1e-3f2e-9d8f-7c1e8b6f2e5a',
24822484
'ofcbsc:inj',
@@ -4078,10 +4080,19 @@ export const ofcCoins = [
40784080
),
40794081
ofcsolToken('c2d3e4f5-6a7b-4c8d-90e1-af3a4b5c6d7e', 'ofcsol:meta', 'MetaDAO', 9, UnderlyingAsset['sol:meta']),
40804082
ofcsolToken('d3e4f5a6-7b8c-4d9e-81f2-3a4b5c6d7e8f', 'ofcsol:portals', 'Portals', 9, UnderlyingAsset['sol:portals']),
4083+
ofcsolToken('b26ae13f-cc3b-43d9-8c04-a0a2b1fa63bc', 'ofcsol:bmt', 'Bubblemaps', 9, UnderlyingAsset['sol:bmt']),
4084+
ofcsolToken('758f0872-89bf-4e11-a11f-155b408ca2bf', 'ofcsol:huma', 'Huma Finance', 6, UnderlyingAsset['sol:huma']),
40814085
// New SUI OFC token
40824086
ofcSuiToken('1e01eb3d-2573-4662-aa5e-4c390e4a9b38', 'ofcsui:dmc', 'DeLorean', 9, UnderlyingAsset['sui:dmc']),
40834087
ofcSuiToken('e4f5a6b7-8c9d-4eaf-82a3-4b5c6d7e8f9a', 'ofcsui:mmt', 'Momentum', 9, UnderlyingAsset['sui:mmt']),
40844088
ofcSuiToken('3feb51ae-9625-427a-badb-acd57d3d72f5', 'ofcsui:usdsui', 'Sui Dollar', 6, UnderlyingAsset['sui:usdsui']),
4089+
ofcSuiToken(
4090+
'd9b1069e-3de7-44f0-822c-9c3dd116d26b',
4091+
'ofcsui:haedal',
4092+
'Haedal Protocol',
4093+
9,
4094+
UnderlyingAsset['sui:haedal']
4095+
),
40854096
// Tempo mainnet OFC tokens
40864097
ofcTempoToken(
40874098
'61cbeade-67a7-4f18-b60d-bca7bf66d97e',

modules/statics/src/coins/ofcErc20Coins.ts

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3796,6 +3796,20 @@ export const ofcErc20Coins = [
37963796
true,
37973797
'baseeth'
37983798
),
3799+
ofcerc20(
3800+
'6ef4c304-dcdb-4c59-ab5b-b75b47663fde',
3801+
'ofcbaseeth:home',
3802+
'Home (Defi App)',
3803+
18,
3804+
UnderlyingAsset['baseeth:home'],
3805+
undefined,
3806+
undefined,
3807+
'',
3808+
undefined,
3809+
undefined,
3810+
true,
3811+
'baseeth'
3812+
),
37993813

38003814
// Chiliz Network tokens
38013815
ofcerc20(
@@ -6098,6 +6112,36 @@ export const tOfcErc20Coins = [
60986112
underlyingAssetForSymbol('eth:apxusd')
60996113
),
61006114
ofcerc20('a60515bf-4b68-42d4-94ca-b2f74449ac15', 'ofceth:q', 'Quack-ai', 18, underlyingAssetForSymbol('eth:q')),
6115+
ofcerc20('48ae1eeb-3154-484b-a3a0-d44a599943b3', 'ofceth:nom', 'Nomina', 18, underlyingAssetForSymbol('eth:nom')),
6116+
ofcerc20('3818ce74-6854-40d4-8007-ca726b5dfff0', 'ofceth:kite', 'Kite', 18, underlyingAssetForSymbol('eth:kite')),
6117+
ofcerc20(
6118+
'81cdf38c-f6d6-4e93-9dda-aae22104834d',
6119+
'ofceth:sahara',
6120+
'Sahara AI',
6121+
18,
6122+
underlyingAssetForSymbol('eth:sahara')
6123+
),
6124+
ofcerc20(
6125+
'0030515b-8a8c-4048-b646-bae43097c51b',
6126+
'ofceth:epic',
6127+
'Epic Chain',
6128+
18,
6129+
underlyingAssetForSymbol('eth:epic')
6130+
),
6131+
ofcerc20(
6132+
'22d66acc-976b-4dfb-be64-c6c963938424',
6133+
'ofcopeth:cyber',
6134+
'CyberConnect',
6135+
18,
6136+
UnderlyingAsset['opeth:cyber'],
6137+
undefined,
6138+
undefined,
6139+
'',
6140+
undefined,
6141+
undefined,
6142+
true,
6143+
'opeth'
6144+
),
61016145
];
61026146

61036147
function underlyingAssetForSymbol(underlyingAssetValue: string): UnderlyingAsset {

modules/statics/src/coins/solTokens.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3674,4 +3674,24 @@ export const solTokens = [
36743674
UnderlyingAsset['sol:skr'],
36753675
SOL_TOKEN_FEATURES
36763676
),
3677+
solToken(
3678+
'28b38725-0eae-4b4e-a8e6-8858313f86fb',
3679+
'sol:bmt',
3680+
'Bubblemaps',
3681+
9,
3682+
'FQgtfugBdpFN7PZ6NdPrZpVLDBrPGxXesi4gVu3vErhY',
3683+
'FQgtfugBdpFN7PZ6NdPrZpVLDBrPGxXesi4gVu3vErhY',
3684+
UnderlyingAsset['sol:bmt'],
3685+
SOL_TOKEN_FEATURES
3686+
),
3687+
solToken(
3688+
'f790b6ef-a59d-40e1-98b2-6d047c41d728',
3689+
'sol:huma',
3690+
'Huma Finance',
3691+
6,
3692+
'HUMA1821qVDKta3u2ovmfDQeW2fSQouSKE8fkF44wvGw',
3693+
'HUMA1821qVDKta3u2ovmfDQeW2fSQouSKE8fkF44wvGw',
3694+
UnderlyingAsset['sol:huma'],
3695+
SOL_TOKEN_FEATURES
3696+
),
36773697
];

0 commit comments

Comments
 (0)