@aztec/prover-node 3.0.0-devnet.2 → 3.0.0-manual.20251030

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.
@@ -117,7 +117,7 @@ import { validateEpochProvingJobData } from './epoch-proving-job-data.js';
117
117
  // Total number of checkpoints equals number of blocks because we currently build a checkpoint with only one block.
118
118
  const totalNumCheckpoints = epochSizeBlocks;
119
119
  this.prover.startNewEpoch(epochNumber, totalNumCheckpoints, finalBlobBatchingChallenges);
120
- await this.prover.startTubeCircuits(Array.from(this.txs.values()));
120
+ await this.prover.startChonkVerifierCircuits(Array.from(this.txs.values()));
121
121
  await asyncPool(this.config.parallelBlockLimit ?? 32, this.blocks, async (block)=>{
122
122
  this.checkState();
123
123
  const globalVariables = block.header.globalVariables;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/prover-node",
3
- "version": "3.0.0-devnet.2",
3
+ "version": "3.0.0-manual.20251030",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./dest/index.js",
@@ -56,27 +56,27 @@
56
56
  ]
57
57
  },
58
58
  "dependencies": {
59
- "@aztec/archiver": "3.0.0-devnet.2",
60
- "@aztec/bb-prover": "3.0.0-devnet.2",
61
- "@aztec/blob-lib": "3.0.0-devnet.2",
62
- "@aztec/blob-sink": "3.0.0-devnet.2",
63
- "@aztec/constants": "3.0.0-devnet.2",
64
- "@aztec/epoch-cache": "3.0.0-devnet.2",
65
- "@aztec/ethereum": "3.0.0-devnet.2",
66
- "@aztec/foundation": "3.0.0-devnet.2",
67
- "@aztec/kv-store": "3.0.0-devnet.2",
68
- "@aztec/l1-artifacts": "3.0.0-devnet.2",
69
- "@aztec/node-keystore": "3.0.0-devnet.2",
70
- "@aztec/node-lib": "3.0.0-devnet.2",
71
- "@aztec/noir-protocol-circuits-types": "3.0.0-devnet.2",
72
- "@aztec/p2p": "3.0.0-devnet.2",
73
- "@aztec/protocol-contracts": "3.0.0-devnet.2",
74
- "@aztec/prover-client": "3.0.0-devnet.2",
75
- "@aztec/sequencer-client": "3.0.0-devnet.2",
76
- "@aztec/simulator": "3.0.0-devnet.2",
77
- "@aztec/stdlib": "3.0.0-devnet.2",
78
- "@aztec/telemetry-client": "3.0.0-devnet.2",
79
- "@aztec/world-state": "3.0.0-devnet.2",
59
+ "@aztec/archiver": "3.0.0-manual.20251030",
60
+ "@aztec/bb-prover": "3.0.0-manual.20251030",
61
+ "@aztec/blob-lib": "3.0.0-manual.20251030",
62
+ "@aztec/blob-sink": "3.0.0-manual.20251030",
63
+ "@aztec/constants": "3.0.0-manual.20251030",
64
+ "@aztec/epoch-cache": "3.0.0-manual.20251030",
65
+ "@aztec/ethereum": "3.0.0-manual.20251030",
66
+ "@aztec/foundation": "3.0.0-manual.20251030",
67
+ "@aztec/kv-store": "3.0.0-manual.20251030",
68
+ "@aztec/l1-artifacts": "3.0.0-manual.20251030",
69
+ "@aztec/node-keystore": "3.0.0-manual.20251030",
70
+ "@aztec/node-lib": "3.0.0-manual.20251030",
71
+ "@aztec/noir-protocol-circuits-types": "3.0.0-manual.20251030",
72
+ "@aztec/p2p": "3.0.0-manual.20251030",
73
+ "@aztec/protocol-contracts": "3.0.0-manual.20251030",
74
+ "@aztec/prover-client": "3.0.0-manual.20251030",
75
+ "@aztec/sequencer-client": "3.0.0-manual.20251030",
76
+ "@aztec/simulator": "3.0.0-manual.20251030",
77
+ "@aztec/stdlib": "3.0.0-manual.20251030",
78
+ "@aztec/telemetry-client": "3.0.0-manual.20251030",
79
+ "@aztec/world-state": "3.0.0-manual.20251030",
80
80
  "source-map-support": "^0.5.21",
81
81
  "tslib": "^2.4.0",
82
82
  "viem": "npm:@spalladino/viem@2.38.2-eip7594.0"
@@ -140,7 +140,7 @@ export class EpochProvingJob implements Traceable {
140
140
  const totalNumCheckpoints = epochSizeBlocks;
141
141
 
142
142
  this.prover.startNewEpoch(epochNumber, totalNumCheckpoints, finalBlobBatchingChallenges);
143
- await this.prover.startTubeCircuits(Array.from(this.txs.values()));
143
+ await this.prover.startChonkVerifierCircuits(Array.from(this.txs.values()));
144
144
 
145
145
  await asyncPool(this.config.parallelBlockLimit ?? 32, this.blocks, async block => {
146
146
  this.checkState();