Skip to content

Commit 46e6ba3

Browse files
committed
feat(statics): add new batch of tokens
Ticket: COIN-1234
1 parent b7f42b0 commit 46e6ba3

File tree

4 files changed

+43
-0
lines changed

4 files changed

+43
-0
lines changed

modules/statics/src/base.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1620,6 +1620,7 @@ export enum UnderlyingAsset {
16201620
'hteth:gousd' = 'hteth:gousd',
16211621
'hteth:usd1' = 'hteth:usd1',
16221622
'hteth:stgusd1' = 'hteth:stgusd1',
1623+
'hteth:testnewtoken' = 'hteth:testnewtoken',
16231624
THKD = 'thkd',
16241625
THUNDER = 'thunder',
16251626
TIO = 'tio',
@@ -1925,6 +1926,7 @@ export enum UnderlyingAsset {
19251926
'eth:ausd' = 'eth:ausd',
19261927
'eth:gaia' = 'eth:gaia',
19271928
'eth:usds' = 'eth:usds',
1929+
'eth:newtoken' = 'eth:newtoken',
19281930
'xlm:BST-GADDFE4R72YUP2AOEL67OHZN3GJQYPC3VE734N2XFMEGRR2L32CZ3XYZ' = 'xlm:BST-GADDFE4R72YUP2AOEL67OHZN3GJQYPC3VE734N2XFMEGRR2L32CZ3XYZ',
19291931
'xlm:VELO-GDM4RQUQQUVSKQA7S6EM7XBZP3FCGH4Q7CL6TABQ7B2BEJ5ERARM2M5M' = 'xlm:VELO-GDM4RQUQQUVSKQA7S6EM7XBZP3FCGH4Q7CL6TABQ7B2BEJ5ERARM2M5M',
19301932
'xlm:SLT-GCKA6K5PCQ6PNF5RQBF7PQDJWRHO6UOGFMRLK3DYHDOI244V47XKQ4GP' = 'xlm:SLT-GCKA6K5PCQ6PNF5RQBF7PQDJWRHO6UOGFMRLK3DYHDOI244V47XKQ4GP',

modules/statics/src/coins/erc20Coins.ts

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10468,6 +10468,19 @@ export const erc20Coins = [
1046810468
'0xdc035d45d973e3ec169d2276ddab16f1e407384f',
1046910469
UnderlyingAsset['eth:usds']
1047010470
),
10471+
erc20(
10472+
'3a173650-5a31-4025-a703-cf9d3f029d15',
10473+
'eth:newtoken',
10474+
'New Token',
10475+
18,
10476+
'0x1234567890123456789012345678901234567890',
10477+
UnderlyingAsset['eth:newtoken'],
10478+
[
10479+
...AccountCoin.DEFAULT_FEATURES,
10480+
CoinFeature.CUSTODY_BITGO_FRANKFURT,
10481+
CoinFeature.CUSTODY_BITGO_GERMANY,
10482+
],
10483+
),
1047110484
terc20(
1047210485
'0205f0d6-0647-47c9-ad8b-c48d048e54f3',
1047310486
'fixed',
@@ -11384,4 +11397,16 @@ export const erc20Coins = [
1138411397
undefined,
1138511398
Networks.test.holesky
1138611399
),
11400+
terc20(
11401+
'373e1a33-0bed-4b05-bc98-594cf991f5f6',
11402+
'hteth:testnewtoken',
11403+
'Test New Token',
11404+
18,
11405+
'0x1234567890123456789012345678901234567890',
11406+
UnderlyingAsset['hteth:testnewtoken'],
11407+
HTETH_TOKEN_FEATURES,
11408+
undefined,
11409+
undefined,
11410+
Networks.test.holesky
11411+
),
1138711412
];

modules/statics/src/coins/ofcErc20Coins.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3153,6 +3153,7 @@ export const ofcErc20Coins = [
31533153
underlyingAssetForSymbol('eth:gaia')
31543154
),
31553155
ofcerc20('c3a5c5d2-5d6e-4c9b-9f3e-6d2a4e5b6c8d', 'ofceth:usds', 'USDS', 18, underlyingAssetForSymbol('eth:usds')),
3156+
ofcerc20('a0b6df4e-1ae8-48bd-882a-7ce7552fa2e1', 'ofcnewtoken', 'New Token', 18, UnderlyingAsset['eth:newtoken']),
31563157
];
31573158

31583159
export const tOfcErc20Coins = [
@@ -3312,6 +3313,20 @@ export const tOfcErc20Coins = [
33123313
undefined,
33133314
'hteth'
33143315
),
3316+
tofcerc20(
3317+
'71f96dbb-649b-4f5d-845f-8a8a88e89554',
3318+
'ofchtestnewtoken',
3319+
'Test New Token',
3320+
18,
3321+
UnderlyingAsset['hteth:testnewtoken'],
3322+
undefined,
3323+
undefined,
3324+
undefined,
3325+
undefined,
3326+
undefined,
3327+
undefined,
3328+
'hteth'
3329+
),
33153330
];
33163331

33173332
function underlyingAssetForSymbol(underlyingAssetValue: string): UnderlyingAsset {

modules/statics/src/gatekeep.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1824,4 +1824,5 @@ export const gatekeep = [
18241824
'ofcsol:rock',
18251825
'sol:dood',
18261826
'ofcsol:dood',
1827+
'ofchteth:testnewtoken',
18271828
];

0 commit comments

Comments
 (0)