diff --git a/package.json b/package.json index f9bbd06..642fb4c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@orionprotocol/sdk", - "version": "0.17.13", + "version": "0.17.14", "description": "Orion Protocol SDK", "main": "./lib/esm/index.js", "module": "./lib/esm/index.js", diff --git a/src/config/chains.json b/src/config/chains.json index 1e8172f..1c2c315 100644 --- a/src/config/chains.json +++ b/src/config/chains.json @@ -35,6 +35,15 @@ "rpc": "https://testing.orionprotocol.io/eth-ropsten/rpc", "baseCurrencyName": "ETH" }, + "5": { + "chainId": "5", + "explorer": "https://goerli.etherscan.io/", + "label": "Goerli", + "shortName": "ETH-Goerli", + "code": "eth", + "rpc": "https://testing.orionprotocol.io/eth-goerli/rpc", + "baseCurrencyName": "ETH" + }, "4002": { "chainId": "4002", "explorer": "https://testnet.ftmscan.com/", diff --git a/src/config/envs.json b/src/config/envs.json index 602b409..10ca282 100644 --- a/src/config/envs.json +++ b/src/config/envs.json @@ -117,6 +117,21 @@ }, "liquidityMigratorAddress": "0x36969a25622AE31bA9946e0c8151f0dc08b3A1c8" }, + "5": { + "api": "https://testing.orionprotocol.io/eth-goerli", + "services": { + "aggregator": { + "http": "/backend", + "ws": "/v1" + }, + "blockchain": { + "http": "" + }, + "priceFeed": { + "all": "/price-feed" + } + } + }, "4002": { "api": "https://testing.orionprotocol.io/ftm-testnet", "services": { diff --git a/src/types.ts b/src/types.ts index 7d10f25..bf15f3d 100644 --- a/src/types.ts +++ b/src/types.ts @@ -117,6 +117,7 @@ export type Pair = { export enum SupportedChainId { MAINNET = '1', ROPSTEN = '3', + GOERLI = '5', FANTOM_OPERA = '250', POLYGON = '137', OKC = '66',