@aztec/prover-client 0.86.0-nightly.20250508 → 0.86.0-nightly.20250510

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.
@@ -44,7 +44,7 @@ export declare class TestContext {
44
44
  txs: ProcessedTx[];
45
45
  msgs: Fr[];
46
46
  }>;
47
- processPublicFunctions(txs: Tx[], maxTransactions: number): Promise<[ProcessedTx[], import("@aztec/stdlib/tx").FailedTx[], import("@aztec/stdlib/tx").NestedProcessReturnValues[]]>;
47
+ processPublicFunctions(txs: Tx[], maxTransactions: number): Promise<[ProcessedTx[], import("@aztec/stdlib/tx").FailedTx[], Tx[], import("@aztec/stdlib/tx").NestedProcessReturnValues[]]>;
48
48
  setTreeRoots(txs: ProcessedTx[]): Promise<void>;
49
49
  }
50
50
  declare class TestProvingOrchestrator extends ProvingOrchestrator {
@@ -11,7 +11,7 @@ import { protocolContractTreeRoot } from '@aztec/protocol-contracts';
11
11
  import { computeFeePayerBalanceLeafSlot } from '@aztec/protocol-contracts/fee-juice';
12
12
  import { PublicDataHint } from '@aztec/stdlib/avm';
13
13
  import { Body } from '@aztec/stdlib/block';
14
- import { ContractClassLog } from '@aztec/stdlib/logs';
14
+ import { ContractClassLogFields } from '@aztec/stdlib/logs';
15
15
  import { ConstantRollupData, PrivateBaseRollupHints, PrivateBaseStateDiffHints, PublicBaseRollupHints } from '@aztec/stdlib/rollup';
16
16
  import { AppendOnlyTreeSnapshot, MerkleTreeId, NullifierLeafPreimage, PublicDataTreeLeaf, PublicDataTreeLeafPreimage, getTreeHeight } from '@aztec/stdlib/trees';
17
17
  import { BlockHeader, ContentCommitment, PartialStateReference, StateReference, TxEffect } from '@aztec/stdlib/tx';
@@ -47,7 +47,7 @@ export const buildBaseRollupHints = runInSpan('BlockBuilderHelpers', 'buildBaseR
47
47
  // Append new data to startSpongeBlob
48
48
  const inputSpongeBlob = startSpongeBlob.clone();
49
49
  await startSpongeBlob.absorb(tx.txEffect.toBlobFields());
50
- const contractClassLogsPreimages = makeTuple(MAX_CONTRACT_CLASS_LOGS_PER_TX, (i)=>tx.txEffect.contractClassLogs[i]?.toUnsiloed() || ContractClassLog.empty());
50
+ const contractClassLogsPreimages = makeTuple(MAX_CONTRACT_CLASS_LOGS_PER_TX, (i)=>tx.txEffect.contractClassLogs[i]?.toUnsiloed().fields || ContractClassLogFields.empty());
51
51
  if (tx.avmProvingRequest) {
52
52
  const blockHash = await tx.constants.historicalHeader.hash();
53
53
  const archiveRootMembershipWitness = await getMembershipWitnessFor(blockHash, MerkleTreeId.ARCHIVE, ARCHIVE_HEIGHT, db);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/prover-client",
3
- "version": "0.86.0-nightly.20250508",
3
+ "version": "0.86.0-nightly.20250510",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./dest/index.js",
@@ -64,19 +64,19 @@
64
64
  ]
65
65
  },
66
66
  "dependencies": {
67
- "@aztec/bb-prover": "0.86.0-nightly.20250508",
68
- "@aztec/blob-lib": "0.86.0-nightly.20250508",
69
- "@aztec/constants": "0.86.0-nightly.20250508",
70
- "@aztec/ethereum": "0.86.0-nightly.20250508",
71
- "@aztec/foundation": "0.86.0-nightly.20250508",
72
- "@aztec/kv-store": "0.86.0-nightly.20250508",
73
- "@aztec/noir-protocol-circuits-types": "0.86.0-nightly.20250508",
74
- "@aztec/noir-types": "0.86.0-nightly.20250508",
75
- "@aztec/protocol-contracts": "0.86.0-nightly.20250508",
76
- "@aztec/simulator": "0.86.0-nightly.20250508",
77
- "@aztec/stdlib": "0.86.0-nightly.20250508",
78
- "@aztec/telemetry-client": "0.86.0-nightly.20250508",
79
- "@aztec/world-state": "0.86.0-nightly.20250508",
67
+ "@aztec/bb-prover": "0.86.0-nightly.20250510",
68
+ "@aztec/blob-lib": "0.86.0-nightly.20250510",
69
+ "@aztec/constants": "0.86.0-nightly.20250510",
70
+ "@aztec/ethereum": "0.86.0-nightly.20250510",
71
+ "@aztec/foundation": "0.86.0-nightly.20250510",
72
+ "@aztec/kv-store": "0.86.0-nightly.20250510",
73
+ "@aztec/noir-protocol-circuits-types": "0.86.0-nightly.20250510",
74
+ "@aztec/noir-types": "0.86.0-nightly.20250510",
75
+ "@aztec/protocol-contracts": "0.86.0-nightly.20250510",
76
+ "@aztec/simulator": "0.86.0-nightly.20250510",
77
+ "@aztec/stdlib": "0.86.0-nightly.20250510",
78
+ "@aztec/telemetry-client": "0.86.0-nightly.20250510",
79
+ "@aztec/world-state": "0.86.0-nightly.20250510",
80
80
  "@google-cloud/storage": "^7.15.0",
81
81
  "@iarna/toml": "^2.2.5",
82
82
  "commander": "^12.1.0",
@@ -86,7 +86,7 @@
86
86
  "zod": "^3.23.8"
87
87
  },
88
88
  "devDependencies": {
89
- "@aztec/noir-contracts.js": "0.86.0-nightly.20250508",
89
+ "@aztec/noir-contracts.js": "0.86.0-nightly.20250510",
90
90
  "@jest/globals": "^29.5.0",
91
91
  "@types/jest": "^29.5.0",
92
92
  "@types/node": "^18.7.23",
@@ -24,7 +24,7 @@ import { computeFeePayerBalanceLeafSlot } from '@aztec/protocol-contracts/fee-ju
24
24
  import { PublicDataHint } from '@aztec/stdlib/avm';
25
25
  import { Body } from '@aztec/stdlib/block';
26
26
  import type { MerkleTreeWriteOperations } from '@aztec/stdlib/interfaces/server';
27
- import { ContractClassLog } from '@aztec/stdlib/logs';
27
+ import { ContractClassLogFields } from '@aztec/stdlib/logs';
28
28
  import type { ParityPublicInputs } from '@aztec/stdlib/parity';
29
29
  import {
30
30
  type BaseOrMergeRollupPublicInputs,
@@ -140,7 +140,7 @@ export const buildBaseRollupHints = runInSpan(
140
140
 
141
141
  const contractClassLogsPreimages = makeTuple(
142
142
  MAX_CONTRACT_CLASS_LOGS_PER_TX,
143
- i => tx.txEffect.contractClassLogs[i]?.toUnsiloed() || ContractClassLog.empty(),
143
+ i => tx.txEffect.contractClassLogs[i]?.toUnsiloed().fields || ContractClassLogFields.empty(),
144
144
  );
145
145
 
146
146
  if (tx.avmProvingRequest) {