Skip to content

Commit

Permalink
Merge pull request #68 from oraichain/hotfix/incompatible-version-ora…
Browse files Browse the repository at this point in the history
…idex-be

chore: pump version oraidex server
  • Loading branch information
ducphamle2 authored Dec 2, 2023
2 parents 69639ff + 1ba5cf3 commit 8edc043
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/oraidex-server/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions packages/oraidex-server/package.staging.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/oraidex-sync/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oraichain/oraidex-sync",
"version": "1.0.0",
"version": "1.0.1",
"main": "build/index.js",
"license": "MIT",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion packages/oraidex-sync/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 8edc043

Please sign in to comment.