@aztec/node-lib 0.0.1-commit.54489865 → 0.0.1-commit.592b9384

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": "0.0.1-commit.54489865",
3
+ "version": "0.0.1-commit.592b9384",
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": "0.0.1-commit.54489865",
61
- "@aztec/bb-prover": "0.0.1-commit.54489865",
62
- "@aztec/blob-client": "0.0.1-commit.54489865",
63
- "@aztec/constants": "0.0.1-commit.54489865",
64
- "@aztec/epoch-cache": "0.0.1-commit.54489865",
65
- "@aztec/ethereum": "0.0.1-commit.54489865",
66
- "@aztec/foundation": "0.0.1-commit.54489865",
67
- "@aztec/kv-store": "0.0.1-commit.54489865",
68
- "@aztec/merkle-tree": "0.0.1-commit.54489865",
69
- "@aztec/p2p": "0.0.1-commit.54489865",
70
- "@aztec/protocol-contracts": "0.0.1-commit.54489865",
71
- "@aztec/prover-client": "0.0.1-commit.54489865",
72
- "@aztec/sequencer-client": "0.0.1-commit.54489865",
73
- "@aztec/simulator": "0.0.1-commit.54489865",
74
- "@aztec/stdlib": "0.0.1-commit.54489865",
75
- "@aztec/telemetry-client": "0.0.1-commit.54489865",
76
- "@aztec/validator-client": "0.0.1-commit.54489865",
77
- "@aztec/world-state": "0.0.1-commit.54489865",
60
+ "@aztec/archiver": "0.0.1-commit.592b9384",
61
+ "@aztec/bb-prover": "0.0.1-commit.592b9384",
62
+ "@aztec/blob-client": "0.0.1-commit.592b9384",
63
+ "@aztec/constants": "0.0.1-commit.592b9384",
64
+ "@aztec/epoch-cache": "0.0.1-commit.592b9384",
65
+ "@aztec/ethereum": "0.0.1-commit.592b9384",
66
+ "@aztec/foundation": "0.0.1-commit.592b9384",
67
+ "@aztec/kv-store": "0.0.1-commit.592b9384",
68
+ "@aztec/merkle-tree": "0.0.1-commit.592b9384",
69
+ "@aztec/p2p": "0.0.1-commit.592b9384",
70
+ "@aztec/protocol-contracts": "0.0.1-commit.592b9384",
71
+ "@aztec/prover-client": "0.0.1-commit.592b9384",
72
+ "@aztec/sequencer-client": "0.0.1-commit.592b9384",
73
+ "@aztec/simulator": "0.0.1-commit.592b9384",
74
+ "@aztec/stdlib": "0.0.1-commit.592b9384",
75
+ "@aztec/telemetry-client": "0.0.1-commit.592b9384",
76
+ "@aztec/validator-client": "0.0.1-commit.592b9384",
77
+ "@aztec/world-state": "0.0.1-commit.592b9384",
78
78
  "tslib": "^2.4.0"
79
79
  },
80
80
  "devDependencies": {
81
- "@aztec/blob-lib": "0.0.1-commit.54489865",
82
- "@aztec/node-keystore": "0.0.1-commit.54489865",
81
+ "@aztec/blob-lib": "0.0.1-commit.592b9384",
82
+ "@aztec/node-keystore": "0.0.1-commit.592b9384",
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,