@aztec/node-lib 0.0.1-commit.ef17749e1 → 0.0.1-commit.f1b29a41e

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.
@@ -32,9 +32,7 @@ const MIN_L1_BLOCKS_TO_TRIGGER_REPLACE = 86400 / 2 / 12;
32
32
  }
33
33
  // Create an archiver store to check the current state (do this only once)
34
34
  log.verbose(`Creating temporary archiver data store`);
35
- const archiverStore = await createArchiverStore(config, {
36
- epochDuration: config.aztecEpochDuration
37
- });
35
+ const archiverStore = await createArchiverStore(config);
38
36
  let archiverL1BlockNumber;
39
37
  let archiverL2BlockNumber;
40
38
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/node-lib",
3
- "version": "0.0.1-commit.ef17749e1",
3
+ "version": "0.0.1-commit.f1b29a41e",
4
4
  "type": "module",
5
5
  "typedocOptions": {
6
6
  "entryPoints": [
@@ -66,29 +66,28 @@
66
66
  ]
67
67
  },
68
68
  "dependencies": {
69
- "@aztec/archiver": "0.0.1-commit.ef17749e1",
70
- "@aztec/bb-prover": "0.0.1-commit.ef17749e1",
71
- "@aztec/blob-client": "0.0.1-commit.ef17749e1",
72
- "@aztec/constants": "0.0.1-commit.ef17749e1",
73
- "@aztec/epoch-cache": "0.0.1-commit.ef17749e1",
74
- "@aztec/ethereum": "0.0.1-commit.ef17749e1",
75
- "@aztec/foundation": "0.0.1-commit.ef17749e1",
76
- "@aztec/kv-store": "0.0.1-commit.ef17749e1",
77
- "@aztec/merkle-tree": "0.0.1-commit.ef17749e1",
78
- "@aztec/p2p": "0.0.1-commit.ef17749e1",
79
- "@aztec/protocol-contracts": "0.0.1-commit.ef17749e1",
80
- "@aztec/prover-client": "0.0.1-commit.ef17749e1",
81
- "@aztec/sequencer-client": "0.0.1-commit.ef17749e1",
82
- "@aztec/simulator": "0.0.1-commit.ef17749e1",
83
- "@aztec/stdlib": "0.0.1-commit.ef17749e1",
84
- "@aztec/telemetry-client": "0.0.1-commit.ef17749e1",
85
- "@aztec/validator-client": "0.0.1-commit.ef17749e1",
86
- "@aztec/world-state": "0.0.1-commit.ef17749e1",
69
+ "@aztec/archiver": "0.0.1-commit.f1b29a41e",
70
+ "@aztec/bb-prover": "0.0.1-commit.f1b29a41e",
71
+ "@aztec/blob-client": "0.0.1-commit.f1b29a41e",
72
+ "@aztec/constants": "0.0.1-commit.f1b29a41e",
73
+ "@aztec/epoch-cache": "0.0.1-commit.f1b29a41e",
74
+ "@aztec/ethereum": "0.0.1-commit.f1b29a41e",
75
+ "@aztec/foundation": "0.0.1-commit.f1b29a41e",
76
+ "@aztec/kv-store": "0.0.1-commit.f1b29a41e",
77
+ "@aztec/p2p": "0.0.1-commit.f1b29a41e",
78
+ "@aztec/protocol-contracts": "0.0.1-commit.f1b29a41e",
79
+ "@aztec/prover-client": "0.0.1-commit.f1b29a41e",
80
+ "@aztec/sequencer-client": "0.0.1-commit.f1b29a41e",
81
+ "@aztec/simulator": "0.0.1-commit.f1b29a41e",
82
+ "@aztec/stdlib": "0.0.1-commit.f1b29a41e",
83
+ "@aztec/telemetry-client": "0.0.1-commit.f1b29a41e",
84
+ "@aztec/validator-client": "0.0.1-commit.f1b29a41e",
85
+ "@aztec/world-state": "0.0.1-commit.f1b29a41e",
87
86
  "tslib": "^2.4.0"
88
87
  },
89
88
  "devDependencies": {
90
- "@aztec/blob-lib": "0.0.1-commit.ef17749e1",
91
- "@aztec/node-keystore": "0.0.1-commit.ef17749e1",
89
+ "@aztec/blob-lib": "0.0.1-commit.f1b29a41e",
90
+ "@aztec/node-keystore": "0.0.1-commit.f1b29a41e",
92
91
  "@jest/globals": "^30.0.0",
93
92
  "@types/jest": "^30.0.0",
94
93
  "@types/node": "^22.15.17",
@@ -61,7 +61,7 @@ export async function trySnapshotSync(config: SnapshotSyncConfig, log: Logger) {
61
61
 
62
62
  // Create an archiver store to check the current state (do this only once)
63
63
  log.verbose(`Creating temporary archiver data store`);
64
- const archiverStore = await createArchiverStore(config, { epochDuration: config.aztecEpochDuration });
64
+ const archiverStore = await createArchiverStore(config);
65
65
  let archiverL1BlockNumber: bigint | undefined;
66
66
  let archiverL2BlockNumber: number | undefined;
67
67
  try {