@aztec/world-state 0.87.7 → 0.87.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11,7 +11,7 @@ import type { WorldStateTreeMapSizes } from '../synchronizer/factory.js';
11
11
  import type { MerkleTreeAdminDatabase as MerkleTreeDatabase } from '../world-state-db/merkle_tree_db.js';
12
12
  import { type WorldStateStatusFull, type WorldStateStatusSummary } from './message.js';
13
13
  import { NativeWorldState } from './native_world_state_instance.js';
14
- export declare const WORLD_STATE_DB_VERSION = 1;
14
+ export declare const WORLD_STATE_DB_VERSION = 2;
15
15
  export declare const WORLD_STATE_DIR = "world_state";
16
16
  export declare class NativeWorldStateService implements MerkleTreeDatabase {
17
17
  protected instance: NativeWorldState;
@@ -18,7 +18,7 @@ import { WorldStateMessageType, blockStateReference, sanitiseFullStatus, sanitis
18
18
  import { NativeWorldState } from './native_world_state_instance.js';
19
19
  // The current version of the world state database schema
20
20
  // Increment this when making incompatible changes to the database schema
21
- export const WORLD_STATE_DB_VERSION = 1; // The initial version
21
+ export const WORLD_STATE_DB_VERSION = 2; // The initial version
22
22
  export const WORLD_STATE_DIR = 'world_state';
23
23
  export class NativeWorldStateService {
24
24
  instance;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/world-state",
3
- "version": "0.87.7",
3
+ "version": "0.87.9",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./dest/index.js",
@@ -60,19 +60,19 @@
60
60
  ]
61
61
  },
62
62
  "dependencies": {
63
- "@aztec/constants": "0.87.7",
64
- "@aztec/foundation": "0.87.7",
65
- "@aztec/kv-store": "0.87.7",
66
- "@aztec/merkle-tree": "0.87.7",
67
- "@aztec/native": "0.87.7",
68
- "@aztec/protocol-contracts": "0.87.7",
69
- "@aztec/stdlib": "0.87.7",
70
- "@aztec/telemetry-client": "0.87.7",
63
+ "@aztec/constants": "0.87.9",
64
+ "@aztec/foundation": "0.87.9",
65
+ "@aztec/kv-store": "0.87.9",
66
+ "@aztec/merkle-tree": "0.87.9",
67
+ "@aztec/native": "0.87.9",
68
+ "@aztec/protocol-contracts": "0.87.9",
69
+ "@aztec/stdlib": "0.87.9",
70
+ "@aztec/telemetry-client": "0.87.9",
71
71
  "tslib": "^2.4.0",
72
72
  "zod": "^3.23.8"
73
73
  },
74
74
  "devDependencies": {
75
- "@aztec/archiver": "0.87.7",
75
+ "@aztec/archiver": "0.87.9",
76
76
  "@jest/globals": "^29.5.0",
77
77
  "@types/jest": "^29.5.0",
78
78
  "@types/node": "^22.15.17",
@@ -39,7 +39,7 @@ import { NativeWorldState } from './native_world_state_instance.js';
39
39
 
40
40
  // The current version of the world state database schema
41
41
  // Increment this when making incompatible changes to the database schema
42
- export const WORLD_STATE_DB_VERSION = 1; // The initial version
42
+ export const WORLD_STATE_DB_VERSION = 2; // The initial version
43
43
 
44
44
  export const WORLD_STATE_DIR = 'world_state';
45
45