Skip to content

Commit 5428d17

Browse files
Merge pull request #8343 from BitGo/CECHO-513-2
feat(statics): add bitkub batch 4 ungated tokens
2 parents 30e144d + fe01dd5 commit 5428d17

7 files changed

Lines changed: 171 additions & 2 deletions

File tree

modules/statics/src/allCoinsAndTokens.ts

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3986,6 +3986,24 @@ export const allCoinsAndTokens = [
39863986
UnderlyingAsset['baseeth:home'],
39873987
Networks.main.basechain
39883988
),
3989+
erc20Token(
3990+
'0e7dc822-c2e2-430b-9357-42bc125744a5',
3991+
'baseeth:c',
3992+
'Chainbase',
3993+
18,
3994+
'0xba12bc7b210e61e5d3110b997a63ea216e0e18f7',
3995+
UnderlyingAsset['baseeth:c'],
3996+
Networks.main.basechain
3997+
),
3998+
erc20Token(
3999+
'd79ded43-b6f9-45ca-9e71-8284b315ee2d',
4000+
'baseeth:carv',
4001+
'Carv',
4002+
18,
4003+
'0xc08cd26474722ce93f4d0c34d16201461c10aa8c',
4004+
UnderlyingAsset['baseeth:carv'],
4005+
Networks.main.basechain
4006+
),
39894007

39904008
// XDC mainnet tokens
39914009
xdcErc20(
@@ -6860,6 +6878,18 @@ export const allCoinsAndTokens = [
68606878
UnderlyingAsset['sui:usdsui'],
68616879
[...SUI_TOKEN_FEATURES, CoinFeature.STABLECOIN]
68626880
),
6881+
suiToken(
6882+
'c0f3db23-310b-4764-af0b-ede10f843db4',
6883+
'sui:blue',
6884+
'Bluefin',
6885+
9,
6886+
'0xe1b45a0e641b9955a20aa0ad1c1f4ad86aad8afb07296d4085e349a50e90bdca',
6887+
'blue',
6888+
'BLUE',
6889+
'0xe1b45a0e641b9955a20aa0ad1c1f4ad86aad8afb07296d4085e349a50e90bdca::blue::BLUE',
6890+
UnderlyingAsset['sui:blue'],
6891+
SUI_TOKEN_FEATURES
6892+
),
68636893
tsuiToken(
68646894
'0b8a7919-c37e-4be8-8338-7fc13c6c875e',
68656895
'tsui:deep',

modules/statics/src/base.ts

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1949,6 +1949,7 @@ export enum UnderlyingAsset {
19491949
'sol:usdc' = 'sol:usdc',
19501950
'sol:agri' = 'sol:agri',
19511951
'sol:usdca' = 'sol:usdca',
1952+
'sol:sonic' = 'sol:sonic',
19521953
USCC = 'uscc',
19531954
USDC = 'usdc',
19541955
'USDC-POS-WORMHOLE' = 'usdc-pos-wormhole',
@@ -2905,6 +2906,10 @@ export enum UnderlyingAsset {
29052906
'bsc:iost' = 'bsc:iost',
29062907
'bsc:sto' = 'bsc:sto',
29072908
'bsc:pt-cusdo-29oct2026' = 'bsc:pt-cusdo-29oct2026',
2909+
'bsc:mito' = 'bsc:mito',
2910+
'bsc:shell' = 'bsc:shell',
2911+
'bsc:hemi' = 'bsc:hemi',
2912+
'bsc:cookie' = 'bsc:cookie',
29082913

29092914
// BSC NFTs
29102915
// generic NFTs
@@ -3038,6 +3043,8 @@ export enum UnderlyingAsset {
30383043
'baseeth:xsgd' = 'baseeth:xsgd',
30393044
'baseeth:xusd' = 'baseeth:xusd',
30403045
'baseeth:home' = 'baseeth:home',
3046+
'baseeth:c' = 'baseeth:c',
3047+
'baseeth:carv' = 'baseeth:carv',
30413048

30423049
// BaseETH testnet tokens
30433050
'tbaseeth:usdc' = 'tbaseeth:usdc',
@@ -3510,7 +3517,7 @@ export enum UnderlyingAsset {
35103517
'sui:dmc' = 'sui:dmc',
35113518
'sui:mmt' = 'sui:mmt',
35123519
'sui:usdsui' = 'sui:usdsui',
3513-
3520+
'sui:blue' = 'sui:blue',
35143521
// Sui testnet tokens
35153522
'tsui:deep' = 'tsui:deep',
35163523
'tsui:wal' = 'tsui:wal',
@@ -3670,7 +3677,10 @@ export enum UnderlyingAsset {
36703677
'eth:kite' = 'eth:kite',
36713678
'eth:sahara' = 'eth:sahara',
36723679
'eth:epic' = 'eth:epic',
3673-
3680+
'eth:el' = 'eth:el',
3681+
'eth:kernel' = 'eth:kernel',
3682+
'eth:tree' = 'eth:tree',
3683+
'eth:zkc' = 'eth:zkc',
36743684
// ADA testnet tokens
36753685
'tada:water' = 'tada:water',
36763686
'tada:tusda' = 'tada:tusda',

modules/statics/src/coins/bscTokens.ts

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1570,4 +1570,40 @@ export const bscTokens = [
15701570
UnderlyingAsset['bsc:pt-cusdo-29oct2026'],
15711571
BSC_TOKEN_FEATURES
15721572
),
1573+
bscToken(
1574+
'54f999b6-1022-47e1-a3b3-f946c5c746ab',
1575+
'bsc:mito',
1576+
'Mitosis',
1577+
18,
1578+
'0x8e1e6bf7e13c400269987b65ab2b5724b016caef',
1579+
UnderlyingAsset['bsc:mito'],
1580+
BSC_TOKEN_FEATURES
1581+
),
1582+
bscToken(
1583+
'3648531c-b448-498e-828a-5fb6147ca8c6',
1584+
'bsc:shell',
1585+
'MyShell',
1586+
18,
1587+
'0xf2c88757f8d03634671208935974b60a2a28bdb3',
1588+
UnderlyingAsset['bsc:shell'],
1589+
BSC_TOKEN_FEATURES
1590+
),
1591+
bscToken(
1592+
'ff180e4c-40cb-4988-ad84-a5a90ec86df1',
1593+
'bsc:hemi',
1594+
'Hemi',
1595+
18,
1596+
'0x5ffd0eadc186af9512542d0d5e5eafc65d5afc5b',
1597+
UnderlyingAsset['bsc:hemi'],
1598+
BSC_TOKEN_FEATURES
1599+
),
1600+
bscToken(
1601+
'8fe8434f-4060-46a8-9547-1cfd3af7b175',
1602+
'bsc:cookie',
1603+
'Cookie DAO',
1604+
18,
1605+
'0xc0041ef357b183448b235a8ea73ce4e4ec8c265f',
1606+
UnderlyingAsset['bsc:cookie'],
1607+
BSC_TOKEN_FEATURES
1608+
),
15731609
];

modules/statics/src/coins/erc20Coins.ts

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14590,6 +14590,38 @@ export const erc20Coins = [
1459014590
'0x6c76de483f1752ac8473e2b4983a873991e70da7',
1459114591
UnderlyingAsset['eth:btr']
1459214592
),
14593+
erc20(
14594+
'2ebd4f80-ee3f-4792-8ab5-4c6f84dc30ed',
14595+
'eth:el',
14596+
'Elysia',
14597+
18,
14598+
'0x2781246fe707bb15cee3e5ea354e2154a2877b16',
14599+
UnderlyingAsset['eth:el']
14600+
),
14601+
erc20(
14602+
'6ad92e47-26c4-4d1c-913f-3bc7c9f94570',
14603+
'eth:kernel',
14604+
'KernelDAO',
14605+
18,
14606+
'0x3f80b1c54ae920be41a77f8b902259d48cf24ccf',
14607+
UnderlyingAsset['eth:kernel']
14608+
),
14609+
erc20(
14610+
'86fd483d-8fc0-4926-9b17-5ea8a5c095d6',
14611+
'eth:tree',
14612+
'Treehouse',
14613+
18,
14614+
'0x77146784315ba81904d654466968e3a7c196d1f3',
14615+
UnderlyingAsset['eth:tree']
14616+
),
14617+
erc20(
14618+
'60ce23fb-c841-4bc2-8a92-4ce908998c9d',
14619+
'eth:zkc',
14620+
'Boundless',
14621+
18,
14622+
'0x000006c2a22ff4a44ff1f5d0f2ed65f781f55555',
14623+
UnderlyingAsset['eth:zkc']
14624+
),
1459314625
terc20(
1459414626
'0c333619-e5a6-4f9d-8bbc-5b0e5dc64d03',
1459514627
'hteth:grtxp',

modules/statics/src/coins/ofcCoins.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -817,6 +817,8 @@ export const ofcCoins = [
817817
UnderlyingAsset['sol:usdca'],
818818
[...SOL_TOKEN_FEATURES, CoinFeature.STABLECOIN]
819819
),
820+
ofcsolToken('eac1b075-0c6e-4655-8b86-4ebe0f1f9552', 'ofcsol:sonic', 'Sonic SVM', 9, UnderlyingAsset['sol:sonic']),
821+
820822
ofcsolToken('a6b1c9d4-8e5f-4a0c-9b3d-7f9e0a4c6b8d', 'ofcsol:prime', 'HASTRA PRIME', 6, UnderlyingAsset['sol:prime']),
821823
ofcsolToken(
822824
'b7c2d0e5-9f6a-4b1d-9c4e-8a0f1b5d7c9e',
@@ -4074,6 +4076,10 @@ export const ofcCoins = [
40744076
),
40754077
// New BSC OFC token
40764078
ofcBscToken('b4200c85-f550-44d6-a6cb-a590f19773b0', 'ofcbsc:sto', 'StakeStone', 18, UnderlyingAsset['bsc:sto']),
4079+
ofcBscToken('167c65f6-c097-462f-99ec-18ab234a935b', 'ofcbsc:mito', 'Mitosis', 18, UnderlyingAsset['bsc:mito']),
4080+
ofcBscToken('b1ac3a84-4fa7-4947-8e41-d31a15ee7d97', 'ofcbsc:shell', 'MyShell', 18, UnderlyingAsset['bsc:shell']),
4081+
ofcBscToken('5c0d0323-65eb-4924-b27f-2eece61564c6', 'ofcbsc:hemi', 'Hemi', 18, UnderlyingAsset['bsc:hemi']),
4082+
ofcBscToken('0b596f43-f29e-48a1-a3ac-ea91b2236038', 'ofcbsc:cookie', 'Cookie DAO', 18, UnderlyingAsset['bsc:cookie']),
40774083
// New Arbitrum OFC token
40784084
ofcArbethErc20(
40794085
'd58490c0-07d2-4642-8af7-efa2453392e9',
@@ -4109,6 +4115,7 @@ export const ofcCoins = [
41094115
ofcSuiToken('1e01eb3d-2573-4662-aa5e-4c390e4a9b38', 'ofcsui:dmc', 'DeLorean', 9, UnderlyingAsset['sui:dmc']),
41104116
ofcSuiToken('e4f5a6b7-8c9d-4eaf-82a3-4b5c6d7e8f9a', 'ofcsui:mmt', 'Momentum', 9, UnderlyingAsset['sui:mmt']),
41114117
ofcSuiToken('3feb51ae-9625-427a-badb-acd57d3d72f5', 'ofcsui:usdsui', 'Sui Dollar', 6, UnderlyingAsset['sui:usdsui']),
4118+
ofcSuiToken('1d6bb15c-6f71-47e2-a42c-1bc138c3c3b4', 'ofcsui:blue', 'Bluefin', 9, UnderlyingAsset['sui:blue']),
41124119
ofcSuiToken(
41134120
'd9b1069e-3de7-44f0-822c-9c3dd116d26b',
41144121
'ofcsui:haedal',

modules/statics/src/coins/ofcErc20Coins.ts

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5350,6 +5350,34 @@ export const tOfcErc20Coins = [
53505350
true,
53515351
'baseeth'
53525352
),
5353+
ofcerc20(
5354+
'c935401a-aad4-4f71-a34a-e0b26f56c4cc',
5355+
'ofcbaseeth:c',
5356+
'Chainbase',
5357+
18,
5358+
UnderlyingAsset['baseeth:c'],
5359+
undefined,
5360+
undefined,
5361+
'',
5362+
undefined,
5363+
undefined,
5364+
true,
5365+
'baseeth'
5366+
),
5367+
ofcerc20(
5368+
'f7d35708-7aee-4b15-8b6b-0cf3580a5044',
5369+
'ofcbaseeth:carv',
5370+
'Carv',
5371+
18,
5372+
UnderlyingAsset['baseeth:carv'],
5373+
undefined,
5374+
undefined,
5375+
'',
5376+
undefined,
5377+
undefined,
5378+
true,
5379+
'baseeth'
5380+
),
53535381
ofcerc20(
53545382
'e083e24a-292c-48e1-8edb-e15ebd6c601b',
53555383
'ofcbaseeth:mey',
@@ -6156,6 +6184,22 @@ export const tOfcErc20Coins = [
61566184
18,
61576185
underlyingAssetForSymbol('eth:epic')
61586186
),
6187+
ofcerc20('88c8c5ca-9331-49a0-94da-83b208357fa8', 'ofceth:el', 'Elysia', 18, underlyingAssetForSymbol('eth:el')),
6188+
ofcerc20(
6189+
'a4b51a0a-fae2-49e7-bf50-356ee3dab410',
6190+
'ofceth:kernel',
6191+
'KernelDAO',
6192+
18,
6193+
underlyingAssetForSymbol('eth:kernel')
6194+
),
6195+
ofcerc20('9d0606f4-72d3-4ebe-811b-680ca5e24203', 'ofceth:zkc', 'Boundless', 18, underlyingAssetForSymbol('eth:zkc')),
6196+
ofcerc20(
6197+
'2bde101e-6e6d-464e-902c-3ce3fb2d0d8e',
6198+
'ofceth:tree',
6199+
'Treehouse',
6200+
18,
6201+
underlyingAssetForSymbol('eth:tree')
6202+
),
61596203
ofcerc20(
61606204
'22d66acc-976b-4dfb-be64-c6c963938424',
61616205
'ofcopeth:cyber',

modules/statics/src/coins/solTokens.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3734,4 +3734,14 @@ export const solTokens = [
37343734
UnderlyingAsset['sol:kwyld-cash'],
37353735
SOL_TOKEN_FEATURES
37363736
),
3737+
solToken(
3738+
'6dfa17b5-774f-4627-b91b-cae3e47c5c8b',
3739+
'sol:sonic',
3740+
'Sonic SVM',
3741+
9,
3742+
'SonicxvLud67EceaEzCLRnMTBqzYUUYNr93DBkBdDES',
3743+
'SonicxvLud67EceaEzCLRnMTBqzYUUYNr93DBkBdDES',
3744+
UnderlyingAsset['sol:sonic'],
3745+
SOL_TOKEN_FEATURES
3746+
),
37373747
];

0 commit comments

Comments
 (0)