Skip to content

Commit 2ef6437

Browse files
committed
fix(statics): correct decimals for AGS, AUS, and GRTX tokens
- Fix eth:ags (Silver Standard) decimals from 18 to 4 - Fix eth:aus (Gold Standard) decimals from 18 to 4 - Fix eth:grtx (GreatX) decimals from 18 to 6 - Update corresponding OFC token decimals to match Decimals verified by querying contract decimals() function directly. CLOSES TICKET: WIN-8782
1 parent 5d38596 commit 2ef6437

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

modules/statics/src/coins/erc20Coins.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14255,15 +14255,15 @@ export const erc20Coins = [
1425514255
'39a47119-f542-42ed-a349-1f3ebe23b0f6',
1425614256
'eth:ags',
1425714257
'Silver Standard',
14258-
18,
14258+
4,
1425914259
'0x843c9af34f698618f90c898e3967278a260c8d9a', // https://etherscan.io/address/0x843c9af34f698618f90c898e3967278a260c8d9a
1426014260
UnderlyingAsset['eth:ags']
1426114261
),
1426214262
erc20(
1426314263
'7cbb994b-d26f-445f-aed8-7d7e179b94ee',
1426414264
'eth:aus',
1426514265
'Gold Standard',
14266-
18,
14266+
4,
1426714267
'0x171f9cfc136f2b2aaa148fcc6b660a2029bab048', // https://etherscan.io/address/0x171f9cfc136f2b2aaa148fcc6b660a2029bab048
1426814268
UnderlyingAsset['eth:aus']
1426914269
),
@@ -14288,7 +14288,7 @@ export const erc20Coins = [
1428814288
'22c3d5be-c127-4815-97c4-2315aaeefe05',
1428914289
'eth:grtx',
1429014290
'GreatX',
14291-
18,
14291+
6,
1429214292
'0x4bbe27b87c20f76349e47cbc3908477f7bbd71b0', // https://etherscan.io/token/0x4bbE27b87c20f76349E47cBc3908477f7bBD71B0
1429314293
UnderlyingAsset['eth:grtx']
1429414294
),

modules/statics/src/coins/ofcErc20Coins.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3398,14 +3398,14 @@ export const ofcErc20Coins = [
33983398
'fd4cfe16-5228-4d92-9d87-5b8eaa1f89eb',
33993399
'ofceth:ags',
34003400
'Silver Standard',
3401-
18,
3401+
4,
34023402
underlyingAssetForSymbol('eth:ags')
34033403
),
34043404
ofcerc20(
34053405
'54eff6b7-6db0-4ad3-9757-e232efc78d89',
34063406
'ofceth:aus',
34073407
'Gold Standard',
3408-
18,
3408+
4,
34093409
underlyingAssetForSymbol('eth:aus')
34103410
),
34113411
ofcerc20(
@@ -3428,7 +3428,7 @@ export const ofcErc20Coins = [
34283428
'dd95c7b9-2be8-4471-920d-40e1fd583bf3',
34293429
'ofceth:grtx',
34303430
'GreatX',
3431-
18,
3431+
6,
34323432
underlyingAssetForSymbol('eth:grtx')
34333433
),
34343434
ofcerc20(

0 commit comments

Comments
 (0)