@aztec/node-lib 3.0.0-nightly.20251216 → 3.0.0-nightly.20251217

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.
@@ -38,7 +38,7 @@ const MIN_L1_BLOCKS_TO_TRIGGER_REPLACE = 86400 / 2 / 12;
38
38
  try {
39
39
  [archiverL1BlockNumber, archiverL2BlockNumber] = await Promise.all([
40
40
  archiverStore.getSynchPoint().then((s)=>s.blocksSynchedTo),
41
- archiverStore.getSynchedL2BlockNumber()
41
+ archiverStore.getLatestBlockNumber()
42
42
  ]);
43
43
  } finally{
44
44
  log.verbose(`Closing temporary archiver data store`, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/node-lib",
3
- "version": "3.0.0-nightly.20251216",
3
+ "version": "3.0.0-nightly.20251217",
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": "3.0.0-nightly.20251216",
61
- "@aztec/bb-prover": "3.0.0-nightly.20251216",
62
- "@aztec/blob-sink": "3.0.0-nightly.20251216",
63
- "@aztec/constants": "3.0.0-nightly.20251216",
64
- "@aztec/epoch-cache": "3.0.0-nightly.20251216",
65
- "@aztec/ethereum": "3.0.0-nightly.20251216",
66
- "@aztec/foundation": "3.0.0-nightly.20251216",
67
- "@aztec/kv-store": "3.0.0-nightly.20251216",
68
- "@aztec/merkle-tree": "3.0.0-nightly.20251216",
69
- "@aztec/p2p": "3.0.0-nightly.20251216",
70
- "@aztec/protocol-contracts": "3.0.0-nightly.20251216",
71
- "@aztec/prover-client": "3.0.0-nightly.20251216",
72
- "@aztec/sequencer-client": "3.0.0-nightly.20251216",
73
- "@aztec/simulator": "3.0.0-nightly.20251216",
74
- "@aztec/stdlib": "3.0.0-nightly.20251216",
75
- "@aztec/telemetry-client": "3.0.0-nightly.20251216",
76
- "@aztec/validator-client": "3.0.0-nightly.20251216",
77
- "@aztec/world-state": "3.0.0-nightly.20251216",
60
+ "@aztec/archiver": "3.0.0-nightly.20251217",
61
+ "@aztec/bb-prover": "3.0.0-nightly.20251217",
62
+ "@aztec/blob-sink": "3.0.0-nightly.20251217",
63
+ "@aztec/constants": "3.0.0-nightly.20251217",
64
+ "@aztec/epoch-cache": "3.0.0-nightly.20251217",
65
+ "@aztec/ethereum": "3.0.0-nightly.20251217",
66
+ "@aztec/foundation": "3.0.0-nightly.20251217",
67
+ "@aztec/kv-store": "3.0.0-nightly.20251217",
68
+ "@aztec/merkle-tree": "3.0.0-nightly.20251217",
69
+ "@aztec/p2p": "3.0.0-nightly.20251217",
70
+ "@aztec/protocol-contracts": "3.0.0-nightly.20251217",
71
+ "@aztec/prover-client": "3.0.0-nightly.20251217",
72
+ "@aztec/sequencer-client": "3.0.0-nightly.20251217",
73
+ "@aztec/simulator": "3.0.0-nightly.20251217",
74
+ "@aztec/stdlib": "3.0.0-nightly.20251217",
75
+ "@aztec/telemetry-client": "3.0.0-nightly.20251217",
76
+ "@aztec/validator-client": "3.0.0-nightly.20251217",
77
+ "@aztec/world-state": "3.0.0-nightly.20251217",
78
78
  "tslib": "^2.4.0"
79
79
  },
80
80
  "devDependencies": {
81
- "@aztec/blob-lib": "3.0.0-nightly.20251216",
82
- "@aztec/node-keystore": "3.0.0-nightly.20251216",
81
+ "@aztec/blob-lib": "3.0.0-nightly.20251217",
82
+ "@aztec/node-keystore": "3.0.0-nightly.20251217",
83
83
  "@jest/globals": "^30.0.0",
84
84
  "@types/jest": "^30.0.0",
85
85
  "@types/node": "^22.15.17",
@@ -64,7 +64,7 @@ export async function trySnapshotSync(config: SnapshotSyncConfig, log: Logger) {
64
64
  try {
65
65
  [archiverL1BlockNumber, archiverL2BlockNumber] = await Promise.all([
66
66
  archiverStore.getSynchPoint().then(s => s.blocksSynchedTo),
67
- archiverStore.getSynchedL2BlockNumber(),
67
+ archiverStore.getLatestBlockNumber(),
68
68
  ] as const);
69
69
  } finally {
70
70
  log.verbose(`Closing temporary archiver data store`, { archiverL1BlockNumber, archiverL2BlockNumber });