From 87e5e4683f7619a79430a42e909093e976569d6c Mon Sep 17 00:00:00 2001 From: Aleksandr Kraiz Date: Wed, 8 Feb 2023 03:55:02 +0400 Subject: [PATCH] Fix --- package.json | 2 +- src/config/envs.json | 82 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 83 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 1bd1424..e898dbc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@orionprotocol/sdk", - "version": "0.17.0-rc.2", + "version": "0.17.0-rc.3", "description": "Orion Protocol SDK", "main": "./lib/esm/index.js", "module": "./lib/esm/index.js", diff --git a/src/config/envs.json b/src/config/envs.json index 0c1ca4f..602b409 100644 --- a/src/config/envs.json +++ b/src/config/envs.json @@ -265,5 +265,87 @@ } } } + }, + "kucoin-production": { + "analyticsAPI": "https://trade.orionprotocol.io/api/stats", + "referralAPI": "https://trade.orionprotocol.io/referral-api", + "networks": { + "1": { + "api": "https://trade.orionprotocol.io", + "services": { + "aggregator": { + "http": "/backend", + "ws": "/v1" + }, + "blockchain": { + "http": "" + }, + "priceFeed": { + "all": "/price-feed" + } + }, + "liquidityMigratorAddress": "0x23a1820a47BcD022E29f6058a5FD224242F50D1A" + }, + "56": { + "api": "https://trade-exp.orionprotocol.io", + "services": { + "aggregator": { + "http": "/backend", + "ws": "/v1" + }, + "blockchain": { + "http": "" + }, + "priceFeed": { + "all": "/price-feed" + } + } + }, + "250": { + "api": "https://trade-ftm.orionprotocol.io", + "services": { + "aggregator": { + "http": "/backend", + "ws": "/v1" + }, + "blockchain": { + "http": "" + }, + "priceFeed": { + "all": "/price-feed" + } + } + }, + "137": { + "api": "https://trade-polygon.orionprotocol.io", + "services": { + "aggregator": { + "http": "/backend", + "ws": "/v1" + }, + "blockchain": { + "http": "" + }, + "priceFeed": { + "all": "/price-feed" + } + } + }, + "66": { + "api": "https://trade-okc.orionprotocol.io", + "services": { + "aggregator": { + "http": "/backend", + "ws": "/v1" + }, + "blockchain": { + "http": "" + }, + "priceFeed": { + "all": "/price-feed" + } + } + } + } } }