diff --git a/packages/oraidex-server/package.json b/packages/oraidex-server/package.json index 35821082..b8d4ea45 100644 --- a/packages/oraidex-server/package.json +++ b/packages/oraidex-server/package.json @@ -1,6 +1,6 @@ { "name": "@oraichain/oraidex-server", - "version": "1.0.22", + "version": "1.0.23", "main": "dist/index.js", "bin": "dist/index.js", "license": "MIT", @@ -16,7 +16,7 @@ "@cosmjs/stargate": "^0.31.0", "@cosmjs/tendermint-rpc": "^0.31.0", "@oraichain/common-contracts-sdk": "^1.0.31", - "@oraichain/oraidex-sync": "1.0.0", + "@oraichain/oraidex-sync": "1.0.1", "cors": "^2.8.5", "express": "^4.18.2", "newrelic": "^11.2.1", diff --git a/packages/oraidex-server/package.staging.json b/packages/oraidex-server/package.staging.json index 0864de03..c0cb5135 100644 --- a/packages/oraidex-server/package.staging.json +++ b/packages/oraidex-server/package.staging.json @@ -1,6 +1,6 @@ { "name": "@oraichain/oraidex-server-staging", - "version": "1.0.36", + "version": "1.0.37", "main": "dist/index.js", "bin": "dist/index.js", "license": "MIT", @@ -15,7 +15,7 @@ "@cosmjs/stargate": "^0.31.0", "@oraichain/common-contracts-sdk": "^1.0.31", "@cosmjs/tendermint-rpc": "^0.31.0", - "@oraichain/oraidex-sync": "1.0.0", + "@oraichain/oraidex-sync": "1.0.1", "cors": "^2.8.5", "express": "^4.18.2" }, diff --git a/packages/oraidex-sync/package.json b/packages/oraidex-sync/package.json index ebb0edd3..b71d2f8d 100644 --- a/packages/oraidex-sync/package.json +++ b/packages/oraidex-sync/package.json @@ -1,6 +1,6 @@ { "name": "@oraichain/oraidex-sync", - "version": "1.0.0", + "version": "1.0.1", "main": "build/index.js", "license": "MIT", "files": [ diff --git a/packages/oraidex-sync/src/index.ts b/packages/oraidex-sync/src/index.ts index d890c5fb..19dd30bf 100644 --- a/packages/oraidex-sync/src/index.ts +++ b/packages/oraidex-sync/src/index.ts @@ -196,7 +196,7 @@ class OraiDexSync { queryTags: [], limit: parseInt(process.env.LIMIT) || 1000, maxThreadLevel: parseInt(process.env.MAX_THREAD_LEVEL) || 3, - interval: 5000 + interval: 10000 }).pipe(new WriteOrders(this.duckDb)); } catch (error) { console.log("error in start: ", error);