@aztec/prover-client 0.0.1-commit.d1f2d6c → 0.0.1-commit.e61ad554

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.
@@ -25,7 +25,7 @@ export const insertSideEffectsAndBuildBaseRollupHints = runInSpan('BlockBuilderH
25
25
  // Get the note hash subtree root sibling path for insertion.
26
26
  const noteHashSubtreeRootSiblingPath = assertLength(await getSubtreeSiblingPath(MerkleTreeId.NOTE_HASH_TREE, NOTE_HASH_SUBTREE_HEIGHT, db), NOTE_HASH_SUBTREE_ROOT_SIBLING_PATH_LENGTH);
27
27
  const { nullifierInsertionResult, publicDataInsertionResult } = await insertSideEffects(tx, db);
28
- const blockHash = await tx.data.constants.anchorBlockHeader.hash();
28
+ const blockHash = (await tx.data.constants.anchorBlockHeader.hash()).toField();
29
29
  const anchorBlockArchiveSiblingPath = (await getMembershipWitnessFor(blockHash, MerkleTreeId.ARCHIVE, ARCHIVE_HEIGHT, db)).siblingPath;
30
30
  const contractClassLogsFields = makeTuple(MAX_CONTRACT_CLASS_LOGS_PER_TX, (i)=>tx.txEffect.contractClassLogs[i]?.fields || ContractClassLogFields.empty());
31
31
  if (tx.avmProvingRequest) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/prover-client",
3
- "version": "0.0.1-commit.d1f2d6c",
3
+ "version": "0.0.1-commit.e61ad554",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./dest/index.js",
@@ -68,19 +68,19 @@
68
68
  ]
69
69
  },
70
70
  "dependencies": {
71
- "@aztec/bb-prover": "0.0.1-commit.d1f2d6c",
72
- "@aztec/blob-lib": "0.0.1-commit.d1f2d6c",
73
- "@aztec/constants": "0.0.1-commit.d1f2d6c",
74
- "@aztec/ethereum": "0.0.1-commit.d1f2d6c",
75
- "@aztec/foundation": "0.0.1-commit.d1f2d6c",
76
- "@aztec/kv-store": "0.0.1-commit.d1f2d6c",
77
- "@aztec/noir-protocol-circuits-types": "0.0.1-commit.d1f2d6c",
78
- "@aztec/noir-types": "0.0.1-commit.d1f2d6c",
79
- "@aztec/protocol-contracts": "0.0.1-commit.d1f2d6c",
80
- "@aztec/simulator": "0.0.1-commit.d1f2d6c",
81
- "@aztec/stdlib": "0.0.1-commit.d1f2d6c",
82
- "@aztec/telemetry-client": "0.0.1-commit.d1f2d6c",
83
- "@aztec/world-state": "0.0.1-commit.d1f2d6c",
71
+ "@aztec/bb-prover": "0.0.1-commit.e61ad554",
72
+ "@aztec/blob-lib": "0.0.1-commit.e61ad554",
73
+ "@aztec/constants": "0.0.1-commit.e61ad554",
74
+ "@aztec/ethereum": "0.0.1-commit.e61ad554",
75
+ "@aztec/foundation": "0.0.1-commit.e61ad554",
76
+ "@aztec/kv-store": "0.0.1-commit.e61ad554",
77
+ "@aztec/noir-protocol-circuits-types": "0.0.1-commit.e61ad554",
78
+ "@aztec/noir-types": "0.0.1-commit.e61ad554",
79
+ "@aztec/protocol-contracts": "0.0.1-commit.e61ad554",
80
+ "@aztec/simulator": "0.0.1-commit.e61ad554",
81
+ "@aztec/stdlib": "0.0.1-commit.e61ad554",
82
+ "@aztec/telemetry-client": "0.0.1-commit.e61ad554",
83
+ "@aztec/world-state": "0.0.1-commit.e61ad554",
84
84
  "@google-cloud/storage": "^7.15.0",
85
85
  "@iarna/toml": "^2.2.5",
86
86
  "commander": "^12.1.0",
@@ -90,7 +90,7 @@
90
90
  "zod": "^3.23.8"
91
91
  },
92
92
  "devDependencies": {
93
- "@aztec/noir-contracts.js": "0.0.1-commit.d1f2d6c",
93
+ "@aztec/noir-contracts.js": "0.0.1-commit.e61ad554",
94
94
  "@jest/globals": "^30.0.0",
95
95
  "@types/jest": "^30.0.0",
96
96
  "@types/node": "^22.15.17",
@@ -97,7 +97,7 @@ export const insertSideEffectsAndBuildBaseRollupHints = runInSpan(
97
97
 
98
98
  const { nullifierInsertionResult, publicDataInsertionResult } = await insertSideEffects(tx, db);
99
99
 
100
- const blockHash = await tx.data.constants.anchorBlockHeader.hash();
100
+ const blockHash = (await tx.data.constants.anchorBlockHeader.hash()).toField();
101
101
  const anchorBlockArchiveSiblingPath = (
102
102
  await getMembershipWitnessFor(blockHash, MerkleTreeId.ARCHIVE, ARCHIVE_HEIGHT, db)
103
103
  ).siblingPath;