Skip to content

Commit 1bda337

Browse files
feat(statics): onboard testnet tokens on morph chain testnet
TICKET: WIN-8665
1 parent aa2abeb commit 1bda337

File tree

3 files changed

+16
-0
lines changed

3 files changed

+16
-0
lines changed

modules/statics/src/base.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2380,6 +2380,7 @@ export enum UnderlyingAsset {
23802380
'morph:usdc' = 'morph:usdc',
23812381
'morph:usdt' = 'morph:usdt',
23822382
'morph:usd1' = 'morph:usd1',
2383+
'tmorph:tmt' = 'tmorph:tmt',
23832384

23842385
'xlm:BST-GADDFE4R72YUP2AOEL67OHZN3GJQYPC3VE734N2XFMEGRR2L32CZ3XYZ' = 'xlm:BST-GADDFE4R72YUP2AOEL67OHZN3GJQYPC3VE734N2XFMEGRR2L32CZ3XYZ',
23852386
'xlm:VELO-GDM4RQUQQUVSKQA7S6EM7XBZP3FCGH4Q7CL6TABQ7B2BEJ5ERARM2M5M' = 'xlm:VELO-GDM4RQUQQUVSKQA7S6EM7XBZP3FCGH4Q7CL6TABQ7B2BEJ5ERARM2M5M',

modules/statics/src/coins/erc20Coins.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14275,4 +14275,12 @@ export const erc20Coins = [
1427514275
'0x111111d2bf19e43c34263401e0cad979ed1cdb61',
1427614276
UnderlyingAsset['morph:usd1']
1427714277
),
14278+
terc20(
14279+
'7949177e-0c92-4a02-8f34-cee1cbfb38d1',
14280+
'tmorph:tmt',
14281+
'Test Mintable Token',
14282+
6,
14283+
'0x5257950b5277dac30536eae4742ffef4e5af5256',
14284+
UnderlyingAsset['tmorph:tmt']
14285+
),
1427814286
];

modules/statics/src/coins/ofcErc20Coins.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5226,6 +5226,13 @@ export const tOfcErc20Coins = [
52265226
ofcerc20('4d5f4fb7-b2e2-4e63-bbda-7f315332da5b', 'ofcmorph:usdc', 'USD Coin', 6, UnderlyingAsset['morph:usdc']),
52275227
ofcerc20('37f51c58-9be5-4c56-adcb-2c7f3c2cfc1a', 'ofcmorph:usdt', 'Tether USD', 6, UnderlyingAsset['morph:usdt']),
52285228
ofcerc20('e499e7cc-22ae-4374-ae4b-27651565af15', 'ofcmorph:usd1', 'USD1', 18, UnderlyingAsset['morph:usd1']),
5229+
tofcerc20(
5230+
'299efde0-9c67-44d8-ac00-44d0259d709d',
5231+
'ofctmorph:tmt',
5232+
'Test Mintable Token',
5233+
6,
5234+
underlyingAssetForSymbol('tmorph:tmt')
5235+
),
52295236
];
52305237

52315238
function underlyingAssetForSymbol(underlyingAssetValue: string): UnderlyingAsset {

0 commit comments

Comments
 (0)