@aztec/prover-node 3.0.0-nightly.20251007 → 3.0.0-nightly.20251009

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.
@@ -12,7 +12,7 @@ import { createLogger } from '@aztec/foundation/log';
12
12
  import { RunningPromise, promiseWithResolvers } from '@aztec/foundation/promise';
13
13
  import { Timer } from '@aztec/foundation/timer';
14
14
  import { getVKTreeRoot } from '@aztec/noir-protocol-circuits-types/vk-tree';
15
- import { protocolContractTreeRoot } from '@aztec/protocol-contracts';
15
+ import { protocolContractsHash } from '@aztec/protocol-contracts';
16
16
  import { buildFinalBlobChallenges } from '@aztec/prover-client/helpers';
17
17
  import { EpochProvingJobTerminalState } from '@aztec/stdlib/interfaces/server';
18
18
  import { CheckpointConstantData } from '@aztec/stdlib/rollup';
@@ -139,7 +139,7 @@ import { validateEpochProvingJobData } from './epoch-proving-job-data.js';
139
139
  chainId: globalVariables.chainId,
140
140
  version: globalVariables.version,
141
141
  vkTreeRoot: getVKTreeRoot(),
142
- protocolContractTreeRoot: protocolContractTreeRoot,
142
+ protocolContractsHash: protocolContractsHash,
143
143
  proverId: this.prover.getProverId().toField(),
144
144
  slotNumber: globalVariables.slotNumber,
145
145
  coinbase: globalVariables.coinbase,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/prover-node",
3
- "version": "3.0.0-nightly.20251007",
3
+ "version": "3.0.0-nightly.20251009",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./dest/index.js",
@@ -56,27 +56,27 @@
56
56
  ]
57
57
  },
58
58
  "dependencies": {
59
- "@aztec/archiver": "3.0.0-nightly.20251007",
60
- "@aztec/bb-prover": "3.0.0-nightly.20251007",
61
- "@aztec/blob-lib": "3.0.0-nightly.20251007",
62
- "@aztec/blob-sink": "3.0.0-nightly.20251007",
63
- "@aztec/constants": "3.0.0-nightly.20251007",
64
- "@aztec/epoch-cache": "3.0.0-nightly.20251007",
65
- "@aztec/ethereum": "3.0.0-nightly.20251007",
66
- "@aztec/foundation": "3.0.0-nightly.20251007",
67
- "@aztec/kv-store": "3.0.0-nightly.20251007",
68
- "@aztec/l1-artifacts": "3.0.0-nightly.20251007",
69
- "@aztec/node-keystore": "3.0.0-nightly.20251007",
70
- "@aztec/node-lib": "3.0.0-nightly.20251007",
71
- "@aztec/noir-protocol-circuits-types": "3.0.0-nightly.20251007",
72
- "@aztec/p2p": "3.0.0-nightly.20251007",
73
- "@aztec/protocol-contracts": "3.0.0-nightly.20251007",
74
- "@aztec/prover-client": "3.0.0-nightly.20251007",
75
- "@aztec/sequencer-client": "3.0.0-nightly.20251007",
76
- "@aztec/simulator": "3.0.0-nightly.20251007",
77
- "@aztec/stdlib": "3.0.0-nightly.20251007",
78
- "@aztec/telemetry-client": "3.0.0-nightly.20251007",
79
- "@aztec/world-state": "3.0.0-nightly.20251007",
59
+ "@aztec/archiver": "3.0.0-nightly.20251009",
60
+ "@aztec/bb-prover": "3.0.0-nightly.20251009",
61
+ "@aztec/blob-lib": "3.0.0-nightly.20251009",
62
+ "@aztec/blob-sink": "3.0.0-nightly.20251009",
63
+ "@aztec/constants": "3.0.0-nightly.20251009",
64
+ "@aztec/epoch-cache": "3.0.0-nightly.20251009",
65
+ "@aztec/ethereum": "3.0.0-nightly.20251009",
66
+ "@aztec/foundation": "3.0.0-nightly.20251009",
67
+ "@aztec/kv-store": "3.0.0-nightly.20251009",
68
+ "@aztec/l1-artifacts": "3.0.0-nightly.20251009",
69
+ "@aztec/node-keystore": "3.0.0-nightly.20251009",
70
+ "@aztec/node-lib": "3.0.0-nightly.20251009",
71
+ "@aztec/noir-protocol-circuits-types": "3.0.0-nightly.20251009",
72
+ "@aztec/p2p": "3.0.0-nightly.20251009",
73
+ "@aztec/protocol-contracts": "3.0.0-nightly.20251009",
74
+ "@aztec/prover-client": "3.0.0-nightly.20251009",
75
+ "@aztec/sequencer-client": "3.0.0-nightly.20251009",
76
+ "@aztec/simulator": "3.0.0-nightly.20251009",
77
+ "@aztec/stdlib": "3.0.0-nightly.20251009",
78
+ "@aztec/telemetry-client": "3.0.0-nightly.20251009",
79
+ "@aztec/world-state": "3.0.0-nightly.20251009",
80
80
  "source-map-support": "^0.5.21",
81
81
  "tslib": "^2.4.0",
82
82
  "viem": "2.23.7"
@@ -6,7 +6,7 @@ import { createLogger } from '@aztec/foundation/log';
6
6
  import { RunningPromise, promiseWithResolvers } from '@aztec/foundation/promise';
7
7
  import { Timer } from '@aztec/foundation/timer';
8
8
  import { getVKTreeRoot } from '@aztec/noir-protocol-circuits-types/vk-tree';
9
- import { protocolContractTreeRoot } from '@aztec/protocol-contracts';
9
+ import { protocolContractsHash } from '@aztec/protocol-contracts';
10
10
  import { buildFinalBlobChallenges } from '@aztec/prover-client/helpers';
11
11
  import type { PublicProcessor, PublicProcessorFactory } from '@aztec/simulator/server';
12
12
  import type { L2Block, L2BlockSource } from '@aztec/stdlib/block';
@@ -166,7 +166,7 @@ export class EpochProvingJob implements Traceable {
166
166
  chainId: globalVariables.chainId,
167
167
  version: globalVariables.version,
168
168
  vkTreeRoot: getVKTreeRoot(),
169
- protocolContractTreeRoot: protocolContractTreeRoot,
169
+ protocolContractsHash: protocolContractsHash,
170
170
  proverId: this.prover.getProverId().toField(),
171
171
  slotNumber: globalVariables.slotNumber,
172
172
  coinbase: globalVariables.coinbase,