@aztec/prover-node 3.0.0-nightly.20250921 → 3.0.0-nightly.20250923

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/factory.js CHANGED
@@ -95,7 +95,7 @@ import { ProverPublisherFactory } from './prover-publisher-factory.js';
95
95
  });
96
96
  const publisherFactory = deps.publisherFactory ?? new ProverPublisherFactory(config, {
97
97
  rollupContract,
98
- publisherManager: new PublisherManager(l1TxUtils),
98
+ publisherManager: new PublisherManager(l1TxUtils, config),
99
99
  telemetry
100
100
  });
101
101
  const proofVerifier = new QueuedIVCVerifier(config, config.realProofs ? await BBCircuitVerifier.new(config) : new TestCircuitVerifier());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/prover-node",
3
- "version": "3.0.0-nightly.20250921",
3
+ "version": "3.0.0-nightly.20250923",
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.20250921",
60
- "@aztec/bb-prover": "3.0.0-nightly.20250921",
61
- "@aztec/blob-lib": "3.0.0-nightly.20250921",
62
- "@aztec/blob-sink": "3.0.0-nightly.20250921",
63
- "@aztec/constants": "3.0.0-nightly.20250921",
64
- "@aztec/epoch-cache": "3.0.0-nightly.20250921",
65
- "@aztec/ethereum": "3.0.0-nightly.20250921",
66
- "@aztec/foundation": "3.0.0-nightly.20250921",
67
- "@aztec/kv-store": "3.0.0-nightly.20250921",
68
- "@aztec/l1-artifacts": "3.0.0-nightly.20250921",
69
- "@aztec/node-keystore": "3.0.0-nightly.20250921",
70
- "@aztec/node-lib": "3.0.0-nightly.20250921",
71
- "@aztec/noir-protocol-circuits-types": "3.0.0-nightly.20250921",
72
- "@aztec/p2p": "3.0.0-nightly.20250921",
73
- "@aztec/protocol-contracts": "3.0.0-nightly.20250921",
74
- "@aztec/prover-client": "3.0.0-nightly.20250921",
75
- "@aztec/sequencer-client": "3.0.0-nightly.20250921",
76
- "@aztec/simulator": "3.0.0-nightly.20250921",
77
- "@aztec/stdlib": "3.0.0-nightly.20250921",
78
- "@aztec/telemetry-client": "3.0.0-nightly.20250921",
79
- "@aztec/world-state": "3.0.0-nightly.20250921",
59
+ "@aztec/archiver": "3.0.0-nightly.20250923",
60
+ "@aztec/bb-prover": "3.0.0-nightly.20250923",
61
+ "@aztec/blob-lib": "3.0.0-nightly.20250923",
62
+ "@aztec/blob-sink": "3.0.0-nightly.20250923",
63
+ "@aztec/constants": "3.0.0-nightly.20250923",
64
+ "@aztec/epoch-cache": "3.0.0-nightly.20250923",
65
+ "@aztec/ethereum": "3.0.0-nightly.20250923",
66
+ "@aztec/foundation": "3.0.0-nightly.20250923",
67
+ "@aztec/kv-store": "3.0.0-nightly.20250923",
68
+ "@aztec/l1-artifacts": "3.0.0-nightly.20250923",
69
+ "@aztec/node-keystore": "3.0.0-nightly.20250923",
70
+ "@aztec/node-lib": "3.0.0-nightly.20250923",
71
+ "@aztec/noir-protocol-circuits-types": "3.0.0-nightly.20250923",
72
+ "@aztec/p2p": "3.0.0-nightly.20250923",
73
+ "@aztec/protocol-contracts": "3.0.0-nightly.20250923",
74
+ "@aztec/prover-client": "3.0.0-nightly.20250923",
75
+ "@aztec/sequencer-client": "3.0.0-nightly.20250923",
76
+ "@aztec/simulator": "3.0.0-nightly.20250923",
77
+ "@aztec/stdlib": "3.0.0-nightly.20250923",
78
+ "@aztec/telemetry-client": "3.0.0-nightly.20250923",
79
+ "@aztec/world-state": "3.0.0-nightly.20250923",
80
80
  "source-map-support": "^0.5.21",
81
81
  "tslib": "^2.4.0",
82
82
  "viem": "2.23.7"
package/src/factory.ts CHANGED
@@ -143,7 +143,7 @@ export async function createProverNode(
143
143
  deps.publisherFactory ??
144
144
  new ProverPublisherFactory(config, {
145
145
  rollupContract,
146
- publisherManager: new PublisherManager(l1TxUtils),
146
+ publisherManager: new PublisherManager(l1TxUtils, config),
147
147
  telemetry,
148
148
  });
149
149