@aztec/prover-client 3.0.0-nightly.20251007 → 3.0.0-nightly.20251008
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.
package/dest/mocks/fixtures.js
CHANGED
|
@@ -5,7 +5,7 @@ import { EthAddress } from '@aztec/foundation/eth-address';
|
|
|
5
5
|
import { Fr } from '@aztec/foundation/fields';
|
|
6
6
|
import { fileURLToPath } from '@aztec/foundation/url';
|
|
7
7
|
import { getVKTreeRoot } from '@aztec/noir-protocol-circuits-types/vk-tree';
|
|
8
|
-
import {
|
|
8
|
+
import { protocolContractsHash } from '@aztec/protocol-contracts';
|
|
9
9
|
import { NativeACVMSimulator, WASMSimulatorWithBlobs } from '@aztec/simulator/server';
|
|
10
10
|
import { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
11
11
|
import { GasFees } from '@aztec/stdlib/gas';
|
|
@@ -84,7 +84,7 @@ export const makeCheckpointConstants = (slotNumber)=>{
|
|
|
84
84
|
chainId: Fr.ZERO,
|
|
85
85
|
version: Fr.ZERO,
|
|
86
86
|
vkTreeRoot: getVKTreeRoot(),
|
|
87
|
-
|
|
87
|
+
protocolContractsHash,
|
|
88
88
|
proverId: Fr.ZERO,
|
|
89
89
|
slotNumber: new Fr(slotNumber),
|
|
90
90
|
coinbase: EthAddress.ZERO,
|
|
@@ -4,7 +4,7 @@ import { padArrayEnd, times, timesParallel } from '@aztec/foundation/collection'
|
|
|
4
4
|
import { Fr } from '@aztec/foundation/fields';
|
|
5
5
|
import { TestDateProvider } from '@aztec/foundation/timer';
|
|
6
6
|
import { getVKTreeRoot } from '@aztec/noir-protocol-circuits-types/vk-tree';
|
|
7
|
-
import {
|
|
7
|
+
import { ProtocolContractsList } from '@aztec/protocol-contracts';
|
|
8
8
|
import { computeFeePayerBalanceLeafSlot } from '@aztec/protocol-contracts/fee-juice';
|
|
9
9
|
import { SimpleContractDataSource } from '@aztec/simulator/public/fixtures';
|
|
10
10
|
import { PublicProcessorFactory } from '@aztec/simulator/server';
|
|
@@ -128,7 +128,7 @@ export class TestContext {
|
|
|
128
128
|
const tx = await makeBloatedProcessedTx({
|
|
129
129
|
header,
|
|
130
130
|
vkTreeRoot: getVKTreeRoot(),
|
|
131
|
-
|
|
131
|
+
protocolContracts: ProtocolContractsList,
|
|
132
132
|
globalVariables: this.globalVariables,
|
|
133
133
|
feePayer: this.feePayer,
|
|
134
134
|
...opts
|
|
@@ -72,7 +72,7 @@ export const insertSideEffectsAndBuildBaseRollupHints = runInSpan('BlockBuilderH
|
|
|
72
72
|
lastArchive,
|
|
73
73
|
l1ToL2TreeSnapshot: newL1ToL2MessageTreeSnapshot,
|
|
74
74
|
vkTreeRoot: tx.data.constants.vkTreeRoot,
|
|
75
|
-
|
|
75
|
+
protocolContractsHash: tx.data.constants.protocolContractsHash,
|
|
76
76
|
globalVariables: tx.globalVariables,
|
|
77
77
|
proverId
|
|
78
78
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/prover-client",
|
|
3
|
-
"version": "3.0.0-nightly.
|
|
3
|
+
"version": "3.0.0-nightly.20251008",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./dest/index.js",
|
|
@@ -67,19 +67,19 @@
|
|
|
67
67
|
]
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@aztec/bb-prover": "3.0.0-nightly.
|
|
71
|
-
"@aztec/blob-lib": "3.0.0-nightly.
|
|
72
|
-
"@aztec/constants": "3.0.0-nightly.
|
|
73
|
-
"@aztec/ethereum": "3.0.0-nightly.
|
|
74
|
-
"@aztec/foundation": "3.0.0-nightly.
|
|
75
|
-
"@aztec/kv-store": "3.0.0-nightly.
|
|
76
|
-
"@aztec/noir-protocol-circuits-types": "3.0.0-nightly.
|
|
77
|
-
"@aztec/noir-types": "3.0.0-nightly.
|
|
78
|
-
"@aztec/protocol-contracts": "3.0.0-nightly.
|
|
79
|
-
"@aztec/simulator": "3.0.0-nightly.
|
|
80
|
-
"@aztec/stdlib": "3.0.0-nightly.
|
|
81
|
-
"@aztec/telemetry-client": "3.0.0-nightly.
|
|
82
|
-
"@aztec/world-state": "3.0.0-nightly.
|
|
70
|
+
"@aztec/bb-prover": "3.0.0-nightly.20251008",
|
|
71
|
+
"@aztec/blob-lib": "3.0.0-nightly.20251008",
|
|
72
|
+
"@aztec/constants": "3.0.0-nightly.20251008",
|
|
73
|
+
"@aztec/ethereum": "3.0.0-nightly.20251008",
|
|
74
|
+
"@aztec/foundation": "3.0.0-nightly.20251008",
|
|
75
|
+
"@aztec/kv-store": "3.0.0-nightly.20251008",
|
|
76
|
+
"@aztec/noir-protocol-circuits-types": "3.0.0-nightly.20251008",
|
|
77
|
+
"@aztec/noir-types": "3.0.0-nightly.20251008",
|
|
78
|
+
"@aztec/protocol-contracts": "3.0.0-nightly.20251008",
|
|
79
|
+
"@aztec/simulator": "3.0.0-nightly.20251008",
|
|
80
|
+
"@aztec/stdlib": "3.0.0-nightly.20251008",
|
|
81
|
+
"@aztec/telemetry-client": "3.0.0-nightly.20251008",
|
|
82
|
+
"@aztec/world-state": "3.0.0-nightly.20251008",
|
|
83
83
|
"@google-cloud/storage": "^7.15.0",
|
|
84
84
|
"@iarna/toml": "^2.2.5",
|
|
85
85
|
"commander": "^12.1.0",
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"zod": "^3.23.8"
|
|
90
90
|
},
|
|
91
91
|
"devDependencies": {
|
|
92
|
-
"@aztec/noir-contracts.js": "3.0.0-nightly.
|
|
92
|
+
"@aztec/noir-contracts.js": "3.0.0-nightly.20251008",
|
|
93
93
|
"@jest/globals": "^30.0.0",
|
|
94
94
|
"@types/jest": "^30.0.0",
|
|
95
95
|
"@types/node": "^22.15.17",
|
package/src/mocks/fixtures.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { Fr } from '@aztec/foundation/fields';
|
|
|
6
6
|
import type { Logger } from '@aztec/foundation/log';
|
|
7
7
|
import { fileURLToPath } from '@aztec/foundation/url';
|
|
8
8
|
import { getVKTreeRoot } from '@aztec/noir-protocol-circuits-types/vk-tree';
|
|
9
|
-
import {
|
|
9
|
+
import { protocolContractsHash } from '@aztec/protocol-contracts';
|
|
10
10
|
import { type CircuitSimulator, NativeACVMSimulator, WASMSimulatorWithBlobs } from '@aztec/simulator/server';
|
|
11
11
|
import { AztecAddress } from '@aztec/stdlib/aztec-address';
|
|
12
12
|
import { GasFees } from '@aztec/stdlib/gas';
|
|
@@ -125,7 +125,7 @@ export const makeCheckpointConstants = (slotNumber: number) => {
|
|
|
125
125
|
chainId: Fr.ZERO,
|
|
126
126
|
version: Fr.ZERO,
|
|
127
127
|
vkTreeRoot: getVKTreeRoot(),
|
|
128
|
-
|
|
128
|
+
protocolContractsHash,
|
|
129
129
|
proverId: Fr.ZERO,
|
|
130
130
|
slotNumber: new Fr(slotNumber),
|
|
131
131
|
coinbase: EthAddress.ZERO,
|
|
@@ -6,7 +6,7 @@ import { Fr } from '@aztec/foundation/fields';
|
|
|
6
6
|
import type { Logger } from '@aztec/foundation/log';
|
|
7
7
|
import { TestDateProvider } from '@aztec/foundation/timer';
|
|
8
8
|
import { getVKTreeRoot } from '@aztec/noir-protocol-circuits-types/vk-tree';
|
|
9
|
-
import {
|
|
9
|
+
import { ProtocolContractsList } from '@aztec/protocol-contracts';
|
|
10
10
|
import { computeFeePayerBalanceLeafSlot } from '@aztec/protocol-contracts/fee-juice';
|
|
11
11
|
import { SimpleContractDataSource } from '@aztec/simulator/public/fixtures';
|
|
12
12
|
import { PublicProcessorFactory } from '@aztec/simulator/server';
|
|
@@ -175,7 +175,7 @@ export class TestContext {
|
|
|
175
175
|
const tx = await makeBloatedProcessedTx({
|
|
176
176
|
header,
|
|
177
177
|
vkTreeRoot: getVKTreeRoot(),
|
|
178
|
-
|
|
178
|
+
protocolContracts: ProtocolContractsList,
|
|
179
179
|
globalVariables: this.globalVariables,
|
|
180
180
|
feePayer: this.feePayer,
|
|
181
181
|
...opts,
|
|
@@ -191,7 +191,7 @@ export const insertSideEffectsAndBuildBaseRollupHints = runInSpan(
|
|
|
191
191
|
lastArchive,
|
|
192
192
|
l1ToL2TreeSnapshot: newL1ToL2MessageTreeSnapshot,
|
|
193
193
|
vkTreeRoot: tx.data.constants.vkTreeRoot,
|
|
194
|
-
|
|
194
|
+
protocolContractsHash: tx.data.constants.protocolContractsHash,
|
|
195
195
|
globalVariables: tx.globalVariables,
|
|
196
196
|
proverId,
|
|
197
197
|
});
|