@aztec/prover-client 0.0.1-commit.d431d1c → 0.0.1-commit.d58ff9d0

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.
Files changed (132) hide show
  1. package/dest/config.d.ts +1 -1
  2. package/dest/config.d.ts.map +1 -1
  3. package/dest/config.js +16 -2
  4. package/dest/light/lightweight_checkpoint_builder.d.ts +14 -6
  5. package/dest/light/lightweight_checkpoint_builder.d.ts.map +1 -1
  6. package/dest/light/lightweight_checkpoint_builder.js +66 -27
  7. package/dest/mocks/fixtures.d.ts +1 -1
  8. package/dest/mocks/fixtures.d.ts.map +1 -1
  9. package/dest/mocks/fixtures.js +2 -1
  10. package/dest/mocks/test_context.d.ts +11 -11
  11. package/dest/mocks/test_context.d.ts.map +1 -1
  12. package/dest/mocks/test_context.js +31 -30
  13. package/dest/orchestrator/block-building-helpers.d.ts +4 -4
  14. package/dest/orchestrator/block-building-helpers.d.ts.map +1 -1
  15. package/dest/orchestrator/block-building-helpers.js +3 -3
  16. package/dest/orchestrator/block-proving-state.d.ts +4 -1
  17. package/dest/orchestrator/block-proving-state.d.ts.map +1 -1
  18. package/dest/orchestrator/block-proving-state.js +7 -0
  19. package/dest/orchestrator/checkpoint-proving-state.d.ts +20 -36
  20. package/dest/orchestrator/checkpoint-proving-state.d.ts.map +1 -1
  21. package/dest/orchestrator/checkpoint-proving-state.js +22 -120
  22. package/dest/orchestrator/checkpoint-sub-tree-orchestrator.d.ts +161 -0
  23. package/dest/orchestrator/checkpoint-sub-tree-orchestrator.d.ts.map +1 -0
  24. package/dest/orchestrator/{orchestrator.js → checkpoint-sub-tree-orchestrator.js} +311 -472
  25. package/dest/orchestrator/chonk-cache.d.ts +39 -0
  26. package/dest/orchestrator/chonk-cache.d.ts.map +1 -0
  27. package/dest/orchestrator/chonk-cache.js +80 -0
  28. package/dest/orchestrator/index.d.ts +4 -2
  29. package/dest/orchestrator/index.d.ts.map +1 -1
  30. package/dest/orchestrator/index.js +3 -1
  31. package/dest/orchestrator/proving-scheduler.d.ts +81 -0
  32. package/dest/orchestrator/proving-scheduler.d.ts.map +1 -0
  33. package/dest/orchestrator/proving-scheduler.js +120 -0
  34. package/dest/orchestrator/top-tree-orchestrator.d.ts +88 -0
  35. package/dest/orchestrator/top-tree-orchestrator.d.ts.map +1 -0
  36. package/dest/orchestrator/top-tree-orchestrator.js +232 -0
  37. package/dest/orchestrator/top-tree-proving-state.d.ts +61 -0
  38. package/dest/orchestrator/top-tree-proving-state.d.ts.map +1 -0
  39. package/dest/orchestrator/top-tree-proving-state.js +185 -0
  40. package/dest/orchestrator/tx-proving-state.d.ts +3 -3
  41. package/dest/orchestrator/tx-proving-state.d.ts.map +1 -1
  42. package/dest/prover-client/prover-client.d.ts +64 -7
  43. package/dest/prover-client/prover-client.d.ts.map +1 -1
  44. package/dest/prover-client/prover-client.js +66 -14
  45. package/dest/proving_broker/broker_prover_facade.d.ts +6 -5
  46. package/dest/proving_broker/broker_prover_facade.d.ts.map +1 -1
  47. package/dest/proving_broker/broker_prover_facade.js +16 -22
  48. package/dest/proving_broker/config.d.ts +12 -64
  49. package/dest/proving_broker/config.d.ts.map +1 -1
  50. package/dest/proving_broker/config.js +22 -5
  51. package/dest/proving_broker/index.d.ts +2 -1
  52. package/dest/proving_broker/index.d.ts.map +1 -1
  53. package/dest/proving_broker/index.js +1 -0
  54. package/dest/proving_broker/proof_store/factory.d.ts +2 -5
  55. package/dest/proving_broker/proof_store/factory.d.ts.map +1 -1
  56. package/dest/proving_broker/proof_store/factory.js +7 -30
  57. package/dest/proving_broker/proof_store/file_store_proof_store.d.ts +18 -0
  58. package/dest/proving_broker/proof_store/file_store_proof_store.d.ts.map +1 -0
  59. package/dest/proving_broker/proof_store/file_store_proof_store.js +60 -0
  60. package/dest/proving_broker/proof_store/index.d.ts +2 -2
  61. package/dest/proving_broker/proof_store/index.d.ts.map +1 -1
  62. package/dest/proving_broker/proof_store/index.js +1 -1
  63. package/dest/proving_broker/proving_agent.d.ts +4 -3
  64. package/dest/proving_broker/proving_agent.d.ts.map +1 -1
  65. package/dest/proving_broker/proving_agent.js +4 -4
  66. package/dest/proving_broker/proving_broker.d.ts +8 -5
  67. package/dest/proving_broker/proving_broker.d.ts.map +1 -1
  68. package/dest/proving_broker/proving_broker.js +68 -11
  69. package/dest/proving_broker/proving_broker_database/persisted.js +2 -2
  70. package/dest/proving_broker/proving_broker_instrumentation.d.ts +3 -1
  71. package/dest/proving_broker/proving_broker_instrumentation.d.ts.map +1 -1
  72. package/dest/proving_broker/proving_broker_instrumentation.js +18 -7
  73. package/dest/proving_broker/proving_job_controller.d.ts +4 -3
  74. package/dest/proving_broker/proving_job_controller.d.ts.map +1 -1
  75. package/dest/proving_broker/proving_job_controller.js +6 -3
  76. package/dest/proving_broker/rpc.d.ts +6 -2
  77. package/dest/proving_broker/rpc.d.ts.map +1 -1
  78. package/dest/proving_broker/rpc.js +87 -23
  79. package/dest/test/epoch_settlement.d.ts +36 -0
  80. package/dest/test/epoch_settlement.d.ts.map +1 -0
  81. package/dest/test/epoch_settlement.js +52 -0
  82. package/dest/test/index.d.ts +2 -0
  83. package/dest/test/index.d.ts.map +1 -0
  84. package/dest/test/index.js +1 -0
  85. package/dest/test/mock_prover.d.ts +4 -4
  86. package/dest/test/mock_prover.js +2 -2
  87. package/package.json +20 -20
  88. package/src/config.ts +18 -2
  89. package/src/light/lightweight_checkpoint_builder.ts +79 -31
  90. package/src/mocks/fixtures.ts +2 -1
  91. package/src/mocks/test_context.ts +27 -43
  92. package/src/orchestrator/block-building-helpers.ts +3 -3
  93. package/src/orchestrator/block-proving-state.ts +9 -0
  94. package/src/orchestrator/checkpoint-proving-state.ts +21 -162
  95. package/src/orchestrator/checkpoint-sub-tree-orchestrator.ts +1044 -0
  96. package/src/orchestrator/chonk-cache.ts +99 -0
  97. package/src/orchestrator/index.ts +8 -1
  98. package/src/orchestrator/proving-scheduler.ts +160 -0
  99. package/src/orchestrator/top-tree-orchestrator.ts +384 -0
  100. package/src/orchestrator/top-tree-proving-state.ts +219 -0
  101. package/src/orchestrator/tx-proving-state.ts +3 -3
  102. package/src/prover-client/prover-client.ts +146 -20
  103. package/src/proving_broker/broker_prover_facade.ts +25 -25
  104. package/src/proving_broker/config.ts +25 -2
  105. package/src/proving_broker/index.ts +1 -0
  106. package/src/proving_broker/proof_store/factory.ts +10 -32
  107. package/src/proving_broker/proof_store/file_store_proof_store.ts +78 -0
  108. package/src/proving_broker/proof_store/index.ts +1 -1
  109. package/src/proving_broker/proving_agent.ts +5 -2
  110. package/src/proving_broker/proving_broker.ts +64 -8
  111. package/src/proving_broker/proving_broker_database/persisted.ts +2 -2
  112. package/src/proving_broker/proving_broker_instrumentation.ts +19 -6
  113. package/src/proving_broker/proving_job_controller.ts +9 -3
  114. package/src/proving_broker/rpc.ts +46 -20
  115. package/src/test/epoch_settlement.ts +82 -0
  116. package/src/test/index.ts +1 -0
  117. package/src/test/mock_prover.ts +2 -2
  118. package/dest/orchestrator/epoch-proving-state.d.ts +0 -75
  119. package/dest/orchestrator/epoch-proving-state.d.ts.map +0 -1
  120. package/dest/orchestrator/epoch-proving-state.js +0 -267
  121. package/dest/orchestrator/orchestrator.d.ts +0 -123
  122. package/dest/orchestrator/orchestrator.d.ts.map +0 -1
  123. package/dest/prover-client/server-epoch-prover.d.ts +0 -32
  124. package/dest/prover-client/server-epoch-prover.d.ts.map +0 -1
  125. package/dest/prover-client/server-epoch-prover.js +0 -40
  126. package/dest/proving_broker/proof_store/gcs_proof_store.d.ts +0 -14
  127. package/dest/proving_broker/proof_store/gcs_proof_store.d.ts.map +0 -1
  128. package/dest/proving_broker/proof_store/gcs_proof_store.js +0 -52
  129. package/src/orchestrator/epoch-proving-state.ts +0 -378
  130. package/src/orchestrator/orchestrator.ts +0 -1267
  131. package/src/prover-client/server-epoch-prover.ts +0 -69
  132. package/src/proving_broker/proof_store/gcs_proof_store.ts +0 -76
@@ -1,14 +1,14 @@
1
1
  import { SpongeBlob, computeBlobsHashFromBlobs, encodeCheckpointEndMarker, getBlobsPerL1Block } from '@aztec/blob-lib';
2
- import { NUMBER_OF_L1_L2_MESSAGES_PER_ROLLUP } from '@aztec/constants';
3
2
  import { type CheckpointNumber, IndexWithinCheckpoint } from '@aztec/foundation/branded-types';
4
- import { padArrayEnd } from '@aztec/foundation/collection';
5
3
  import { Fr } from '@aztec/foundation/curves/bn254';
6
- import { createLogger } from '@aztec/foundation/log';
7
- import { L2BlockNew } from '@aztec/stdlib/block';
4
+ import { type Logger, type LoggerBindings, createLogger } from '@aztec/foundation/log';
5
+ import { elapsed } from '@aztec/foundation/timer';
6
+ import { L2Block } from '@aztec/stdlib/block';
8
7
  import { Checkpoint } from '@aztec/stdlib/checkpoint';
9
8
  import type { MerkleTreeWriteOperations } from '@aztec/stdlib/interfaces/server';
10
9
  import {
11
10
  accumulateCheckpointOutHashes,
11
+ appendL1ToL2MessagesToTree,
12
12
  computeCheckpointOutHash,
13
13
  computeInHashFromL1ToL2Messages,
14
14
  } from '@aztec/stdlib/messaging';
@@ -34,22 +34,28 @@ import {
34
34
  * Finally completes the checkpoint by computing its header.
35
35
  */
36
36
  export class LightweightCheckpointBuilder {
37
- private readonly logger = createLogger('lightweight-checkpoint-builder');
37
+ private readonly logger: Logger;
38
38
 
39
39
  private lastArchives: AppendOnlyTreeSnapshot[] = [];
40
40
  private spongeBlob: SpongeBlob;
41
- private blocks: L2BlockNew[] = [];
41
+ private blocks: L2Block[] = [];
42
42
  private blobFields: Fr[] = [];
43
43
 
44
44
  constructor(
45
45
  public readonly checkpointNumber: CheckpointNumber,
46
46
  public readonly constants: CheckpointGlobalVariables,
47
+ public feeAssetPriceModifier: bigint,
47
48
  public readonly l1ToL2Messages: Fr[],
48
49
  private readonly previousCheckpointOutHashes: Fr[],
49
50
  public readonly db: MerkleTreeWriteOperations,
51
+ bindings?: LoggerBindings,
50
52
  ) {
53
+ this.logger = createLogger('checkpoint-builder', {
54
+ ...bindings,
55
+ instanceId: `checkpoint-${checkpointNumber}`,
56
+ });
51
57
  this.spongeBlob = SpongeBlob.init();
52
- this.logger.debug('Starting new checkpoint', { constants, l1ToL2Messages });
58
+ this.logger.debug('Starting new checkpoint', { constants, l1ToL2Messages, feeAssetPriceModifier });
53
59
  }
54
60
 
55
61
  static async startNewCheckpoint(
@@ -58,19 +64,20 @@ export class LightweightCheckpointBuilder {
58
64
  l1ToL2Messages: Fr[],
59
65
  previousCheckpointOutHashes: Fr[],
60
66
  db: MerkleTreeWriteOperations,
67
+ bindings?: LoggerBindings,
68
+ feeAssetPriceModifier: bigint = 0n,
61
69
  ): Promise<LightweightCheckpointBuilder> {
62
70
  // Insert l1-to-l2 messages into the tree.
63
- await db.appendLeaves(
64
- MerkleTreeId.L1_TO_L2_MESSAGE_TREE,
65
- padArrayEnd<Fr, number>(l1ToL2Messages, Fr.ZERO, NUMBER_OF_L1_L2_MESSAGES_PER_ROLLUP),
66
- );
71
+ await appendL1ToL2MessagesToTree(db, l1ToL2Messages);
67
72
 
68
73
  return new LightweightCheckpointBuilder(
69
74
  checkpointNumber,
70
75
  constants,
76
+ feeAssetPriceModifier,
71
77
  l1ToL2Messages,
72
78
  previousCheckpointOutHashes,
73
79
  db,
80
+ bindings,
74
81
  );
75
82
  }
76
83
 
@@ -83,17 +90,21 @@ export class LightweightCheckpointBuilder {
83
90
  static async resumeCheckpoint(
84
91
  checkpointNumber: CheckpointNumber,
85
92
  constants: CheckpointGlobalVariables,
93
+ feeAssetPriceModifier: bigint,
86
94
  l1ToL2Messages: Fr[],
87
95
  previousCheckpointOutHashes: Fr[],
88
96
  db: MerkleTreeWriteOperations,
89
- existingBlocks: L2BlockNew[],
97
+ existingBlocks: L2Block[],
98
+ bindings?: LoggerBindings,
90
99
  ): Promise<LightweightCheckpointBuilder> {
91
100
  const builder = new LightweightCheckpointBuilder(
92
101
  checkpointNumber,
93
102
  constants,
103
+ feeAssetPriceModifier,
94
104
  l1ToL2Messages,
95
105
  previousCheckpointOutHashes,
96
106
  db,
107
+ bindings,
97
108
  );
98
109
 
99
110
  builder.logger.debug('Resuming checkpoint from existing blocks', {
@@ -102,6 +113,10 @@ export class LightweightCheckpointBuilder {
102
113
  blockNumbers: existingBlocks.map(b => b.header.getBlockNumber()),
103
114
  });
104
115
 
116
+ if (existingBlocks.length === 0) {
117
+ throw new Error(`Cannot resume checkpoint ${checkpointNumber} with no existing blocks`);
118
+ }
119
+
105
120
  // Validate block order and consistency
106
121
  for (let i = 1; i < existingBlocks.length; i++) {
107
122
  const prev = existingBlocks[i - 1];
@@ -134,6 +149,15 @@ export class LightweightCheckpointBuilder {
134
149
  return builder;
135
150
  }
136
151
 
152
+ /** Returns how many blocks have been added to this checkpoint so far */
153
+ public getBlockCount() {
154
+ return this.blocks.length;
155
+ }
156
+
157
+ public getBlocks() {
158
+ return this.blocks;
159
+ }
160
+
137
161
  /**
138
162
  * Adds a new block to the checkpoint. The tx effects must have already been inserted into the db if
139
163
  * this is called after tx processing, if that's not the case, then set `insertTxsEffects` to true.
@@ -142,7 +166,8 @@ export class LightweightCheckpointBuilder {
142
166
  globalVariables: GlobalVariables,
143
167
  txs: ProcessedTx[],
144
168
  opts: { insertTxsEffects?: boolean; expectedEndState?: StateReference } = {},
145
- ): Promise<L2BlockNew> {
169
+ ): Promise<{ block: L2Block; timings: Record<string, number> }> {
170
+ const timings: Record<string, number> = {};
146
171
  const isFirstBlock = this.blocks.length === 0;
147
172
 
148
173
  // Empty blocks are only allowed as the first block in a checkpoint
@@ -151,7 +176,9 @@ export class LightweightCheckpointBuilder {
151
176
  }
152
177
 
153
178
  if (isFirstBlock) {
154
- this.lastArchives.push(await getTreeSnapshot(MerkleTreeId.ARCHIVE, this.db));
179
+ const [msGetInitialArchive, initialArchive] = await elapsed(() => getTreeSnapshot(MerkleTreeId.ARCHIVE, this.db));
180
+ this.lastArchives.push(initialArchive);
181
+ timings.getInitialArchive = msGetInitialArchive;
155
182
  }
156
183
 
157
184
  const lastArchive = this.lastArchives.at(-1)!;
@@ -161,12 +188,17 @@ export class LightweightCheckpointBuilder {
161
188
  `Inserting side effects for ${txs.length} txs for block ${globalVariables.blockNumber} into db`,
162
189
  { txs: txs.map(tx => tx.hash.toString()) },
163
190
  );
191
+ let msInsertSideEffects = 0;
164
192
  for (const tx of txs) {
165
- await insertSideEffects(tx, this.db);
193
+ const [ms] = await elapsed(() => insertSideEffects(tx, this.db));
194
+ msInsertSideEffects += ms;
166
195
  }
196
+ timings.insertSideEffects = msInsertSideEffects;
167
197
  }
168
198
 
169
- const endState = await this.db.getStateReference();
199
+ const [msGetEndState, endState] = await elapsed(() => this.db.getStateReference());
200
+ timings.getEndState = msGetEndState;
201
+
170
202
  if (opts.expectedEndState && !endState.equals(opts.expectedEndState)) {
171
203
  this.logger.error('End state after processing txs does not match expected end state', {
172
204
  globalVariables: globalVariables.toInspect(),
@@ -176,26 +208,31 @@ export class LightweightCheckpointBuilder {
176
208
  throw new Error(`End state does not match expected end state when building block ${globalVariables.blockNumber}`);
177
209
  }
178
210
 
179
- const { header, body, blockBlobFields } = await buildHeaderAndBodyFromTxs(
180
- txs,
181
- lastArchive,
182
- endState,
183
- globalVariables,
184
- this.spongeBlob,
185
- isFirstBlock,
211
+ const [msBuildHeaderAndBody, { header, body, blockBlobFields }] = await elapsed(() =>
212
+ buildHeaderAndBodyFromTxs(txs, lastArchive, endState, globalVariables, this.spongeBlob, isFirstBlock),
186
213
  );
214
+ timings.buildHeaderAndBody = msBuildHeaderAndBody;
187
215
 
188
216
  header.state.validate();
189
217
 
190
218
  await this.db.updateArchive(header);
191
- const newArchive = await getTreeSnapshot(MerkleTreeId.ARCHIVE, this.db);
219
+ const [msUpdateArchive, newArchive] = await elapsed(() => getTreeSnapshot(MerkleTreeId.ARCHIVE, this.db));
220
+ timings.updateArchive = msUpdateArchive;
192
221
  this.lastArchives.push(newArchive);
193
222
 
223
+ const expectedNextLeafIndex = Number(globalVariables.blockNumber) + 1;
224
+ if (newArchive.nextAvailableLeafIndex !== expectedNextLeafIndex) {
225
+ throw new Error(
226
+ `Archive tree next leaf index mismatch after building block ${globalVariables.blockNumber} (expected ${expectedNextLeafIndex} but got ${newArchive.nextAvailableLeafIndex})`,
227
+ );
228
+ }
229
+
194
230
  const indexWithinCheckpoint = IndexWithinCheckpoint(this.blocks.length);
195
- const block = new L2BlockNew(newArchive, header, body, this.checkpointNumber, indexWithinCheckpoint);
231
+ const block = new L2Block(newArchive, header, body, this.checkpointNumber, indexWithinCheckpoint);
196
232
  this.blocks.push(block);
197
233
 
198
- await this.spongeBlob.absorb(blockBlobFields);
234
+ const [msSpongeAbsorb] = await elapsed(() => this.spongeBlob.absorb(blockBlobFields));
235
+ timings.spongeAbsorb = msSpongeAbsorb;
199
236
  this.blobFields.push(...blockBlobFields);
200
237
 
201
238
  this.logger.debug(`Built block ${header.getBlockNumber()}`, {
@@ -206,7 +243,7 @@ export class LightweightCheckpointBuilder {
206
243
  txs: block.body.txEffects.map(tx => tx.txHash.toString()),
207
244
  });
208
245
 
209
- return block;
246
+ return { block, timings };
210
247
  }
211
248
 
212
249
  async completeCheckpoint(): Promise<Checkpoint> {
@@ -223,7 +260,7 @@ export class LightweightCheckpointBuilder {
223
260
 
224
261
  const newArchive = this.lastArchives[this.lastArchives.length - 1];
225
262
 
226
- const blobs = getBlobsPerL1Block(this.blobFields);
263
+ const blobs = await getBlobsPerL1Block(this.blobFields);
227
264
  const blobsHash = computeBlobsHashFromBlobs(blobs);
228
265
 
229
266
  const inHash = computeInHashFromL1ToL2Messages(this.l1ToL2Messages);
@@ -234,11 +271,11 @@ export class LightweightCheckpointBuilder {
234
271
  );
235
272
  const epochOutHash = accumulateCheckpointOutHashes([...this.previousCheckpointOutHashes, checkpointOutHash]);
236
273
 
237
- // TODO(palla/mbps): Should we source this from the constants instead?
238
- // timestamp of a checkpoint is the timestamp of the last block in the checkpoint.
274
+ // All blocks in the checkpoint have the same timestamp
239
275
  const timestamp = blocks[blocks.length - 1].timestamp;
240
276
 
241
277
  const totalManaUsed = blocks.reduce((acc, block) => acc.add(block.header.totalManaUsed), Fr.ZERO);
278
+ const accumulatedFees = blocks.reduce((acc, block) => acc.add(block.header.totalFees), Fr.ZERO);
242
279
 
243
280
  const header = CheckpointHeader.from({
244
281
  lastArchiveRoot: this.lastArchives[0].root,
@@ -252,18 +289,29 @@ export class LightweightCheckpointBuilder {
252
289
  feeRecipient,
253
290
  gasFees,
254
291
  totalManaUsed,
292
+ accumulatedFees,
293
+ });
294
+
295
+ this.logger.debug(`Completed checkpoint ${this.checkpointNumber}`, {
296
+ checkpointNumber: this.checkpointNumber,
297
+ headerHash: header.hash().toString(),
298
+ checkpointOutHash: checkpointOutHash.toString(),
299
+ numPreviousCheckpointOutHashes: this.previousCheckpointOutHashes.length,
300
+ ...header.toInspect(),
255
301
  });
256
302
 
257
- return new Checkpoint(newArchive, header, blocks, this.checkpointNumber);
303
+ return new Checkpoint(newArchive, header, blocks, this.checkpointNumber, this.feeAssetPriceModifier);
258
304
  }
259
305
 
260
306
  clone() {
261
307
  const clone = new LightweightCheckpointBuilder(
262
308
  this.checkpointNumber,
263
309
  this.constants,
310
+ this.feeAssetPriceModifier,
264
311
  [...this.l1ToL2Messages],
265
312
  [...this.previousCheckpointOutHashes],
266
313
  this.db,
314
+ this.logger.getBindings(),
267
315
  );
268
316
  clone.lastArchives = [...this.lastArchives];
269
317
  clone.spongeBlob = this.spongeBlob.clone();
@@ -75,7 +75,8 @@ export async function getSimulator(
75
75
  logger?.info(
76
76
  `Using native ACVM at ${config.acvmBinaryPath} and working directory ${config.acvmWorkingDirectory}`,
77
77
  );
78
- return new NativeACVMSimulator(config.acvmWorkingDirectory, config.acvmBinaryPath);
78
+ const acvmLogger = logger?.createChild('acvm-native');
79
+ return new NativeACVMSimulator(config.acvmWorkingDirectory, config.acvmBinaryPath, undefined, acvmLogger);
79
80
  } catch {
80
81
  logger?.warn(`Failed to access ACVM at ${config.acvmBinaryPath}, falling back to WASM`);
81
82
  }
@@ -5,13 +5,13 @@ import { BlockNumber, CheckpointNumber } from '@aztec/foundation/branded-types';
5
5
  import { padArrayEnd, times, timesAsync } from '@aztec/foundation/collection';
6
6
  import { Fr } from '@aztec/foundation/curves/bn254';
7
7
  import type { Logger } from '@aztec/foundation/log';
8
+ import { SerialQueue } from '@aztec/foundation/queue';
8
9
  import type { FieldsOf } from '@aztec/foundation/types';
9
10
  import { getVKTreeRoot } from '@aztec/noir-protocol-circuits-types/vk-tree';
10
11
  import { ProtocolContractsList } from '@aztec/protocol-contracts';
11
12
  import { computeFeePayerBalanceLeafSlot } from '@aztec/protocol-contracts/fee-juice';
12
13
  import { PublicDataWrite } from '@aztec/stdlib/avm';
13
14
  import { AztecAddress } from '@aztec/stdlib/aztec-address';
14
- import { EthAddress } from '@aztec/stdlib/block';
15
15
  import type { Checkpoint } from '@aztec/stdlib/checkpoint';
16
16
  import type { MerkleTreeWriteOperations, ServerCircuitProver } from '@aztec/stdlib/interfaces/server';
17
17
  import type { CheckpointConstantData } from '@aztec/stdlib/rollup';
@@ -24,6 +24,7 @@ import {
24
24
  StateReference,
25
25
  TreeSnapshots,
26
26
  } from '@aztec/stdlib/tx';
27
+ import type { GenesisData } from '@aztec/stdlib/world-state';
27
28
  import type { MerkleTreeAdminDatabase } from '@aztec/world-state';
28
29
  import { NativeWorldStateService } from '@aztec/world-state/native';
29
30
 
@@ -35,12 +36,21 @@ import {
35
36
  getTreeSnapshot,
36
37
  insertSideEffects,
37
38
  } from '../orchestrator/block-building-helpers.js';
38
- import type { BlockProvingState } from '../orchestrator/block-proving-state.js';
39
- import { ProvingOrchestrator } from '../orchestrator/index.js';
40
39
  import { BrokerCircuitProverFacade } from '../proving_broker/broker_prover_facade.js';
41
40
  import { TestBroker } from '../test/mock_prover.js';
42
41
  import { getEnvironmentConfig, getSimulator, makeCheckpointConstants, makeGlobals } from './fixtures.js';
43
42
 
43
+ /**
44
+ * Builds a started `SerialQueue` for use as an orchestrator's deferred-job queue in
45
+ * tests. Production wires a single shared queue via `ProverClient`; tests that construct
46
+ * orchestrators directly use one of these per orchestrator (or share one).
47
+ */
48
+ export function makeTestDeferredJobQueue(concurrency = 10): SerialQueue {
49
+ const queue = new SerialQueue();
50
+ queue.start(concurrency);
51
+ return queue;
52
+ }
53
+
44
54
  export class TestContext {
45
55
  private headers: Map<number, BlockHeader> = new Map();
46
56
  private checkpoints: Checkpoint[] = [];
@@ -56,7 +66,6 @@ export class TestContext {
56
66
  public prover: ServerCircuitProver,
57
67
  public broker: TestBroker,
58
68
  public brokerProverFacade: BrokerCircuitProverFacade,
59
- public orchestrator: TestProvingOrchestrator,
60
69
  private feePayer: AztecAddress,
61
70
  initialFeePayerBalance: Fr,
62
71
  private directoriesToCleanup: string[],
@@ -65,10 +74,6 @@ export class TestContext {
65
74
  this.feePayerBalance = initialFeePayerBalance;
66
75
  }
67
76
 
68
- public get epochProver() {
69
- return this.orchestrator;
70
- }
71
-
72
77
  static async new(
73
78
  logger: Logger,
74
79
  {
@@ -81,17 +86,16 @@ export class TestContext {
81
86
  ) {
82
87
  const directoriesToCleanup: string[] = [];
83
88
 
84
- const feePayer = AztecAddress.fromNumber(42222);
89
+ const feePayer = AztecAddress.fromNumberUnsafe(42222);
85
90
  const initialFeePayerBalance = new Fr(10n ** 20n);
86
91
  const feePayerSlot = await computeFeePayerBalanceLeafSlot(feePayer);
87
- const prefilledPublicData = [new PublicDataTreeLeaf(feePayerSlot, initialFeePayerBalance)];
92
+ const genesis: GenesisData = {
93
+ prefilledPublicData: [new PublicDataTreeLeaf(feePayerSlot, initialFeePayerBalance)],
94
+ genesisTimestamp: 0n,
95
+ };
88
96
 
89
97
  // Separated dbs for public processor and prover - see public_processor for context
90
- const ws = await NativeWorldStateService.tmp(
91
- /*rollupAddress=*/ undefined,
92
- /*cleanupTmpDir=*/ true,
93
- prefilledPublicData,
94
- );
98
+ const ws = await NativeWorldStateService.tmp(/*cleanupTmpDir=*/ true, genesis);
95
99
 
96
100
  let localProver: ServerCircuitProver;
97
101
  const config = await getEnvironmentConfig(logger);
@@ -104,8 +108,10 @@ export class TestContext {
104
108
  bbBinaryPath: config.expectedBBPath,
105
109
  bbWorkingDirectory: config.bbWorkingDirectory,
106
110
  bbSkipCleanup: config.bbSkipCleanup,
107
- numConcurrentIVCVerifiers: 2,
111
+ numConcurrentIVCVerifiers: 8,
108
112
  bbIVCConcurrency: 1,
113
+ bbChonkVerifyMaxBatch: 16,
114
+ bbChonkVerifyConcurrency: 6,
109
115
  };
110
116
  localProver = await createProver(bbConfig);
111
117
  }
@@ -116,22 +122,11 @@ export class TestContext {
116
122
 
117
123
  const broker = new TestBroker(proverCount, localProver);
118
124
  const facade = new BrokerCircuitProverFacade(broker);
119
- const orchestrator = new TestProvingOrchestrator(ws, facade, EthAddress.ZERO);
120
125
 
121
126
  await broker.start();
122
127
  facade.start();
123
128
 
124
- return new this(
125
- ws,
126
- localProver,
127
- broker,
128
- facade,
129
- orchestrator,
130
- feePayer,
131
- initialFeePayerBalance,
132
- directoriesToCleanup,
133
- logger,
134
- );
129
+ return new this(ws, localProver, broker, facade, feePayer, initialFeePayerBalance, directoriesToCleanup, logger);
135
130
  }
136
131
 
137
132
  public getFork() {
@@ -141,6 +136,7 @@ export class TestContext {
141
136
  async cleanup() {
142
137
  await this.brokerProverFacade.stop();
143
138
  await this.broker.stop();
139
+ await this.worldState.close();
144
140
  for (const dir of this.directoriesToCleanup.filter(x => x !== '')) {
145
141
  try {
146
142
  await fs.rm(dir, { recursive: true, force: true, maxRetries: 3 });
@@ -250,7 +246,7 @@ export class TestContext {
250
246
  const previousCheckpointOutHashes = this.checkpointOutHashes;
251
247
  const builder = await LightweightCheckpointBuilder.startNewCheckpoint(
252
248
  checkpointNumber,
253
- constants,
249
+ { ...constants, timestamp },
254
250
  l1ToL2Messages,
255
251
  previousCheckpointOutHashes,
256
252
  cleanFork,
@@ -262,7 +258,7 @@ export class TestContext {
262
258
  const txs = blockTxs[i];
263
259
  const state = blockEndStates[i];
264
260
 
265
- const block = await builder.addBlock(blockGlobalVariables[i], txs, {
261
+ const { block } = await builder.addBlock(blockGlobalVariables[i], txs, {
266
262
  expectedEndState: state,
267
263
  insertTxsEffects: true,
268
264
  });
@@ -282,6 +278,7 @@ export class TestContext {
282
278
 
283
279
  return {
284
280
  constants,
281
+ checkpoint,
285
282
  header: checkpoint.header,
286
283
  blocks,
287
284
  l1ToL2Messages,
@@ -349,16 +346,3 @@ export class TestContext {
349
346
  return endStateReference;
350
347
  }
351
348
  }
352
-
353
- class TestProvingOrchestrator extends ProvingOrchestrator {
354
- public isVerifyBuiltBlockAgainstSyncedStateEnabled = false;
355
-
356
- // Disable this check by default, since it requires seeding world state with the block being built
357
- // This is only enabled in some tests with multiple blocks that populate the pending chain via makePendingBlock
358
- protected override verifyBuiltBlockAgainstSyncedState(provingState: BlockProvingState): Promise<void> {
359
- if (this.isVerifyBuiltBlockAgainstSyncedStateEnabled) {
360
- return super.verifyBuiltBlockAgainstSyncedState(provingState);
361
- }
362
- return Promise.resolve();
363
- }
364
- }
@@ -99,7 +99,7 @@ export const insertSideEffectsAndBuildBaseRollupHints = runInSpan(
99
99
 
100
100
  const blockHash = await tx.data.constants.anchorBlockHeader.hash();
101
101
  const anchorBlockArchiveSiblingPath = (
102
- await getMembershipWitnessFor(blockHash, MerkleTreeId.ARCHIVE, ARCHIVE_HEIGHT, db)
102
+ await getMembershipWitnessFor(blockHash.toFr(), MerkleTreeId.ARCHIVE, ARCHIVE_HEIGHT, db)
103
103
  ).siblingPath;
104
104
 
105
105
  const contractClassLogsFields = makeTuple(
@@ -253,8 +253,8 @@ export function getPublicChonkVerifierPrivateInputsFromTx(tx: Tx | ProcessedTx,
253
253
  // Build "hints" as the private inputs for the checkpoint root rollup circuit.
254
254
  // The `blobCommitments` will be accumulated and checked in the root rollup against the `finalBlobChallenges`.
255
255
  // The `blobsHash` will be validated on L1 against the submitted blob data.
256
- export const buildBlobHints = (blobFields: Fr[]) => {
257
- const blobs = getBlobsPerL1Block(blobFields);
256
+ export const buildBlobHints = async (blobFields: Fr[]) => {
257
+ const blobs = await getBlobsPerL1Block(blobFields);
258
258
  const blobCommitments = getBlobCommitmentsFromBlobs(blobs);
259
259
  const blobsHash = computeBlobsHashFromBlobs(blobs);
260
260
  return { blobCommitments, blobs, blobsHash };
@@ -55,6 +55,7 @@ export class BlockProvingState {
55
55
  | ProofState<BlockRollupPublicInputs, typeof NESTED_RECURSIVE_ROLLUP_HONK_PROOF_LENGTH>
56
56
  | undefined;
57
57
  private builtBlockHeader: BlockHeader | undefined;
58
+ private builtArchive: AppendOnlyTreeSnapshot | undefined;
58
59
  private endState: StateReference | undefined;
59
60
  private endSpongeBlob: SpongeBlob | undefined;
60
61
  private txs: TxProvingState[] = [];
@@ -232,6 +233,14 @@ export class BlockProvingState {
232
233
  return this.builtBlockHeader;
233
234
  }
234
235
 
236
+ public setBuiltArchive(archive: AppendOnlyTreeSnapshot) {
237
+ this.builtArchive = archive;
238
+ }
239
+
240
+ public getBuiltArchive() {
241
+ return this.builtArchive;
242
+ }
243
+
235
244
  public getStartSpongeBlob() {
236
245
  return this.startSpongeBlob;
237
246
  }