@aztec/prover-client 0.0.1-commit.fcb71a6 → 0.0.1-commit.ff7989d6c

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 (111) hide show
  1. package/dest/light/lightweight_checkpoint_builder.d.ts +18 -6
  2. package/dest/light/lightweight_checkpoint_builder.d.ts.map +1 -1
  3. package/dest/light/lightweight_checkpoint_builder.js +73 -18
  4. package/dest/mocks/fixtures.d.ts +1 -1
  5. package/dest/mocks/fixtures.d.ts.map +1 -1
  6. package/dest/mocks/fixtures.js +2 -1
  7. package/dest/mocks/test_context.d.ts +4 -2
  8. package/dest/mocks/test_context.d.ts.map +1 -1
  9. package/dest/mocks/test_context.js +17 -3
  10. package/dest/orchestrator/block-building-helpers.d.ts +5 -5
  11. package/dest/orchestrator/block-building-helpers.d.ts.map +1 -1
  12. package/dest/orchestrator/block-building-helpers.js +4 -4
  13. package/dest/orchestrator/block-proving-state.d.ts +4 -1
  14. package/dest/orchestrator/block-proving-state.d.ts.map +1 -1
  15. package/dest/orchestrator/block-proving-state.js +7 -0
  16. package/dest/orchestrator/checkpoint-proving-state.d.ts +17 -4
  17. package/dest/orchestrator/checkpoint-proving-state.d.ts.map +1 -1
  18. package/dest/orchestrator/checkpoint-proving-state.js +37 -4
  19. package/dest/orchestrator/epoch-proving-state.d.ts +7 -6
  20. package/dest/orchestrator/epoch-proving-state.d.ts.map +1 -1
  21. package/dest/orchestrator/epoch-proving-state.js +37 -1
  22. package/dest/orchestrator/orchestrator.d.ts +18 -3
  23. package/dest/orchestrator/orchestrator.d.ts.map +1 -1
  24. package/dest/orchestrator/orchestrator.js +541 -126
  25. package/dest/orchestrator/orchestrator_metrics.d.ts +1 -1
  26. package/dest/orchestrator/orchestrator_metrics.d.ts.map +1 -1
  27. package/dest/orchestrator/orchestrator_metrics.js +2 -6
  28. package/dest/orchestrator/tx-proving-state.d.ts +5 -4
  29. package/dest/orchestrator/tx-proving-state.d.ts.map +1 -1
  30. package/dest/orchestrator/tx-proving-state.js +6 -6
  31. package/dest/prover-client/prover-client.d.ts +3 -3
  32. package/dest/prover-client/prover-client.d.ts.map +1 -1
  33. package/dest/prover-client/prover-client.js +15 -10
  34. package/dest/proving_broker/broker_prover_facade.d.ts +7 -5
  35. package/dest/proving_broker/broker_prover_facade.d.ts.map +1 -1
  36. package/dest/proving_broker/broker_prover_facade.js +3 -3
  37. package/dest/proving_broker/config.d.ts +13 -1
  38. package/dest/proving_broker/config.d.ts.map +1 -1
  39. package/dest/proving_broker/config.js +19 -2
  40. package/dest/proving_broker/proof_store/factory.d.ts +2 -5
  41. package/dest/proving_broker/proof_store/factory.d.ts.map +1 -1
  42. package/dest/proving_broker/proof_store/factory.js +7 -30
  43. package/dest/proving_broker/proof_store/file_store_proof_store.d.ts +18 -0
  44. package/dest/proving_broker/proof_store/file_store_proof_store.d.ts.map +1 -0
  45. package/dest/proving_broker/proof_store/file_store_proof_store.js +60 -0
  46. package/dest/proving_broker/proof_store/index.d.ts +2 -2
  47. package/dest/proving_broker/proof_store/index.d.ts.map +1 -1
  48. package/dest/proving_broker/proof_store/index.js +1 -1
  49. package/dest/proving_broker/proving_agent.d.ts +5 -9
  50. package/dest/proving_broker/proving_agent.d.ts.map +1 -1
  51. package/dest/proving_broker/proving_agent.js +4 -19
  52. package/dest/proving_broker/proving_broker.d.ts +7 -4
  53. package/dest/proving_broker/proving_broker.d.ts.map +1 -1
  54. package/dest/proving_broker/proving_broker.js +30 -11
  55. package/dest/proving_broker/proving_broker_database/persisted.d.ts +3 -2
  56. package/dest/proving_broker/proving_broker_database/persisted.d.ts.map +1 -1
  57. package/dest/proving_broker/proving_broker_database/persisted.js +389 -1
  58. package/dest/proving_broker/proving_broker_instrumentation.d.ts +1 -1
  59. package/dest/proving_broker/proving_broker_instrumentation.d.ts.map +1 -1
  60. package/dest/proving_broker/proving_broker_instrumentation.js +15 -35
  61. package/dest/proving_broker/proving_job_controller.d.ts +4 -3
  62. package/dest/proving_broker/proving_job_controller.d.ts.map +1 -1
  63. package/dest/proving_broker/proving_job_controller.js +6 -3
  64. package/dest/proving_broker/rpc.d.ts +4 -2
  65. package/dest/proving_broker/rpc.d.ts.map +1 -1
  66. package/dest/proving_broker/rpc.js +8 -0
  67. package/dest/test/mock_proof_store.d.ts +3 -3
  68. package/dest/test/mock_proof_store.d.ts.map +1 -1
  69. package/dest/test/mock_prover.d.ts +5 -5
  70. package/dest/test/mock_prover.d.ts.map +1 -1
  71. package/dest/test/mock_prover.js +3 -3
  72. package/package.json +16 -17
  73. package/src/light/lightweight_checkpoint_builder.ts +115 -19
  74. package/src/mocks/fixtures.ts +2 -1
  75. package/src/mocks/test_context.ts +12 -2
  76. package/src/orchestrator/block-building-helpers.ts +4 -4
  77. package/src/orchestrator/block-proving-state.ts +9 -0
  78. package/src/orchestrator/checkpoint-proving-state.ts +51 -5
  79. package/src/orchestrator/epoch-proving-state.ts +59 -9
  80. package/src/orchestrator/orchestrator.ts +141 -106
  81. package/src/orchestrator/orchestrator_metrics.ts +2 -6
  82. package/src/orchestrator/tx-proving-state.ts +8 -11
  83. package/src/prover-client/prover-client.ts +28 -21
  84. package/src/proving_broker/broker_prover_facade.ts +8 -6
  85. package/src/proving_broker/config.ts +22 -0
  86. package/src/proving_broker/proof_store/factory.ts +10 -32
  87. package/src/proving_broker/proof_store/file_store_proof_store.ts +78 -0
  88. package/src/proving_broker/proof_store/index.ts +1 -1
  89. package/src/proving_broker/proving_agent.ts +6 -19
  90. package/src/proving_broker/proving_broker.ts +31 -9
  91. package/src/proving_broker/proving_broker_database/persisted.ts +15 -1
  92. package/src/proving_broker/proving_broker_instrumentation.ts +14 -35
  93. package/src/proving_broker/proving_job_controller.ts +9 -3
  94. package/src/proving_broker/rpc.ts +14 -0
  95. package/src/test/mock_prover.ts +1 -8
  96. package/dest/block-factory/index.d.ts +0 -2
  97. package/dest/block-factory/index.d.ts.map +0 -1
  98. package/dest/block-factory/index.js +0 -1
  99. package/dest/block-factory/light.d.ts +0 -38
  100. package/dest/block-factory/light.d.ts.map +0 -1
  101. package/dest/block-factory/light.js +0 -108
  102. package/dest/proving_broker/proof_store/gcs_proof_store.d.ts +0 -14
  103. package/dest/proving_broker/proof_store/gcs_proof_store.d.ts.map +0 -1
  104. package/dest/proving_broker/proof_store/gcs_proof_store.js +0 -52
  105. package/dest/proving_broker/proving_agent_instrumentation.d.ts +0 -8
  106. package/dest/proving_broker/proving_agent_instrumentation.d.ts.map +0 -1
  107. package/dest/proving_broker/proving_agent_instrumentation.js +0 -16
  108. package/src/block-factory/index.ts +0 -1
  109. package/src/block-factory/light.ts +0 -137
  110. package/src/proving_broker/proof_store/gcs_proof_store.ts +0 -76
  111. package/src/proving_broker/proving_agent_instrumentation.ts +0 -21
@@ -1,14 +1,20 @@
1
1
  import { BatchedBlob, BatchedBlobAccumulator, type FinalBlobBatchingChallenges } from '@aztec/blob-lib';
2
- import type {
3
- ARCHIVE_HEIGHT,
4
- L1_TO_L2_MSG_SUBTREE_ROOT_SIBLING_PATH_LENGTH,
5
- NESTED_RECURSIVE_PROOF_LENGTH,
6
- NESTED_RECURSIVE_ROLLUP_HONK_PROOF_LENGTH,
2
+ import {
3
+ type ARCHIVE_HEIGHT,
4
+ type L1_TO_L2_MSG_SUBTREE_ROOT_SIBLING_PATH_LENGTH,
5
+ type NESTED_RECURSIVE_PROOF_LENGTH,
6
+ type NESTED_RECURSIVE_ROLLUP_HONK_PROOF_LENGTH,
7
+ OUT_HASH_TREE_HEIGHT,
7
8
  } from '@aztec/constants';
8
9
  import { BlockNumber, EpochNumber } from '@aztec/foundation/branded-types';
9
- import type { Fr } from '@aztec/foundation/curves/bn254';
10
+ import { Fr } from '@aztec/foundation/curves/bn254';
10
11
  import type { Tuple } from '@aztec/foundation/serialize';
11
- import { type TreeNodeLocation, UnbalancedTreeStore } from '@aztec/foundation/trees';
12
+ import {
13
+ MerkleTreeCalculator,
14
+ type TreeNodeLocation,
15
+ UnbalancedTreeStore,
16
+ shaMerkleHash,
17
+ } from '@aztec/foundation/trees';
12
18
  import type { PublicInputsAndRecursiveProof } from '@aztec/stdlib/interfaces/server';
13
19
  import type { Proof } from '@aztec/stdlib/proofs';
14
20
  import {
@@ -20,7 +26,7 @@ import {
20
26
  RootRollupPrivateInputs,
21
27
  type RootRollupPublicInputs,
22
28
  } from '@aztec/stdlib/rollup';
23
- import type { AppendOnlyTreeSnapshot, MerkleTreeId } from '@aztec/stdlib/trees';
29
+ import { AppendOnlyTreeSnapshot, type MerkleTreeId } from '@aztec/stdlib/trees';
24
30
  import type { BlockHeader } from '@aztec/stdlib/tx';
25
31
 
26
32
  import { toProofData } from './block-building-helpers.js';
@@ -70,7 +76,7 @@ export class EpochProvingState {
70
76
  public readonly epochNumber: EpochNumber,
71
77
  public readonly totalNumCheckpoints: number,
72
78
  private readonly finalBlobBatchingChallenges: FinalBlobBatchingChallenges,
73
- private onCheckpointBlobAccumulatorSet: (checkpoint: CheckpointProvingState) => void,
79
+ private onCheckpointBlobAccumulatorSet: (checkpoint: CheckpointProvingState) => Promise<void>,
74
80
  private completionCallback: (result: ProvingResult) => void,
75
81
  private rejectionCallback: (reason: string) => void,
76
82
  ) {
@@ -212,6 +218,50 @@ export class EpochProvingState {
212
218
  this.checkpointPaddingProof = { provingOutput };
213
219
  }
214
220
 
221
+ public async accumulateCheckpointOutHashes() {
222
+ const treeCalculator = await MerkleTreeCalculator.create(OUT_HASH_TREE_HEIGHT, undefined, (left, right) =>
223
+ Promise.resolve(shaMerkleHash(left, right)),
224
+ );
225
+
226
+ const computeOutHashHint = async (leaves: Fr[]) => {
227
+ const tree = await treeCalculator.computeTree(leaves.map(l => l.toBuffer()));
228
+ const nextAvailableLeafIndex = leaves.length;
229
+ return {
230
+ treeSnapshot: new AppendOnlyTreeSnapshot(Fr.fromBuffer(tree.root), nextAvailableLeafIndex),
231
+ siblingPath: tree.getSiblingPath(nextAvailableLeafIndex).map(Fr.fromBuffer) as Tuple<
232
+ Fr,
233
+ typeof OUT_HASH_TREE_HEIGHT
234
+ >,
235
+ };
236
+ };
237
+
238
+ let hint = this.checkpoints[0]?.getOutHashHint();
239
+ const outHashes = [];
240
+ for (let i = 0; i < this.totalNumCheckpoints; i++) {
241
+ const checkpoint = this.checkpoints[i];
242
+ if (!checkpoint) {
243
+ break;
244
+ }
245
+
246
+ // If hints are not set yet, it must be the first checkpoint. Compute the hints with an empty tree.
247
+ hint ??= await computeOutHashHint([]);
248
+ checkpoint.setOutHashHint(hint);
249
+
250
+ // Get the out hash for this checkpoint.
251
+ const outHash = checkpoint.accumulateBlockOutHashes();
252
+ if (!outHash) {
253
+ break;
254
+ }
255
+ outHashes.push(outHash);
256
+
257
+ // If this is NOT the last checkpoint, get or create the hint for the next checkpoint.
258
+ if (i !== this.totalNumCheckpoints - 1) {
259
+ hint = checkpoint.getOutHashHintForNextCheckpoint() ?? (await computeOutHashHint(outHashes));
260
+ checkpoint.setOutHashHintForNextCheckpoint(hint);
261
+ }
262
+ }
263
+ }
264
+
215
265
  public async setBlobAccumulators() {
216
266
  let previousAccumulator = this.startBlobAccumulator;
217
267
  // Accumulate blobs as far as we can for this epoch.