Skip to content

Commit cc474ce

Browse files
authored
Merge pull request #8625 from BitGo/mv/coin-7835-token-onboarding-batch-0421
2 parents 2e504c4 + d226ed3 commit cc474ce

7 files changed

Lines changed: 124 additions & 0 deletions

File tree

modules/statics/src/allCoinsAndTokens.ts

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4230,6 +4230,24 @@ export const allCoinsAndTokens = [
42304230
UnderlyingAsset['baseeth:usad'],
42314231
Networks.main.basechain
42324232
),
4233+
erc20Token(
4234+
'3d5d7b88-75e0-4947-a620-c4a6f643c73f',
4235+
'baseeth:opg',
4236+
'OpenGradient',
4237+
18,
4238+
'0xfbc2051ae2265686a469421b2c5a2d5462fbf5eb',
4239+
UnderlyingAsset['baseeth:opg'],
4240+
Networks.main.basechain
4241+
),
4242+
erc20Token(
4243+
'317cbbeb-4a9d-4a0a-ac6f-952e3e9c2e88',
4244+
'baseeth:vvv',
4245+
'Venice Token',
4246+
18,
4247+
'0xacfe6019ed1a7dc6f7b508c02d1b04ec88cc21bf',
4248+
UnderlyingAsset['baseeth:vvv'],
4249+
Networks.main.basechain
4250+
),
42334251

42344252
// XDC mainnet tokens
42354253
xdcErc20(
@@ -4368,6 +4386,15 @@ export const allCoinsAndTokens = [
43684386
UnderlyingAsset['hypeevm:usdt0'],
43694387
Networks.main.hypeevm
43704388
),
4389+
erc20Token(
4390+
'ec72ab27-9ecb-4f63-8c79-eec103742131',
4391+
'hypeevm:khype',
4392+
'Kinetiq Staked HYPE',
4393+
18,
4394+
'0xfd739d4e423301ce9385c1fb8850539d657c296d',
4395+
UnderlyingAsset['hypeevm:khype'],
4396+
Networks.main.hypeevm
4397+
),
43714398

43724399
// Story testnet tokens
43734400
erc20Token(

modules/statics/src/base.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2957,6 +2957,8 @@ export enum UnderlyingAsset {
29572957
'bsc:hemi' = 'bsc:hemi',
29582958
'bsc:cookie' = 'bsc:cookie',
29592959
'bsc:esports' = 'bsc:esports',
2960+
'bsc:xter' = 'bsc:xter',
2961+
'bsc:usdau' = 'bsc:usdau',
29602962

29612963
// BSC NFTs
29622964
// generic NFTs
@@ -3094,6 +3096,8 @@ export enum UnderlyingAsset {
30943096
'baseeth:c' = 'baseeth:c',
30953097
'baseeth:carv' = 'baseeth:carv',
30963098
'baseeth:usad' = 'baseeth:usad',
3099+
'baseeth:opg' = 'baseeth:opg',
3100+
'baseeth:vvv' = 'baseeth:vvv',
30973101

30983102
// BaseETH testnet tokens
30993103
'tbaseeth:usdc' = 'tbaseeth:usdc',
@@ -3161,6 +3165,7 @@ export enum UnderlyingAsset {
31613165
'hypeevm:hwhype' = 'hypeevm:hwhype',
31623166
'hypeevm:usdc' = 'hypeevm:usdc',
31633167
'hypeevm:usdt0' = 'hypeevm:usdt0',
3168+
'hypeevm:khype' = 'hypeevm:khype',
31643169

31653170
// Jovayeth mainnet tokens
31663171
'jovayeth:jft' = 'jovayeth:jft',
@@ -3508,6 +3513,7 @@ export enum UnderlyingAsset {
35083513
'sol:kwyld-usdc' = 'sol:kwyld-usdc',
35093514
'sol:kprme-cash' = 'sol:kprme-cash',
35103515
'sol:kwyld-cash' = 'sol:kwyld-cash',
3516+
'sol:tusdc' = 'sol:tusdc',
35113517

35123518
'tsol:txsgd' = 'sol:txsgd',
35133519
'tsol:txusd' = 'sol:txusd',
@@ -3740,6 +3746,7 @@ export enum UnderlyingAsset {
37403746
'eth:mezo' = 'eth:mezo',
37413747
'eth:drv' = 'eth:drv',
37423748
'eth:prn' = 'eth:prn',
3749+
'eth:zama' = 'eth:zama',
37433750
// ADA testnet tokens
37443751
'tada:water' = 'tada:water',
37453752
'tada:tusda' = 'tada:tusda',

modules/statics/src/coins/bscTokens.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1615,4 +1615,22 @@ export const bscTokens = [
16151615
UnderlyingAsset['bsc:esports'],
16161616
BSC_TOKEN_FEATURES_EXCLUDE_SINGAPORE
16171617
),
1618+
bscToken(
1619+
'165d39a7-126a-4561-ad6b-6840259daa4a',
1620+
'bsc:xter',
1621+
'Xterio',
1622+
18,
1623+
'0x103071da56e7cd95b415320760d6a0ddc4da1ca5',
1624+
UnderlyingAsset['bsc:xter'],
1625+
BSC_TOKEN_FEATURES
1626+
),
1627+
bscToken(
1628+
'a130b29c-9e50-4ee3-b5ee-10a089d9458a',
1629+
'bsc:usdau',
1630+
'USD GOLD',
1631+
18,
1632+
'0x166a75bd1eba55d4723c84c62127123e7a73f95b',
1633+
UnderlyingAsset['bsc:usdau'],
1634+
BSC_TOKEN_FEATURES
1635+
),
16181636
];

modules/statics/src/coins/erc20Coins.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14697,6 +14697,14 @@ export const erc20Coins = [
1469714697
'0x0c5d9fae8670cfa0aa5f57b42ccd630c46bbe498',
1469814698
UnderlyingAsset['eth:prn']
1469914699
),
14700+
erc20(
14701+
'e9ed4f70-36ff-4e0d-9705-781be1293c2b',
14702+
'eth:zama',
14703+
'Zama',
14704+
18,
14705+
'0xa12cc123ba206d4031d1c7f6223d1c2ec249f4f3',
14706+
UnderlyingAsset['eth:zama']
14707+
),
1470014708
terc20(
1470114709
'0c333619-e5a6-4f9d-8bbc-5b0e5dc64d03',
1470214710
'hteth:grtxp',

modules/statics/src/coins/ofcCoins.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4316,6 +4316,8 @@ export const ofcCoins = [
43164316
18,
43174317
UnderlyingAsset['bsc:esports']
43184318
),
4319+
ofcBscToken('d08948fa-0378-4736-a5ab-0b4ec9182b8a', 'ofcbsc:xter', 'Xterio', 18, UnderlyingAsset['bsc:xter']),
4320+
ofcBscToken('b73d634a-a60d-4e2d-835b-3d8a527979b1', 'ofcbsc:usdau', 'USD GOLD', 18, UnderlyingAsset['bsc:usdau']),
43194321
// New Arbitrum OFC token
43204322
ofcArbethErc20(
43214323
'd58490c0-07d2-4642-8af7-efa2453392e9',
@@ -4453,6 +4455,14 @@ export const ofcCoins = [
44534455
9,
44544456
UnderlyingAsset['sol:wtsyx']
44554457
),
4458+
ofcsolToken('01ab937c-6b7e-49f3-b2c5-d261955cd561', 'ofcsol:msol', 'Marinade Staked SOL', 9, UnderlyingAsset.MSOL),
4459+
ofcsolToken(
4460+
'981118ae-c81a-4582-8f19-b0998bb1eec1',
4461+
'ofcsol:tusdc',
4462+
'Testing Ondo USDC',
4463+
6,
4464+
UnderlyingAsset['sol:tusdc']
4465+
),
44564466
// New Canton OFC tokens
44574467
ofcCantonToken(
44584468
'02ab6bd2-83e6-46fc-bfd7-93b8be125648',

modules/statics/src/coins/ofcErc20Coins.ts

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5296,6 +5296,21 @@ export const tOfcErc20Coins = [
52965296
'hypeevm'
52975297
),
52985298

5299+
ofcerc20(
5300+
'eee4d3b7-8c6f-4639-8a0a-14ecf6dc5693',
5301+
'ofchypeevm:khype',
5302+
'Kinetiq Staked HYPE',
5303+
18,
5304+
UnderlyingAsset['hypeevm:khype'],
5305+
undefined,
5306+
undefined,
5307+
'',
5308+
undefined,
5309+
undefined,
5310+
true,
5311+
'hypeevm'
5312+
),
5313+
52995314
ofcerc20(
53005315
'e3c6f4e5-4d5e-4f2e-8f1a-2c3d4e5f6a7b',
53015316
'ofcbaseeth:tig',
@@ -6290,6 +6305,7 @@ export const tOfcErc20Coins = [
62906305
18,
62916306
underlyingAssetForSymbol('eth:prn')
62926307
),
6308+
ofcerc20('66f600c7-5858-482f-9e5f-823930b1f4f4', 'ofceth:zama', 'Zama', 18, UnderlyingAsset['eth:zama']),
62936309
ofcerc20(
62946310
'47d8cf79-ed67-4e9c-8e51-422d31290282',
62956311
'ofcbaseeth:usad',
@@ -6304,6 +6320,34 @@ export const tOfcErc20Coins = [
63046320
true,
63056321
'baseeth'
63066322
),
6323+
ofcerc20(
6324+
'641dc3f7-a3d0-4495-a520-a1479c6fb34d',
6325+
'ofcbaseeth:opg',
6326+
'OpenGradient',
6327+
18,
6328+
UnderlyingAsset['baseeth:opg'],
6329+
undefined,
6330+
undefined,
6331+
'',
6332+
undefined,
6333+
undefined,
6334+
true,
6335+
'baseeth'
6336+
),
6337+
ofcerc20(
6338+
'6f98dc7e-2e87-4ce2-a18e-51c6d60f735d',
6339+
'ofcbaseeth:vvv',
6340+
'Venice Token',
6341+
18,
6342+
UnderlyingAsset['baseeth:vvv'],
6343+
undefined,
6344+
undefined,
6345+
'',
6346+
undefined,
6347+
undefined,
6348+
true,
6349+
'baseeth'
6350+
),
63076351
];
63086352

63096353
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
@@ -3973,4 +3973,14 @@ export const solTokens = [
39733973
SOL_TOKEN_FEATURES,
39743974
ProgramID.Token2022ProgramId
39753975
),
3976+
solToken(
3977+
'2efb9206-d2e0-4b30-a577-563fa626ac0d',
3978+
'sol:tusdc',
3979+
'Testing Ondo USDC',
3980+
6,
3981+
'3Kyt2oSUoz3gKZNDpCptnW2URTX3ddp9nT1ytAwmUEaF',
3982+
'3Kyt2oSUoz3gKZNDpCptnW2URTX3ddp9nT1ytAwmUEaF',
3983+
UnderlyingAsset['sol:tusdc'],
3984+
SOL_TOKEN_FEATURES
3985+
),
39763986
];

0 commit comments

Comments
 (0)