Skip to content

Commit

Permalink
feat: include OP token (#5)
Browse files Browse the repository at this point in the history
This PR adds the optimism governance token to the `TOKEN_SYMBOLS`
constants.
  • Loading branch information
james-a-morris authored Nov 2, 2023
1 parent 1eb2cd8 commit cc0d959
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@across-protocol/constants-v2",
"version": "1.0.4",
"version": "1.0.5",
"description": "Export commonly re-used values for Across repositories",
"repository": "https://github.com/across-protocol/constants-v2.git",
"author": "[email protected]",
Expand Down
8 changes: 8 additions & 0 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,4 +217,12 @@ export const TOKEN_SYMBOLS_MAP = {
[CHAIN_IDs.MUMBAI]: "0x9c3C9283D3e44854697Cd22D3Faa240Cfb032889",
},
},
OP: {
name: "Optimism",
symbol: "OP",
decimals: 18,
addresses: {
[CHAIN_IDs.OPTIMISM]: "0x4200000000000000000000000000000000000042",
},
},
};

0 comments on commit cc0d959

Please sign in to comment.