diff --git a/packages/oraidex-common/package.json b/packages/oraidex-common/package.json index e737cbc5..a0d413d7 100644 --- a/packages/oraidex-common/package.json +++ b/packages/oraidex-common/package.json @@ -1,6 +1,6 @@ { "name": "@oraichain/oraidex-common", - "version": "1.0.70", + "version": "1.0.71", "main": "build/index.js", "files": [ "build/" diff --git a/packages/oraidex-common/src/network.ts b/packages/oraidex-common/src/network.ts index 164b5145..b13f3f69 100644 --- a/packages/oraidex-common/src/network.ts +++ b/packages/oraidex-common/src/network.ts @@ -49,7 +49,8 @@ import { BTC_CONTRACT, NEUTARO_ORAICHAIN_DENOM, OCH_ETH_CONTRACT, - OCH_CONTRACT + OCH_CONTRACT, + ORAIDEX_BID_POOL_CONTRACT } from "./constant"; export type NetworkName = @@ -123,6 +124,7 @@ export interface NetworkConfig { rewarder: string; converter: string; oraidex_listing: string; + bid_pool: string; multicall: string; } @@ -758,8 +760,9 @@ export const chainInfos: CustomChainInfo[] = [ }, { // rpc: 'http://rpc.neutaro.tech:26657/', - rpc: "https://neutaro.rpc.orai.io/", - rest: "http://api.neutaro.tech:1317/", + rpc: "https://neutaro.rpc.orai.io", + rest: "https://neutaro.lcd.orai.io", + // rest: "http://api.neutaro.tech:1317/", chainId: "Neutaro-1", chainName: "Neutaro", networkType: "cosmos", @@ -1075,6 +1078,7 @@ export const network: CustomChainInfo & NetworkConfig = { converter: CONVERTER_CONTRACT, oraidex_listing: ORAIDEX_LISTING_CONTRACT, multicall: MULTICALL_CONTRACT, + bid_pool: ORAIDEX_BID_POOL_CONTRACT, explorer: "https://scan.orai.io" };