Skip to content

Commit cc0d959

Browse files
feat: include OP token (#5)
This PR adds the optimism governance token to the `TOKEN_SYMBOLS` constants.
1 parent 1eb2cd8 commit cc0d959

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@across-protocol/constants-v2",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"description": "Export commonly re-used values for Across repositories",
55
"repository": "https://github.com/across-protocol/constants-v2.git",
66
"author": "[email protected]",

src/constants.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,4 +217,12 @@ export const TOKEN_SYMBOLS_MAP = {
217217
[CHAIN_IDs.MUMBAI]: "0x9c3C9283D3e44854697Cd22D3Faa240Cfb032889",
218218
},
219219
},
220+
OP: {
221+
name: "Optimism",
222+
symbol: "OP",
223+
decimals: 18,
224+
addresses: {
225+
[CHAIN_IDs.OPTIMISM]: "0x4200000000000000000000000000000000000042",
226+
},
227+
},
220228
};

0 commit comments

Comments
 (0)