Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions modules/statics/src/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1885,6 +1885,8 @@ export enum UnderlyingAsset {
'hteth:fyusd' = 'hteth:fyusd',
'hteth:stgcusd' = 'hteth:stgcusd',
'hteth:stgfyusd' = 'hteth:stgfyusd',
'hteth:goqxmp' = 'hteth:goqxmp',
'hteth:stggoqxmp' = 'hteth:stggoqxmp',
'hteth:stgwbtc' = 'hteth:stgwbtc',
'hteth:tsteth' = 'hteth:tsteth',
'hteth:tusdc' = 'hteth:tusdc',
Expand Down Expand Up @@ -2206,6 +2208,7 @@ export enum UnderlyingAsset {
'eth:sofid' = 'eth:sofid',
'eth:cusd' = 'eth:cusd',
'eth:fyusd' = 'eth:fyusd',
'eth:goqxmp' = 'eth:goqxmp',
'eth:ibtc' = 'eth:ibtc',
'eth:pyr' = 'eth:pyr',
'eth:una' = 'eth:una',
Expand Down
33 changes: 33 additions & 0 deletions modules/statics/src/coins/erc20Coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10997,6 +10997,15 @@ export const erc20Coins = [
UnderlyingAsset['eth:fyusd'],
[...ACCOUNT_COIN_DEFAULT_FEATURES, CoinFeature.STABLECOIN]
),
erc20(
'71fd8aa4-87d0-492e-a7f5-a425a80077d9',
'eth:goqxmp',
'GoQXMP',
Comment thread
damodarnaik699 marked this conversation as resolved.
6,
'0xb51323fa696a5fd29ae37772261e2d9e798bbf00',
UnderlyingAsset['eth:goqxmp'],
[...ACCOUNT_COIN_DEFAULT_FEATURES, CoinFeature.STABLECOIN]
),
erc20(
'e811d594-de4f-48b0-9b6b-47e8b4ba7dda',
'eth:ibtc',
Expand Down Expand Up @@ -12908,6 +12917,30 @@ export const erc20Coins = [
undefined,
Networks.test.hoodi
),
terc20(
'fa107b6d-6159-44ef-8a64-ab27b8e8511b',
'hteth:goqxmp',
'Test GoQXMP',
6,
'0x0ce272b926077fc2f856bb33ff1a9e36a89b0ffc',
UnderlyingAsset['hteth:goqxmp'],
[...ACCOUNT_COIN_DEFAULT_FEATURES, CoinFeature.STABLECOIN],
undefined,
undefined,
Networks.test.hoodi
),
terc20(
'63c04332-8cf0-4a90-85bd-c884edd803bc',
'hteth:stggoqxmp',
'Test GoQXMP',
6,
'0xedecb3f92e9aa1883b0c1b0cd1cb89c42652fb11',
UnderlyingAsset['hteth:stggoqxmp'],
[...ACCOUNT_COIN_DEFAULT_FEATURES, CoinFeature.STABLECOIN],
undefined,
undefined,
Networks.test.hoodi
),
terc20(
'30179af0-ca75-4cb1-99d9-028bc56bf10e',
'tmsn',
Expand Down
37 changes: 37 additions & 0 deletions modules/statics/src/coins/ofcErc20Coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3150,6 +3150,15 @@ export const ofcErc20Coins = [
undefined,
[CoinFeature.STABLECOIN]
),
ofcerc20(
'8202c24a-3521-4a7f-9fcc-fb754c568644',
'ofceth:goqxmp',
'GoQXMP',
6,
underlyingAssetForSymbol('eth:goqxmp'),
undefined,
[CoinFeature.STABLECOIN]
),
ofcerc20(
'80bfa43e-f01c-42bd-bd14-269b88948bbf',
'ofceth:usdg',
Expand Down Expand Up @@ -4407,6 +4416,34 @@ export const tOfcErc20Coins = [
undefined,
'hteth'
),
tofcerc20(
'edd7e667-7be4-49f1-9209-d9596a71581b',
'ofchteth:goqxmp',
'Test GoQXMP',
6,
UnderlyingAsset['hteth:goqxmp'],
undefined,
[CoinFeature.STABLECOIN],
undefined,
undefined,
undefined,
undefined,
'hteth'
),
tofcerc20(
'7863a0f5-75ff-4d89-a791-25dea435813d',
'ofchteth:stggoqxmp',
'Test GoQXMP',
6,
UnderlyingAsset['hteth:stggoqxmp'],
undefined,
[CoinFeature.STABLECOIN],
undefined,
undefined,
undefined,
undefined,
'hteth'
),
tofcerc20(
'bf6a1c7b-eed7-46af-85ec-0adc09aa72d6',
'ofchteth:aut',
Expand Down
2 changes: 2 additions & 0 deletions modules/statics/test/unit/tokenNamingConvention.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ describe('Token Naming Convention Tests', function () {
'hteth:tusdc',
'hteth:tusdt',
'hteth:gousd',
'hteth:goqxmp',
'hteth:stggoqxmp',
'hteth:usd1',
'hteth:amstest',
'hterc18dp',
Expand Down
Loading