Skip to content

Commit

Permalink
feat: add moonbeam & kovan networks (#3)
Browse files Browse the repository at this point in the history
* feat: add moonbeam & kovan networks

* chore: bump sdk version
  • Loading branch information
goums authored May 31, 2022
1 parent 6d79b32 commit 1c08d1d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gelatonetwork/ops-sdk",
"version": "0.1.0",
"version": "0.1.1",
"description": "SDK to create Gelato Ops tasks",
"url": "https://github.com/gelatodigital/ops-sdk",
"main": "dist/index.js",
Expand Down
12 changes: 11 additions & 1 deletion src/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,12 @@ export const CHAIN_ID = {
RINKEBY: 4,
GOERLI: 5,
OPTIMISM: 10,
KOVAN: 42,
BSC: 56,
MATIC: 137,
GNOSIS: 100,
MATIC: 137,
FANTOM: 250,
MOONBEAM: 1284,
ARBITRUM: 42161,
AVALANCHE: 43114,
MUMBAI: 80001,
Expand All @@ -37,6 +39,10 @@ export const GELATO_ADDRESSES: GelatoAddressBook = {
ops: "0xc1C6805B857Bef1f412519C4A842522431aFed39",
forwarder: "0xe2b4403A3bC36b84d54eF088A923aE8575c88d94",
},
[CHAIN_ID.KOVAN]: {
ops: "0x6c3224f9b3feE000A444681d5D45e4532D5BA531",
forwarder: "0x4055cb250Ec8d539C5222EAa71fa7e30Fe94f8e9",
},
[CHAIN_ID.MATIC]: {
ops: "0x527a819db1eb0e34426297b03bae11F2f8B3A19E",
forwarder: "0xCd8eE05B92746Ef168460D8809bDb26b7321ec30",
Expand Down Expand Up @@ -69,4 +75,8 @@ export const GELATO_ADDRESSES: GelatoAddressBook = {
ops: "0x340759c8346A1E6Ed92035FB8B6ec57cE1D82c2c",
forwarder: "0x95f4538C3950CE0EF5821f2049aE2aC5cCade68D",
},
[CHAIN_ID.MOONBEAM]: {
ops: "0x6c3224f9b3feE000A444681d5D45e4532D5BA531",
forwarder: "0x340759c8346A1E6Ed92035FB8B6ec57cE1D82c2c",
},
};

0 comments on commit 1c08d1d

Please sign in to comment.