@aztec/bb-prover 0.0.1-commit.7cf39cb55 → 0.0.1-commit.808bf7f90

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.
@@ -115,7 +115,7 @@ export class BBPrivateKernelProver {
115
115
  this.log.info(`Generating ClientIVC proof...`);
116
116
  const barretenberg = await Barretenberg.initSingleton({
117
117
  ...this.options,
118
- logger: this.options.logger?.[process.env.LOG_LEVEL || 'verbose']
118
+ logger: this.options.logger?.verbose
119
119
  });
120
120
  const backend = new AztecClientBackend(executionSteps.map((step)=>ungzip(step.bytecode)), barretenberg, executionSteps.map((step)=>step.functionName));
121
121
  const [proof] = await backend.prove(executionSteps.map((step)=>ungzip(serializeWitness(step.witness))), executionSteps.map((step)=>step.vk));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/bb-prover",
3
- "version": "0.0.1-commit.7cf39cb55",
3
+ "version": "0.0.1-commit.808bf7f90",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./dest/index.js",
@@ -69,27 +69,27 @@
69
69
  ]
70
70
  },
71
71
  "dependencies": {
72
- "@aztec/bb.js": "0.0.1-commit.7cf39cb55",
73
- "@aztec/constants": "0.0.1-commit.7cf39cb55",
74
- "@aztec/foundation": "0.0.1-commit.7cf39cb55",
75
- "@aztec/noir-noirc_abi": "0.0.1-commit.7cf39cb55",
76
- "@aztec/noir-protocol-circuits-types": "0.0.1-commit.7cf39cb55",
77
- "@aztec/noir-types": "0.0.1-commit.7cf39cb55",
78
- "@aztec/simulator": "0.0.1-commit.7cf39cb55",
79
- "@aztec/stdlib": "0.0.1-commit.7cf39cb55",
80
- "@aztec/telemetry-client": "0.0.1-commit.7cf39cb55",
81
- "@aztec/world-state": "0.0.1-commit.7cf39cb55",
72
+ "@aztec/bb.js": "0.0.1-commit.808bf7f90",
73
+ "@aztec/constants": "0.0.1-commit.808bf7f90",
74
+ "@aztec/foundation": "0.0.1-commit.808bf7f90",
75
+ "@aztec/noir-noirc_abi": "0.0.1-commit.808bf7f90",
76
+ "@aztec/noir-protocol-circuits-types": "0.0.1-commit.808bf7f90",
77
+ "@aztec/noir-types": "0.0.1-commit.808bf7f90",
78
+ "@aztec/simulator": "0.0.1-commit.808bf7f90",
79
+ "@aztec/stdlib": "0.0.1-commit.808bf7f90",
80
+ "@aztec/telemetry-client": "0.0.1-commit.808bf7f90",
81
+ "@aztec/world-state": "0.0.1-commit.808bf7f90",
82
82
  "commander": "^12.1.0",
83
83
  "pako": "^2.1.0",
84
84
  "source-map-support": "^0.5.21",
85
85
  "tslib": "^2.4.0"
86
86
  },
87
87
  "devDependencies": {
88
- "@aztec/ethereum": "0.0.1-commit.7cf39cb55",
89
- "@aztec/kv-store": "0.0.1-commit.7cf39cb55",
90
- "@aztec/noir-contracts.js": "0.0.1-commit.7cf39cb55",
91
- "@aztec/noir-test-contracts.js": "0.0.1-commit.7cf39cb55",
92
- "@aztec/protocol-contracts": "0.0.1-commit.7cf39cb55",
88
+ "@aztec/ethereum": "0.0.1-commit.808bf7f90",
89
+ "@aztec/kv-store": "0.0.1-commit.808bf7f90",
90
+ "@aztec/noir-contracts.js": "0.0.1-commit.808bf7f90",
91
+ "@aztec/noir-test-contracts.js": "0.0.1-commit.808bf7f90",
92
+ "@aztec/protocol-contracts": "0.0.1-commit.808bf7f90",
93
93
  "@jest/globals": "^30.0.0",
94
94
  "@types/jest": "^30.0.0",
95
95
  "@types/node": "^22.15.17",
@@ -278,7 +278,7 @@ export abstract class BBPrivateKernelProver implements PrivateKernelProver {
278
278
  this.log.info(`Generating ClientIVC proof...`);
279
279
  const barretenberg = await Barretenberg.initSingleton({
280
280
  ...this.options,
281
- logger: this.options.logger?.[(process.env.LOG_LEVEL as LogLevel) || 'verbose'],
281
+ logger: this.options.logger?.verbose,
282
282
  });
283
283
  const backend = new AztecClientBackend(
284
284
  executionSteps.map(step => ungzip(step.bytecode)),