@aztec/bb-prover 0.65.1 → 0.65.2

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/config.d.ts CHANGED
@@ -5,7 +5,9 @@ export interface BBConfig {
5
5
  bbSkipCleanup: boolean;
6
6
  }
7
7
  export interface ACVMConfig {
8
+ /** The path to the ACVM binary */
8
9
  acvmBinaryPath: string;
10
+ /** The working directory to use for simulation/proving */
9
11
  acvmWorkingDirectory: string;
10
12
  }
11
13
  //# sourceMappingURL=config.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,QAAQ;IACvB,YAAY,EAAE,MAAM,CAAC;IACrB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,6DAA6D;IAC7D,aAAa,EAAE,OAAO,CAAC;CACxB;AAED,MAAM,WAAW,UAAU;IACzB,cAAc,EAAE,MAAM,CAAC;IACvB,oBAAoB,EAAE,MAAM,CAAC;CAC9B"}
1
+ {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,QAAQ;IACvB,YAAY,EAAE,MAAM,CAAC;IACrB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,6DAA6D;IAC7D,aAAa,EAAE,OAAO,CAAC;CACxB;AAED,MAAM,WAAW,UAAU;IACzB,kCAAkC;IAClC,cAAc,EAAE,MAAM,CAAC;IACvB,0DAA0D;IAC1D,oBAAoB,EAAE,MAAM,CAAC;CAC9B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/bb-prover",
3
- "version": "0.65.1",
3
+ "version": "0.65.2",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./dest/index.js",
@@ -65,13 +65,13 @@
65
65
  ]
66
66
  },
67
67
  "dependencies": {
68
- "@aztec/circuit-types": "0.65.1",
69
- "@aztec/circuits.js": "0.65.1",
70
- "@aztec/foundation": "0.65.1",
71
- "@aztec/noir-protocol-circuits-types": "0.65.1",
72
- "@aztec/simulator": "0.65.1",
73
- "@aztec/telemetry-client": "0.65.1",
74
- "@aztec/world-state": "0.65.1",
68
+ "@aztec/circuit-types": "0.65.2",
69
+ "@aztec/circuits.js": "0.65.2",
70
+ "@aztec/foundation": "0.65.2",
71
+ "@aztec/noir-protocol-circuits-types": "0.65.2",
72
+ "@aztec/simulator": "0.65.2",
73
+ "@aztec/telemetry-client": "0.65.2",
74
+ "@aztec/world-state": "0.65.2",
75
75
  "@msgpack/msgpack": "^3.0.0-beta2",
76
76
  "@noir-lang/noirc_abi": "portal:../../noir/packages/noirc_abi",
77
77
  "@noir-lang/types": "portal:../../noir/packages/types",
package/src/config.ts CHANGED
@@ -6,6 +6,8 @@ export interface BBConfig {
6
6
  }
7
7
 
8
8
  export interface ACVMConfig {
9
+ /** The path to the ACVM binary */
9
10
  acvmBinaryPath: string;
11
+ /** The working directory to use for simulation/proving */
10
12
  acvmWorkingDirectory: string;
11
13
  }