@aztec/prover-node 4.1.0-rc.3 → 4.1.0
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.
|
@@ -18,9 +18,7 @@ import { ProverNodeJobMetrics } from '../metrics.js';
|
|
|
18
18
|
const telemetry = getTelemetryClient();
|
|
19
19
|
const metrics = new ProverNodeJobMetrics(telemetry.getMeter('prover-job'), telemetry.getTracer('prover-job'));
|
|
20
20
|
const worldState = await createWorldState(config);
|
|
21
|
-
const archiver = await createArchiverStore(config
|
|
22
|
-
epochDuration: config.aztecEpochDuration
|
|
23
|
-
});
|
|
21
|
+
const archiver = await createArchiverStore(config);
|
|
24
22
|
const publicProcessorFactory = new PublicProcessorFactory(archiver, undefined, undefined, log.getBindings());
|
|
25
23
|
const publisher = {
|
|
26
24
|
submitEpochProof: ()=>Promise.resolve(true)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/prover-node",
|
|
3
|
-
"version": "4.1.0
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./dest/index.js",
|
|
@@ -56,28 +56,28 @@
|
|
|
56
56
|
]
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@aztec/archiver": "4.1.0
|
|
60
|
-
"@aztec/bb-prover": "4.1.0
|
|
61
|
-
"@aztec/blob-client": "4.1.0
|
|
62
|
-
"@aztec/blob-lib": "4.1.0
|
|
63
|
-
"@aztec/constants": "4.1.0
|
|
64
|
-
"@aztec/epoch-cache": "4.1.0
|
|
65
|
-
"@aztec/ethereum": "4.1.0
|
|
66
|
-
"@aztec/foundation": "4.1.0
|
|
67
|
-
"@aztec/kv-store": "4.1.0
|
|
68
|
-
"@aztec/l1-artifacts": "4.1.0
|
|
69
|
-
"@aztec/native": "4.1.0
|
|
70
|
-
"@aztec/node-keystore": "4.1.0
|
|
71
|
-
"@aztec/node-lib": "4.1.0
|
|
72
|
-
"@aztec/noir-protocol-circuits-types": "4.1.0
|
|
73
|
-
"@aztec/p2p": "4.1.0
|
|
74
|
-
"@aztec/protocol-contracts": "4.1.0
|
|
75
|
-
"@aztec/prover-client": "4.1.0
|
|
76
|
-
"@aztec/sequencer-client": "4.1.0
|
|
77
|
-
"@aztec/simulator": "4.1.0
|
|
78
|
-
"@aztec/stdlib": "4.1.0
|
|
79
|
-
"@aztec/telemetry-client": "4.1.0
|
|
80
|
-
"@aztec/world-state": "4.1.0
|
|
59
|
+
"@aztec/archiver": "4.1.0",
|
|
60
|
+
"@aztec/bb-prover": "4.1.0",
|
|
61
|
+
"@aztec/blob-client": "4.1.0",
|
|
62
|
+
"@aztec/blob-lib": "4.1.0",
|
|
63
|
+
"@aztec/constants": "4.1.0",
|
|
64
|
+
"@aztec/epoch-cache": "4.1.0",
|
|
65
|
+
"@aztec/ethereum": "4.1.0",
|
|
66
|
+
"@aztec/foundation": "4.1.0",
|
|
67
|
+
"@aztec/kv-store": "4.1.0",
|
|
68
|
+
"@aztec/l1-artifacts": "4.1.0",
|
|
69
|
+
"@aztec/native": "4.1.0",
|
|
70
|
+
"@aztec/node-keystore": "4.1.0",
|
|
71
|
+
"@aztec/node-lib": "4.1.0",
|
|
72
|
+
"@aztec/noir-protocol-circuits-types": "4.1.0",
|
|
73
|
+
"@aztec/p2p": "4.1.0",
|
|
74
|
+
"@aztec/protocol-contracts": "4.1.0",
|
|
75
|
+
"@aztec/prover-client": "4.1.0",
|
|
76
|
+
"@aztec/sequencer-client": "4.1.0",
|
|
77
|
+
"@aztec/simulator": "4.1.0",
|
|
78
|
+
"@aztec/stdlib": "4.1.0",
|
|
79
|
+
"@aztec/telemetry-client": "4.1.0",
|
|
80
|
+
"@aztec/world-state": "4.1.0",
|
|
81
81
|
"source-map-support": "^0.5.21",
|
|
82
82
|
"tslib": "^2.4.0",
|
|
83
83
|
"viem": "npm:@aztec/viem@2.38.2"
|
|
@@ -30,7 +30,7 @@ export async function rerunEpochProvingJob(
|
|
|
30
30
|
const telemetry = getTelemetryClient();
|
|
31
31
|
const metrics = new ProverNodeJobMetrics(telemetry.getMeter('prover-job'), telemetry.getTracer('prover-job'));
|
|
32
32
|
const worldState = await createWorldState(config);
|
|
33
|
-
const archiver = await createArchiverStore(config
|
|
33
|
+
const archiver = await createArchiverStore(config);
|
|
34
34
|
const publicProcessorFactory = new PublicProcessorFactory(archiver, undefined, undefined, log.getBindings());
|
|
35
35
|
|
|
36
36
|
const publisher = { submitEpochProof: () => Promise.resolve(true) };
|