Skip to content

Commit 1ba8951

Browse files
authored
Bump core version (#763)
* version bump * enable version
1 parent d51ec96 commit 1ba8951

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/deepbook/sources/helper/constants.move

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
module deepbook::constants;
55

6-
const CURRENT_VERSION: u64 = 5; // Update version during upgrades
6+
const CURRENT_VERSION: u64 = 6; // Update version during upgrades
77
const POOL_CREATION_FEE: u64 = 500 * 1_000_000; // 500 DEEP
88
const FLOAT_SCALING: u64 = 1_000_000_000;
99
const FLOAT_SCALING_U128: u128 = 1_000_000_000;

scripts/transactions/enableVersion.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { getFullnodeUrl, SuiClient } from "@mysten/sui/client";
99
(async () => {
1010
// Update constant for env
1111
const env = "mainnet";
12-
const versionToEnable = 5;
12+
const versionToEnable = 6;
1313

1414
const dbClient = new DeepBookClient({
1515
address: "0x0",

0 commit comments

Comments
 (0)