Skip to content

Commit

Permalink
chore: bump version to 2.0.6 and update backend URL for OraidexCommon…
Browse files Browse the repository at this point in the history
… initialization
  • Loading branch information
trungbach committed Dec 30, 2024
1 parent 489d8f9 commit 5ff8cbc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/oraidex-common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oraichain/oraidex-common",
"version": "2.0.5",
"version": "2.0.6",
"main": "./build/index.js",
"module": "./build/index.js",
"types": "./build/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/oraidex-common/src/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export class OraidexCommon {

static async load(): Promise<OraidexCommon> {
if (!OraidexCommon.instance) {
const oraiCommon = await OraiCommon.initializeFromBackend("https://oraicommon-staging.oraidex.io", "oraidex");
const oraiCommon = await OraiCommon.initializeFromBackend("https://oraicommon.oraidex.io", "oraidex");
OraidexCommon.instance = new OraidexCommon(oraiCommon.tokenItems, oraiCommon.chainInfos);
}
return OraidexCommon.instance;
Expand Down

0 comments on commit 5ff8cbc

Please sign in to comment.