@aztec/node-lib 0.0.1-commit.18ccd8f0 → 0.0.1-commit.1bb068fb5

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,7 +1,16 @@
1
1
  {
2
2
  "name": "@aztec/node-lib",
3
- "version": "0.0.1-commit.18ccd8f0",
3
+ "version": "0.0.1-commit.1bb068fb5",
4
4
  "type": "module",
5
+ "typedocOptions": {
6
+ "entryPoints": [
7
+ "./src/actions/index.ts",
8
+ "./src/config/index.ts",
9
+ "./src/factories/index.ts"
10
+ ],
11
+ "name": "Node Library",
12
+ "tsconfig": "./tsconfig.json"
13
+ },
5
14
  "exports": {
6
15
  "./actions": "./dest/actions/index.js",
7
16
  "./config": "./dest/config/index.js",
@@ -57,29 +66,29 @@
57
66
  ]
58
67
  },
59
68
  "dependencies": {
60
- "@aztec/archiver": "0.0.1-commit.18ccd8f0",
61
- "@aztec/bb-prover": "0.0.1-commit.18ccd8f0",
62
- "@aztec/blob-client": "0.0.1-commit.18ccd8f0",
63
- "@aztec/constants": "0.0.1-commit.18ccd8f0",
64
- "@aztec/epoch-cache": "0.0.1-commit.18ccd8f0",
65
- "@aztec/ethereum": "0.0.1-commit.18ccd8f0",
66
- "@aztec/foundation": "0.0.1-commit.18ccd8f0",
67
- "@aztec/kv-store": "0.0.1-commit.18ccd8f0",
68
- "@aztec/merkle-tree": "0.0.1-commit.18ccd8f0",
69
- "@aztec/p2p": "0.0.1-commit.18ccd8f0",
70
- "@aztec/protocol-contracts": "0.0.1-commit.18ccd8f0",
71
- "@aztec/prover-client": "0.0.1-commit.18ccd8f0",
72
- "@aztec/sequencer-client": "0.0.1-commit.18ccd8f0",
73
- "@aztec/simulator": "0.0.1-commit.18ccd8f0",
74
- "@aztec/stdlib": "0.0.1-commit.18ccd8f0",
75
- "@aztec/telemetry-client": "0.0.1-commit.18ccd8f0",
76
- "@aztec/validator-client": "0.0.1-commit.18ccd8f0",
77
- "@aztec/world-state": "0.0.1-commit.18ccd8f0",
69
+ "@aztec/archiver": "0.0.1-commit.1bb068fb5",
70
+ "@aztec/bb-prover": "0.0.1-commit.1bb068fb5",
71
+ "@aztec/blob-client": "0.0.1-commit.1bb068fb5",
72
+ "@aztec/constants": "0.0.1-commit.1bb068fb5",
73
+ "@aztec/epoch-cache": "0.0.1-commit.1bb068fb5",
74
+ "@aztec/ethereum": "0.0.1-commit.1bb068fb5",
75
+ "@aztec/foundation": "0.0.1-commit.1bb068fb5",
76
+ "@aztec/kv-store": "0.0.1-commit.1bb068fb5",
77
+ "@aztec/merkle-tree": "0.0.1-commit.1bb068fb5",
78
+ "@aztec/p2p": "0.0.1-commit.1bb068fb5",
79
+ "@aztec/protocol-contracts": "0.0.1-commit.1bb068fb5",
80
+ "@aztec/prover-client": "0.0.1-commit.1bb068fb5",
81
+ "@aztec/sequencer-client": "0.0.1-commit.1bb068fb5",
82
+ "@aztec/simulator": "0.0.1-commit.1bb068fb5",
83
+ "@aztec/stdlib": "0.0.1-commit.1bb068fb5",
84
+ "@aztec/telemetry-client": "0.0.1-commit.1bb068fb5",
85
+ "@aztec/validator-client": "0.0.1-commit.1bb068fb5",
86
+ "@aztec/world-state": "0.0.1-commit.1bb068fb5",
78
87
  "tslib": "^2.4.0"
79
88
  },
80
89
  "devDependencies": {
81
- "@aztec/blob-lib": "0.0.1-commit.18ccd8f0",
82
- "@aztec/node-keystore": "0.0.1-commit.18ccd8f0",
90
+ "@aztec/blob-lib": "0.0.1-commit.1bb068fb5",
91
+ "@aztec/node-keystore": "0.0.1-commit.1bb068fb5",
83
92
  "@jest/globals": "^30.0.0",
84
93
  "@types/jest": "^30.0.0",
85
94
  "@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,