Skip to content

Commit 8ac3e07

Browse files
authored
feat: add SNX to token constant (#283)
1 parent e7d312e commit 8ac3e07

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

utils/constants.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ export const CHAIN_IDs = {
66
POLYGON: 137,
77
GOERLI: 5,
88
MUMBAI: 80001,
9+
ARBITRUM_GOERLI: 421613,
10+
OPTIMISM_GOERLI: 420,
911
};
1012

1113
// NOTE: All addresses should be checksummed
@@ -89,6 +91,18 @@ export const TOKEN_SYMBOLS_MAP = {
8991
[CHAIN_IDs.MUMBAI]: "0x9c3C9283D3e44854697Cd22D3Faa240Cfb032889",
9092
},
9193
},
94+
SNX: {
95+
name: "Synthetix",
96+
symbol: "SNX",
97+
decimals: 18,
98+
// Based on https://github.com/Synthetixio/synthetix-docs/blob/fe83d0757977b1cb7f69796126e71a66295bf264/content/addresses.md
99+
addresses: {
100+
[CHAIN_IDs.MAINNET]: "0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F",
101+
[CHAIN_IDs.OPTIMISM]: "0x8700dAec35aF8Ff88c16BdF0418774CB3D7599B4",
102+
[CHAIN_IDs.GOERLI]: "0x51f44ca59b867E005e48FA573Cb8df83FC7f7597",
103+
[CHAIN_IDs.OPTIMISM_GOERLI]: "0x2E5ED97596a8368EB9E44B1f3F25B2E813845303",
104+
},
105+
},
92106
UMA: {
93107
name: "UMA",
94108
symbol: "UMA",

0 commit comments

Comments
 (0)