Skip to content

Commit 4e176c3

Browse files
feat(statics): add inketh tokens kbtc, usdc, usdt0 (CECHO-976)
Co-authored-by: Cursor <cursoragent@cursor.com> TICKET: CECHO-976 Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent a4f4398 commit 4e176c3

3 files changed

Lines changed: 76 additions & 0 deletions

File tree

modules/statics/src/allCoinsAndTokens.ts

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2501,6 +2501,33 @@ export const allCoinsAndTokens = [
25012501
CoinFeature.SUPPORTS_ERC20,
25022502
]
25032503
),
2504+
erc20Token(
2505+
'682de8f9-ffd2-478d-b106-8d8212043608',
2506+
'inketh:kbtc',
2507+
'KBTC',
2508+
8,
2509+
'0x73e0c0d45e048d25fc26fa3159b0aa04bfa4db98',
2510+
UnderlyingAsset['inketh:kbtc'],
2511+
Networks.main.inketh
2512+
),
2513+
erc20Token(
2514+
'49e611fe-158d-4903-9e15-d6edd902fa30',
2515+
'inketh:usdc',
2516+
'USDC',
2517+
6,
2518+
'0x2d270e6886d130d724215a266106e6832161eaed',
2519+
UnderlyingAsset['inketh:usdc'],
2520+
Networks.main.inketh
2521+
),
2522+
erc20Token(
2523+
'a9fb0064-51c0-48ad-bc01-603872cbb3cb',
2524+
'inketh:usdt0',
2525+
'USDT0',
2526+
6,
2527+
'0x0200c29006150606b650577bbe7b6248f58470c1',
2528+
UnderlyingAsset['inketh:usdt0'],
2529+
Networks.main.inketh
2530+
),
25042531
account(
25052532
'68d22683-a8f2-47b3-8446-92e02a1963ae',
25062533
'hemieth',

modules/statics/src/base.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3401,6 +3401,11 @@ export enum UnderlyingAsset {
34013401
'chiliz:spurs' = 'chiliz:spurs',
34023402
'chiliz:tra' = 'chiliz:tra',
34033403

3404+
// Ink mainnet tokens
3405+
'inketh:kbtc' = 'inketh:kbtc',
3406+
'inketh:usdc' = 'inketh:usdc',
3407+
'inketh:usdt0' = 'inketh:usdt0',
3408+
34043409
//world chain mainnet tokens
34053410
'world:wld' = 'world:wld',
34063411
'world:usdc' = 'world:usdc',

modules/statics/src/coins/ofcErc20Coins.ts

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3990,6 +3990,50 @@ export const ofcErc20Coins = [
39903990
'baseeth'
39913991
),
39923992

3993+
// Ink Network tokens
3994+
ofcerc20(
3995+
'f6ccdf51-e2c8-4ad3-95b4-8c779096d30f',
3996+
'ofcinketh:kbtc',
3997+
'KBTC',
3998+
8,
3999+
underlyingAssetForSymbol('inketh:kbtc'),
4000+
undefined,
4001+
undefined,
4002+
'',
4003+
undefined,
4004+
undefined,
4005+
true,
4006+
'inketh'
4007+
),
4008+
ofcerc20(
4009+
'200f34d6-521a-4ff9-a4c2-60c6fe3edaf4',
4010+
'ofcinketh:usdc',
4011+
'USDC',
4012+
6,
4013+
underlyingAssetForSymbol('inketh:usdc'),
4014+
undefined,
4015+
undefined,
4016+
'',
4017+
undefined,
4018+
undefined,
4019+
true,
4020+
'inketh'
4021+
),
4022+
ofcerc20(
4023+
'e115bc45-6771-4088-82f3-aa3cdcaba416',
4024+
'ofcinketh:usdt0',
4025+
'USDT0',
4026+
6,
4027+
underlyingAssetForSymbol('inketh:usdt0'),
4028+
undefined,
4029+
undefined,
4030+
'',
4031+
undefined,
4032+
undefined,
4033+
true,
4034+
'inketh'
4035+
),
4036+
39934037
// Chiliz Network tokens
39944038
ofcerc20(
39954039
'e870395c-a5e0-41b2-b900-6bd1a1a38088',

0 commit comments

Comments
 (0)