Skip to content

Commit 33a2dac

Browse files
Merge pull request #8275 from BitGo/feature/CECHO-375-new-tokens
CECHO-375: Add new tokens
2 parents 2461908 + 2403298 commit 33a2dac

File tree

7 files changed

+177
-0
lines changed

7 files changed

+177
-0
lines changed

modules/statics/src/allCoinsAndTokens.ts

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3959,6 +3959,24 @@ export const allCoinsAndTokens = [
39593959
UnderlyingAsset['baseeth:kaito'],
39603960
Networks.main.basechain
39613961
),
3962+
erc20Token(
3963+
'c3f63213-7cde-493b-8115-191e55dfd4f2',
3964+
'baseeth:xsgd',
3965+
'StraitsX SGD',
3966+
6,
3967+
'0x0a4c9cb2778ab3302996a34befcf9a8bc288c33b',
3968+
UnderlyingAsset['baseeth:xsgd'],
3969+
Networks.main.basechain
3970+
),
3971+
erc20Token(
3972+
'dabec024-c5f6-4cf3-8c15-232f436b07cc',
3973+
'baseeth:xusd',
3974+
'StraitsX USD',
3975+
6,
3976+
'0x110b77c9e90f6c353f229ccd0d9278667dad1c25',
3977+
UnderlyingAsset['baseeth:xusd'],
3978+
Networks.main.basechain
3979+
),
39623980

39633981
// XDC mainnet tokens
39643982
xdcErc20(
@@ -3993,6 +4011,14 @@ export const allCoinsAndTokens = [
39934011
'0x3a170c7c987f55c84f28733bfa27962d8cdd5d3b',
39944012
UnderlyingAsset['xdc:gama']
39954013
),
4014+
xdcErc20(
4015+
'a48247a4-29e0-4295-87aa-071704e566dd',
4016+
'xdc:audd',
4017+
'Australian Digital Dollar',
4018+
6,
4019+
'0x9fe4e6321eeb7c4bc537570f015e4734b15002b8',
4020+
UnderlyingAsset['xdc:audd']
4021+
),
39964022
xdcErc20(
39974023
'bdf602ea-3a6c-407a-8afd-33d6c04a8bc3',
39984024
'xdc:srx',
@@ -6761,6 +6787,18 @@ export const allCoinsAndTokens = [
67616787
UnderlyingAsset['sui:mmt'],
67626788
SUI_TOKEN_FEATURES
67636789
),
6790+
suiToken(
6791+
'693b237a-ae38-4dcd-af50-83299436020c',
6792+
'sui:usdsui',
6793+
'Sui Dollar',
6794+
6,
6795+
'0x44f838219cf67b058f3b37907b655f226153c18e33dfcd0da559a844fea9b1c1',
6796+
'usdsui',
6797+
'USDSUI',
6798+
'0x44f838219cf67b058f3b37907b655f226153c18e33dfcd0da559a844fea9b1c1::usdsui::USDSUI',
6799+
UnderlyingAsset['sui:usdsui'],
6800+
[...SUI_TOKEN_FEATURES, CoinFeature.STABLECOIN]
6801+
),
67646802
tsuiToken(
67656803
'0b8a7919-c37e-4be8-8338-7fc13c6c875e',
67666804
'tsui:deep',

modules/statics/src/base.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3026,6 +3026,8 @@ export enum UnderlyingAsset {
30263026
'baseeth:unite' = 'baseeth:unite',
30273027
'baseeth:b3' = 'baseeth:b3',
30283028
'baseeth:kaito' = 'baseeth:kaito',
3029+
'baseeth:xsgd' = 'baseeth:xsgd',
3030+
'baseeth:xusd' = 'baseeth:xusd',
30293031

30303032
// BaseETH testnet tokens
30313033
'tbaseeth:usdc' = 'tbaseeth:usdc',
@@ -3079,6 +3081,7 @@ export enum UnderlyingAsset {
30793081
'xdc:lbt' = 'xdc:lbt',
30803082
'xdc:cre' = 'xdc:cre',
30813083
'xdc:gama' = 'xdc:gama',
3084+
'xdc:audd' = 'xdc:audd',
30823085
'xdc:srx' = 'xdc:srx',
30833086
'xdc:weth' = 'xdc:weth',
30843087

@@ -3428,6 +3431,7 @@ export enum UnderlyingAsset {
34283431
'sol:xnetv2' = 'sol:xnetv2',
34293432
'sol:prcl' = 'sol:prcl',
34303433
'sol:asp' = 'sol:asp',
3434+
'sol:skr' = 'sol:skr',
34313435

34323436
'tsol:txsgd' = 'sol:txsgd',
34333437
'tsol:txusd' = 'sol:txusd',
@@ -3487,6 +3491,7 @@ export enum UnderlyingAsset {
34873491
'sui:alkimi' = 'sui:alkimi',
34883492
'sui:dmc' = 'sui:dmc',
34893493
'sui:mmt' = 'sui:mmt',
3494+
'sui:usdsui' = 'sui:usdsui',
34903495

34913496
// Sui testnet tokens
34923497
'tsui:deep' = 'tsui:deep',
@@ -3634,6 +3639,11 @@ export enum UnderlyingAsset {
36343639
'eth:open' = 'eth:open',
36353640
'eth:mbg' = 'eth:mbg',
36363641
'eth:rekt' = 'eth:rekt',
3642+
'eth:audx' = 'eth:audx',
3643+
'eth:chfau' = 'eth:chfau',
3644+
'eth:dxi' = 'eth:dxi',
3645+
'eth:apxusd' = 'eth:apxusd',
3646+
'eth:q' = 'eth:q',
36373647
'eth:shvon' = 'eth:shvon',
36383648
'eth:pt-cusdo-28may2026' = 'eth:pt-cusdo-28may2026',
36393649
'eth:usd1cx' = 'eth:usd1cx',
@@ -3651,6 +3661,7 @@ export enum UnderlyingAsset {
36513661
'ada:djed' = 'ada:djed',
36523662
'ada:usda' = 'ada:usda',
36533663
'ada:night' = 'ada:night',
3664+
'ada:usdcx' = 'ada:usdcx',
36543665
'ada:lcc' = 'ada:lcc',
36553666
'ada:awlf' = 'ada:awlf',
36563667
'ada:asnek' = 'ada:asnek',

modules/statics/src/coins/adaTokens.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,17 @@ export const adaTokens = [
102102
UnderlyingAsset['ada:night'],
103103
ADA_TOKEN_FEATURES
104104
),
105+
adaToken(
106+
'ada5c354-acd7-49a5-b739-c1350e91bbc7',
107+
'ada:usdcx',
108+
'USDCx',
109+
6,
110+
'1f3aec8bfe7ea4fe14c5f121e2a92e301afe414147860d557cac7e34',
111+
'USDCx',
112+
'asset1e7eewpjw8ua3f2gpfx7y34ww9vjl63hayn80kl',
113+
UnderlyingAsset['ada:usdcx'],
114+
ADA_TOKEN_FEATURES
115+
),
105116
adaToken(
106117
'81ba4af5-5a5d-45a3-9b8a-f9e48a5abbef',
107118
'ada:lcc',

modules/statics/src/coins/erc20Coins.ts

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14478,6 +14478,46 @@ export const erc20Coins = [
1447814478
'0x4bbe27b87c20f76349e47cbc3908477f7bbd71b0', // https://etherscan.io/token/0x4bbE27b87c20f76349E47cBc3908477f7bBD71B0
1447914479
UnderlyingAsset['eth:grtx']
1448014480
),
14481+
erc20(
14482+
'c27cb0f3-50f8-435f-85a8-78cd1632d588',
14483+
'eth:audx',
14484+
'Aussie Dollar Token',
14485+
18,
14486+
'0xd687759f35bb747a29246a4b9495c8f52c49e00c',
14487+
UnderlyingAsset['eth:audx']
14488+
),
14489+
erc20(
14490+
'b29e3795-cb21-4330-80af-6879c405c233',
14491+
'eth:chfau',
14492+
'AllUnity CHF',
14493+
6,
14494+
'0xbd4dfc058eb95b8de5ceaf39966a1a70f5556f78',
14495+
UnderlyingAsset['eth:chfau']
14496+
),
14497+
erc20(
14498+
'98e39b26-bd9e-4982-b5d9-c25578b4c62d',
14499+
'eth:dxi',
14500+
'DACXI',
14501+
18,
14502+
'0x5e29cf3e3fed4df50acab95f8268e9ee26ea36f2',
14503+
UnderlyingAsset['eth:dxi']
14504+
),
14505+
erc20(
14506+
'99487262-31d3-4385-a8c6-cead93d26da6',
14507+
'eth:apxusd',
14508+
'apxUSD',
14509+
18,
14510+
'0x98a878b1cd98131b271883b390f68d2c90674665',
14511+
UnderlyingAsset['eth:apxusd']
14512+
),
14513+
erc20(
14514+
'55ba6b0b-b0c4-4791-b152-7b9fe276bc46',
14515+
'eth:q',
14516+
'Quack-ai',
14517+
18,
14518+
'0xc07e1300dc138601fa6b0b59f8d0fa477e690589',
14519+
UnderlyingAsset['eth:q']
14520+
),
1448114521
erc20(
1448214522
'7cf7c274-ecab-4c27-b918-0b044a5cd893',
1448314523
'eth:shvon',

modules/statics/src/coins/ofcCoins.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4068,6 +4068,7 @@ export const ofcCoins = [
40684068
),
40694069
ofcsolToken('0ce490e5-fba4-4f50-b059-598c151482f0', 'ofcsol:prcl', 'Parcl', 6, UnderlyingAsset['sol:prcl']),
40704070
ofcsolToken('ddba6928-8700-4435-8970-0e75acae7025', 'ofcsol:asp', 'Aspecta', 9, UnderlyingAsset['sol:asp']),
4071+
ofcsolToken('a8792c55-b90c-427b-97c8-3793f538b35d', 'ofcsol:skr', 'Seeker', 6, UnderlyingAsset['sol:skr']),
40714072
ofcsolToken(
40724073
'2cb0b222-eeae-441b-9546-698a87c509e0',
40734074
'ofcsol:pengu',
@@ -4080,6 +4081,7 @@ export const ofcCoins = [
40804081
// New SUI OFC token
40814082
ofcSuiToken('1e01eb3d-2573-4662-aa5e-4c390e4a9b38', 'ofcsui:dmc', 'DeLorean', 9, UnderlyingAsset['sui:dmc']),
40824083
ofcSuiToken('e4f5a6b7-8c9d-4eaf-82a3-4b5c6d7e8f9a', 'ofcsui:mmt', 'Momentum', 9, UnderlyingAsset['sui:mmt']),
4084+
ofcSuiToken('3feb51ae-9625-427a-badb-acd57d3d72f5', 'ofcsui:usdsui', 'Sui Dollar', 6, UnderlyingAsset['sui:usdsui']),
40834085
// Tempo mainnet OFC tokens
40844086
ofcTempoToken(
40854087
'61cbeade-67a7-4f18-b60d-bca7bf66d97e',

modules/statics/src/coins/ofcErc20Coins.ts

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3768,6 +3768,34 @@ export const ofcErc20Coins = [
37683768
true,
37693769
'baseeth'
37703770
),
3771+
ofcerc20(
3772+
'b63c799f-b943-4a9d-ae5c-75eb3c50b0bc',
3773+
'ofcbaseeth:xsgd',
3774+
'StraitsX SGD',
3775+
6,
3776+
UnderlyingAsset['baseeth:xsgd'],
3777+
undefined,
3778+
undefined,
3779+
'',
3780+
undefined,
3781+
undefined,
3782+
true,
3783+
'baseeth'
3784+
),
3785+
ofcerc20(
3786+
'a0bbd246-f4bb-450a-a3a3-e165602287b4',
3787+
'ofcbaseeth:xusd',
3788+
'StraitsX USD',
3789+
6,
3790+
UnderlyingAsset['baseeth:xusd'],
3791+
undefined,
3792+
undefined,
3793+
'',
3794+
undefined,
3795+
undefined,
3796+
true,
3797+
'baseeth'
3798+
),
37713799

37723800
// Chiliz Network tokens
37733801
ofcerc20(
@@ -5613,6 +5641,20 @@ export const tOfcErc20Coins = [
56135641
true,
56145642
'xdc'
56155643
),
5644+
ofcerc20(
5645+
'7ebdc566-3571-4da9-8feb-54d1ebbda8f3',
5646+
'ofcxdc:audd',
5647+
'Australian Digital Dollar',
5648+
6,
5649+
underlyingAssetForSymbol('xdc:audd'),
5650+
undefined,
5651+
undefined,
5652+
'',
5653+
undefined,
5654+
undefined,
5655+
true,
5656+
'xdc'
5657+
),
56165658
ofcerc20(
56175659
'0c8b533c-1929-4de8-af36-9cf4b4409c0d',
56185660
'ofcxdc:srx',
@@ -6033,6 +6075,29 @@ export const tOfcErc20Coins = [
60336075
true,
60346076
'tmorpheth'
60356077
),
6078+
ofcerc20(
6079+
'f82110b2-22a1-4a27-b640-9a5c05f60957',
6080+
'ofceth:audx',
6081+
'Aussie Dollar Token',
6082+
18,
6083+
underlyingAssetForSymbol('eth:audx')
6084+
),
6085+
ofcerc20(
6086+
'60b75c74-e04f-4fca-bd00-d4c426fd5599',
6087+
'ofceth:chfau',
6088+
'AllUnity CHF',
6089+
6,
6090+
underlyingAssetForSymbol('eth:chfau')
6091+
),
6092+
ofcerc20('a5698b63-928b-4fff-9a9d-5bcb7a2cb26f', 'ofceth:dxi', 'DACXI', 18, underlyingAssetForSymbol('eth:dxi')),
6093+
ofcerc20(
6094+
'0fd2e6e6-804b-4601-b1f9-316451eb3a9d',
6095+
'ofceth:apxusd',
6096+
'apxUSD',
6097+
18,
6098+
underlyingAssetForSymbol('eth:apxusd')
6099+
),
6100+
ofcerc20('a60515bf-4b68-42d4-94ca-b2f74449ac15', 'ofceth:q', 'Quack-ai', 18, underlyingAssetForSymbol('eth:q')),
60366101
];
60376102

60386103
function underlyingAssetForSymbol(underlyingAssetValue: string): UnderlyingAsset {

modules/statics/src/coins/solTokens.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3664,4 +3664,14 @@ export const solTokens = [
36643664
UnderlyingAsset['sol:usdca'],
36653665
[...SOL_TOKEN_FEATURES, CoinFeature.STABLECOIN]
36663666
),
3667+
solToken(
3668+
'c8baa591-832f-42b9-b3f2-4721ac9c0dcc',
3669+
'sol:skr',
3670+
'Seeker',
3671+
6,
3672+
'SKRbvo6Gf7GondiT3BbTfuRDPqLWei4j2Qy2NPGZhW3',
3673+
'SKRbvo6Gf7GondiT3BbTfuRDPqLWei4j2Qy2NPGZhW3',
3674+
UnderlyingAsset['sol:skr'],
3675+
SOL_TOKEN_FEATURES
3676+
),
36673677
];

0 commit comments

Comments
 (0)