@aztec/node-lib 4.0.0-nightly.20260129 → 4.0.0-nightly.20260131

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.
@@ -3,7 +3,7 @@ import { INITIAL_L2_BLOCK_NUM } from '@aztec/constants';
3
3
  import { getPublicClient } from '@aztec/ethereum/client';
4
4
  import { tryRmDir } from '@aztec/foundation/fs';
5
5
  import { P2P_STORE_NAME } from '@aztec/p2p';
6
- import { DatabaseVersionManager } from '@aztec/stdlib/database-version';
6
+ import { DatabaseVersionManager } from '@aztec/stdlib/database-version/manager';
7
7
  import { createReadOnlyFileStore } from '@aztec/stdlib/file-store';
8
8
  import { downloadSnapshot, getLatestSnapshotMetadata, makeSnapshotPaths } from '@aztec/stdlib/snapshots';
9
9
  import { NATIVE_WORLD_STATE_DBS, WORLD_STATE_DB_VERSION, WORLD_STATE_DIR } from '@aztec/world-state';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/node-lib",
3
- "version": "4.0.0-nightly.20260129",
3
+ "version": "4.0.0-nightly.20260131",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  "./actions": "./dest/actions/index.js",
@@ -57,29 +57,29 @@
57
57
  ]
58
58
  },
59
59
  "dependencies": {
60
- "@aztec/archiver": "4.0.0-nightly.20260129",
61
- "@aztec/bb-prover": "4.0.0-nightly.20260129",
62
- "@aztec/blob-client": "4.0.0-nightly.20260129",
63
- "@aztec/constants": "4.0.0-nightly.20260129",
64
- "@aztec/epoch-cache": "4.0.0-nightly.20260129",
65
- "@aztec/ethereum": "4.0.0-nightly.20260129",
66
- "@aztec/foundation": "4.0.0-nightly.20260129",
67
- "@aztec/kv-store": "4.0.0-nightly.20260129",
68
- "@aztec/merkle-tree": "4.0.0-nightly.20260129",
69
- "@aztec/p2p": "4.0.0-nightly.20260129",
70
- "@aztec/protocol-contracts": "4.0.0-nightly.20260129",
71
- "@aztec/prover-client": "4.0.0-nightly.20260129",
72
- "@aztec/sequencer-client": "4.0.0-nightly.20260129",
73
- "@aztec/simulator": "4.0.0-nightly.20260129",
74
- "@aztec/stdlib": "4.0.0-nightly.20260129",
75
- "@aztec/telemetry-client": "4.0.0-nightly.20260129",
76
- "@aztec/validator-client": "4.0.0-nightly.20260129",
77
- "@aztec/world-state": "4.0.0-nightly.20260129",
60
+ "@aztec/archiver": "4.0.0-nightly.20260131",
61
+ "@aztec/bb-prover": "4.0.0-nightly.20260131",
62
+ "@aztec/blob-client": "4.0.0-nightly.20260131",
63
+ "@aztec/constants": "4.0.0-nightly.20260131",
64
+ "@aztec/epoch-cache": "4.0.0-nightly.20260131",
65
+ "@aztec/ethereum": "4.0.0-nightly.20260131",
66
+ "@aztec/foundation": "4.0.0-nightly.20260131",
67
+ "@aztec/kv-store": "4.0.0-nightly.20260131",
68
+ "@aztec/merkle-tree": "4.0.0-nightly.20260131",
69
+ "@aztec/p2p": "4.0.0-nightly.20260131",
70
+ "@aztec/protocol-contracts": "4.0.0-nightly.20260131",
71
+ "@aztec/prover-client": "4.0.0-nightly.20260131",
72
+ "@aztec/sequencer-client": "4.0.0-nightly.20260131",
73
+ "@aztec/simulator": "4.0.0-nightly.20260131",
74
+ "@aztec/stdlib": "4.0.0-nightly.20260131",
75
+ "@aztec/telemetry-client": "4.0.0-nightly.20260131",
76
+ "@aztec/validator-client": "4.0.0-nightly.20260131",
77
+ "@aztec/world-state": "4.0.0-nightly.20260131",
78
78
  "tslib": "^2.4.0"
79
79
  },
80
80
  "devDependencies": {
81
- "@aztec/blob-lib": "4.0.0-nightly.20260129",
82
- "@aztec/node-keystore": "4.0.0-nightly.20260129",
81
+ "@aztec/blob-lib": "4.0.0-nightly.20260131",
82
+ "@aztec/node-keystore": "4.0.0-nightly.20260131",
83
83
  "@jest/globals": "^30.0.0",
84
84
  "@types/jest": "^30.0.0",
85
85
  "@types/node": "^22.15.17",
@@ -8,7 +8,7 @@ import type { Logger } from '@aztec/foundation/log';
8
8
  import type { DataStoreConfig } from '@aztec/kv-store/config';
9
9
  import { P2P_STORE_NAME } from '@aztec/p2p';
10
10
  import type { ChainConfig } from '@aztec/stdlib/config';
11
- import { DatabaseVersionManager } from '@aztec/stdlib/database-version';
11
+ import { DatabaseVersionManager } from '@aztec/stdlib/database-version/manager';
12
12
  import { type ReadOnlyFileStore, createReadOnlyFileStore } from '@aztec/stdlib/file-store';
13
13
  import {
14
14
  type SnapshotMetadata,