@aztec/prover-client 0.86.0-nightly.20250512 → 0.86.0-starknet.1
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[],
|
|
47
|
+
processPublicFunctions(txs: Tx[], maxTransactions: number): Promise<[ProcessedTx[], import("@aztec/stdlib/tx").FailedTx[], 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 {
|
|
14
|
+
import { ContractClassLog } 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()
|
|
50
|
+
const contractClassLogsPreimages = makeTuple(MAX_CONTRACT_CLASS_LOGS_PER_TX, (i)=>tx.txEffect.contractClassLogs[i]?.toUnsiloed() || ContractClassLog.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-
|
|
3
|
+
"version": "0.86.0-starknet.1",
|
|
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-
|
|
68
|
-
"@aztec/blob-lib": "0.86.0-
|
|
69
|
-
"@aztec/constants": "0.86.0-
|
|
70
|
-
"@aztec/ethereum": "0.86.0-
|
|
71
|
-
"@aztec/foundation": "0.86.0-
|
|
72
|
-
"@aztec/kv-store": "0.86.0-
|
|
73
|
-
"@aztec/noir-protocol-circuits-types": "0.86.0-
|
|
74
|
-
"@aztec/noir-types": "0.86.0-
|
|
75
|
-
"@aztec/protocol-contracts": "0.86.0-
|
|
76
|
-
"@aztec/simulator": "0.86.0-
|
|
77
|
-
"@aztec/stdlib": "0.86.0-
|
|
78
|
-
"@aztec/telemetry-client": "0.86.0-
|
|
79
|
-
"@aztec/world-state": "0.86.0-
|
|
67
|
+
"@aztec/bb-prover": "0.86.0-starknet.1",
|
|
68
|
+
"@aztec/blob-lib": "0.86.0-starknet.1",
|
|
69
|
+
"@aztec/constants": "0.86.0-starknet.1",
|
|
70
|
+
"@aztec/ethereum": "0.86.0-starknet.1",
|
|
71
|
+
"@aztec/foundation": "0.86.0-starknet.1",
|
|
72
|
+
"@aztec/kv-store": "0.86.0-starknet.1",
|
|
73
|
+
"@aztec/noir-protocol-circuits-types": "0.86.0-starknet.1",
|
|
74
|
+
"@aztec/noir-types": "0.86.0-starknet.1",
|
|
75
|
+
"@aztec/protocol-contracts": "0.86.0-starknet.1",
|
|
76
|
+
"@aztec/simulator": "0.86.0-starknet.1",
|
|
77
|
+
"@aztec/stdlib": "0.86.0-starknet.1",
|
|
78
|
+
"@aztec/telemetry-client": "0.86.0-starknet.1",
|
|
79
|
+
"@aztec/world-state": "0.86.0-starknet.1",
|
|
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-
|
|
89
|
+
"@aztec/noir-contracts.js": "0.86.0-starknet.1",
|
|
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 {
|
|
27
|
+
import { ContractClassLog } 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()
|
|
143
|
+
i => tx.txEffect.contractClassLogs[i]?.toUnsiloed() || ContractClassLog.empty(),
|
|
144
144
|
);
|
|
145
145
|
|
|
146
146
|
if (tx.avmProvingRequest) {
|