Skip to content

Commit 4efe9a0

Browse files
authored
Merge pull request #6163 from BitGo/COIN-4002-v2
feat(statics): change ticker for hteth:aut
2 parents 9f8a074 + e6ac351 commit 4efe9a0

File tree

6 files changed

+37
-12
lines changed

6 files changed

+37
-12
lines changed

modules/statics/src/base.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1028,6 +1028,7 @@ export enum UnderlyingAsset {
10281028
HTBULL = 'htbull',
10291029
HTDOOM = 'htdoom',
10301030
'hteth:bgerchv2' = 'hteth:bgerchv2',
1031+
'hteth:aut' = 'hteth:aut',
10311032
HTHEDGE = 'hthedge',
10321033
HTMOON = 'htmoon',
10331034
HUM = 'hum',
@@ -1871,7 +1872,6 @@ export enum UnderlyingAsset {
18711872
'eth:spxux' = 'eth:spxux',
18721873
'eth:aleo' = 'eth:aleo',
18731874
'eth:dbusd' = 'eth:dbusd',
1874-
'eth:aut' = 'eth:aut',
18751875
'eth:edu' = 'eth:edu',
18761876
'eth:telos' = 'eth:telos',
18771877
'eth:cusdo' = 'eth:cusdo',
@@ -2664,6 +2664,8 @@ export enum UnderlyingAsset {
26642664
'hbar:jam' = 'hbar:jam',
26652665
'hbar:berry' = 'hbar:berry',
26662666

2667+
// Hbar Testnet tokens
2668+
'thbar:txsgd' = 'thbar:txsgd',
26672669
// fiats
26682670
AED = 'aed',
26692671
EUR = 'eur',

modules/statics/src/coins.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1580,7 +1580,7 @@ export const coins = CoinMap.fromCoins([
15801580
'Testnet Fungible Token',
15811581
Networks.test.hedera,
15821582
6,
1583-
UnderlyingAsset.USDC,
1583+
UnderlyingAsset['thbar:txsgd'],
15841584
'0.0.5894751',
15851585
AccountCoin.DEFAULT_FEATURES
15861586
),

modules/statics/src/coins/erc20Coins.ts

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10200,14 +10200,6 @@ export const erc20Coins = [
1020010200
'0x32bdd8b97868acf7014cfe6eb49bf4f2936c8f02',
1020110201
UnderlyingAsset['eth:dbusd']
1020210202
),
10203-
erc20(
10204-
'29c9cb44-00a9-4740-8de0-abf0a321b830',
10205-
'eth:aut',
10206-
'AllUnity',
10207-
6,
10208-
'0x63d0b467059a10b365aa18f441684ed154628f4e',
10209-
UnderlyingAsset['eth:aut']
10210-
),
1021110203
erc20(
1021210204
'6418f63b-3c9b-4880-9034-e286d3abd1ac',
1021310205
'eth:edu',
@@ -11024,6 +11016,18 @@ export const erc20Coins = [
1102411016
undefined,
1102511017
Networks.test.holesky
1102611018
),
11019+
terc20(
11020+
'29c9cb44-00a9-4740-8de0-abf0a321b830',
11021+
'hteth:aut',
11022+
'Holesky Testnet AllUnity',
11023+
6,
11024+
'0x63d0b467059a10b365aa18f441684ed154628f4e',
11025+
UnderlyingAsset['hteth:aut'],
11026+
HTETH_TOKEN_FEATURES,
11027+
undefined,
11028+
undefined,
11029+
Networks.test.holesky
11030+
),
1102711031
terc20(
1102811032
'e09792d6-87f9-412e-9394-03ececf56232',
1102911033
'hterc6dp',

modules/statics/src/coins/ofcCoins.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1012,7 +1012,7 @@ export const ofcCoins = [
10121012
'a6087e85-6c4a-40c5-83f0-3ebeabd8e39b',
10131013
'ofcopeth:spxux',
10141014
'Optimism',
1015-
6,
1015+
18,
10161016
UnderlyingAsset['opeth:spxux']
10171017
),
10181018
ofcOpethErc20(

modules/statics/src/coins/ofcErc20Coins.ts

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2990,7 +2990,6 @@ export const ofcErc20Coins = [
29902990
6,
29912991
underlyingAssetForSymbol('eth:dbusd')
29922992
),
2993-
ofcerc20('08b990d0-1f4b-4bb4-a509-456f2324c6de', 'ofceth:aut', 'All Unity', 6, underlyingAssetForSymbol('eth:aut')),
29942993
ofcerc20(
29952994
'fe2f5c57-90e4-49e0-a635-b6f1cec0c750',
29962995
'ofceth:edu',
@@ -3299,6 +3298,20 @@ export const tOfcErc20Coins = [
32993298
undefined,
33003299
'hteth'
33013300
),
3301+
tofcerc20(
3302+
'bf6a1c7b-eed7-46af-85ec-0adc09aa72d6',
3303+
'ofchteth:aut',
3304+
'Holesky Testnet AllUnity',
3305+
6,
3306+
UnderlyingAsset['hteth:aut'],
3307+
undefined,
3308+
undefined,
3309+
undefined,
3310+
undefined,
3311+
undefined,
3312+
undefined,
3313+
'hteth'
3314+
),
33023315
];
33033316

33043317
function underlyingAssetForSymbol(underlyingAssetValue: string): UnderlyingAsset {

modules/statics/src/gatekeep.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1810,12 +1810,18 @@ export const gatekeep = [
18101810
'opeth:lngvx',
18111811
'opeth:eqtyx',
18121812
'eth:spxux',
1813+
'ofceth:spxux',
18131814
'eth:aleo',
1815+
'ofceth:aleo',
18141816
'eth:dbusd',
1817+
'ofceth:dbusd',
18151818
'avaxc:spxux',
18161819
'polygon:buidl',
1820+
'ofcpolygon:buidl',
18171821
'arbeth:spxux',
18181822
'opeth:spxux',
18191823
'sol:rock',
1824+
'ofcsol:rock',
18201825
'sol:dood',
1826+
'ofcsol:dood',
18211827
];

0 commit comments

Comments
 (0)