@aztec/prover-client 2.0.0-nightly.20250827 → 2.0.0-nightly.20250828

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.
@@ -463,7 +463,7 @@ import { ProvingBrokerInstrumentation } from './proving_broker_instrumentation.j
463
463
  }
464
464
  if (jobsToClean.length > 0) {
465
465
  this.cleanUpProvingJobState(jobsToClean);
466
- this.logger.info(`Cleaned up jobs=${jobsToClean.length}`);
466
+ this.logger.verbose(`Cleaned up proving jobs=${jobsToClean.length}`);
467
467
  }
468
468
  }
469
469
  reEnqueueExpiredJobs() {
@@ -134,7 +134,7 @@ export class KVBrokerDatabase {
134
134
  if (!db) {
135
135
  continue;
136
136
  }
137
- this.logger.info(`Deleting broker database for epoch ${old}`);
137
+ this.logger.verbose(`Deleting broker database for epoch ${old}`);
138
138
  await db.delete();
139
139
  this.epochs.delete(old);
140
140
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/prover-client",
3
- "version": "2.0.0-nightly.20250827",
3
+ "version": "2.0.0-nightly.20250828",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./dest/index.js",
@@ -68,19 +68,19 @@
68
68
  ]
69
69
  },
70
70
  "dependencies": {
71
- "@aztec/bb-prover": "2.0.0-nightly.20250827",
72
- "@aztec/blob-lib": "2.0.0-nightly.20250827",
73
- "@aztec/constants": "2.0.0-nightly.20250827",
74
- "@aztec/ethereum": "2.0.0-nightly.20250827",
75
- "@aztec/foundation": "2.0.0-nightly.20250827",
76
- "@aztec/kv-store": "2.0.0-nightly.20250827",
77
- "@aztec/noir-protocol-circuits-types": "2.0.0-nightly.20250827",
78
- "@aztec/noir-types": "2.0.0-nightly.20250827",
79
- "@aztec/protocol-contracts": "2.0.0-nightly.20250827",
80
- "@aztec/simulator": "2.0.0-nightly.20250827",
81
- "@aztec/stdlib": "2.0.0-nightly.20250827",
82
- "@aztec/telemetry-client": "2.0.0-nightly.20250827",
83
- "@aztec/world-state": "2.0.0-nightly.20250827",
71
+ "@aztec/bb-prover": "2.0.0-nightly.20250828",
72
+ "@aztec/blob-lib": "2.0.0-nightly.20250828",
73
+ "@aztec/constants": "2.0.0-nightly.20250828",
74
+ "@aztec/ethereum": "2.0.0-nightly.20250828",
75
+ "@aztec/foundation": "2.0.0-nightly.20250828",
76
+ "@aztec/kv-store": "2.0.0-nightly.20250828",
77
+ "@aztec/noir-protocol-circuits-types": "2.0.0-nightly.20250828",
78
+ "@aztec/noir-types": "2.0.0-nightly.20250828",
79
+ "@aztec/protocol-contracts": "2.0.0-nightly.20250828",
80
+ "@aztec/simulator": "2.0.0-nightly.20250828",
81
+ "@aztec/stdlib": "2.0.0-nightly.20250828",
82
+ "@aztec/telemetry-client": "2.0.0-nightly.20250828",
83
+ "@aztec/world-state": "2.0.0-nightly.20250828",
84
84
  "@google-cloud/storage": "^7.15.0",
85
85
  "@iarna/toml": "^2.2.5",
86
86
  "commander": "^12.1.0",
@@ -90,7 +90,7 @@
90
90
  "zod": "^3.23.8"
91
91
  },
92
92
  "devDependencies": {
93
- "@aztec/noir-contracts.js": "2.0.0-nightly.20250827",
93
+ "@aztec/noir-contracts.js": "2.0.0-nightly.20250828",
94
94
  "@jest/globals": "^30.0.0",
95
95
  "@types/jest": "^30.0.0",
96
96
  "@types/node": "^22.15.17",
@@ -572,7 +572,7 @@ export class ProvingBroker implements ProvingJobProducer, ProvingJobConsumer, Tr
572
572
 
573
573
  if (jobsToClean.length > 0) {
574
574
  this.cleanUpProvingJobState(jobsToClean);
575
- this.logger.info(`Cleaned up jobs=${jobsToClean.length}`);
575
+ this.logger.verbose(`Cleaned up proving jobs=${jobsToClean.length}`);
576
576
  }
577
577
  }
578
578
 
@@ -171,7 +171,7 @@ export class KVBrokerDatabase implements ProvingBrokerDatabase {
171
171
  if (!db) {
172
172
  continue;
173
173
  }
174
- this.logger.info(`Deleting broker database for epoch ${old}`);
174
+ this.logger.verbose(`Deleting broker database for epoch ${old}`);
175
175
  await db.delete();
176
176
  this.epochs.delete(old);
177
177
  }