@aztec/end-to-end 0.87.6 → 0.87.8

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.
@@ -19,6 +19,7 @@ async function createProver(config = {}, log) {
19
19
  return {
20
20
  prover: await BBNativePrivateKernelProver.new({
21
21
  bbSkipCleanup: false,
22
+ numConcurrentIVCVerifiers: 1,
22
23
  ...bbConfig
23
24
  }, simulator, log),
24
25
  type: 'native'
@@ -39,7 +39,8 @@ export const getBBConfig = async (logger)=>{
39
39
  bbSkipCleanup,
40
40
  bbBinaryPath,
41
41
  bbWorkingDirectory,
42
- cleanup
42
+ cleanup,
43
+ numConcurrentIVCVerifiers: 1
43
44
  };
44
45
  } catch (err) {
45
46
  logger.error(`Native BB not available, error: ${err}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/end-to-end",
3
- "version": "0.87.6",
3
+ "version": "0.87.8",
4
4
  "type": "module",
5
5
  "exports": "./dest/index.js",
6
6
  "inherits": [
@@ -25,39 +25,39 @@
25
25
  "formatting": "run -T prettier --check ./src && run -T eslint ./src"
26
26
  },
27
27
  "dependencies": {
28
- "@aztec/accounts": "0.87.6",
29
- "@aztec/archiver": "0.87.6",
30
- "@aztec/aztec": "0.87.6",
31
- "@aztec/aztec-node": "0.87.6",
32
- "@aztec/aztec.js": "0.87.6",
33
- "@aztec/bb-prover": "0.87.6",
34
- "@aztec/blob-lib": "0.87.6",
35
- "@aztec/blob-sink": "0.87.6",
36
- "@aztec/bot": "0.87.6",
37
- "@aztec/cli": "0.87.6",
38
- "@aztec/constants": "0.87.6",
39
- "@aztec/entrypoints": "0.87.6",
40
- "@aztec/epoch-cache": "0.87.6",
41
- "@aztec/ethereum": "0.87.6",
42
- "@aztec/foundation": "0.87.6",
43
- "@aztec/kv-store": "0.87.6",
44
- "@aztec/l1-artifacts": "0.87.6",
45
- "@aztec/merkle-tree": "0.87.6",
46
- "@aztec/noir-contracts.js": "0.87.6",
47
- "@aztec/noir-noirc_abi": "0.87.6",
48
- "@aztec/noir-protocol-circuits-types": "0.87.6",
49
- "@aztec/noir-test-contracts.js": "0.87.6",
50
- "@aztec/p2p": "0.87.6",
51
- "@aztec/protocol-contracts": "0.87.6",
52
- "@aztec/prover-client": "0.87.6",
53
- "@aztec/prover-node": "0.87.6",
54
- "@aztec/pxe": "0.87.6",
55
- "@aztec/sequencer-client": "0.87.6",
56
- "@aztec/simulator": "0.87.6",
57
- "@aztec/stdlib": "0.87.6",
58
- "@aztec/telemetry-client": "0.87.6",
59
- "@aztec/validator-client": "0.87.6",
60
- "@aztec/world-state": "0.87.6",
28
+ "@aztec/accounts": "0.87.8",
29
+ "@aztec/archiver": "0.87.8",
30
+ "@aztec/aztec": "0.87.8",
31
+ "@aztec/aztec-node": "0.87.8",
32
+ "@aztec/aztec.js": "0.87.8",
33
+ "@aztec/bb-prover": "0.87.8",
34
+ "@aztec/blob-lib": "0.87.8",
35
+ "@aztec/blob-sink": "0.87.8",
36
+ "@aztec/bot": "0.87.8",
37
+ "@aztec/cli": "0.87.8",
38
+ "@aztec/constants": "0.87.8",
39
+ "@aztec/entrypoints": "0.87.8",
40
+ "@aztec/epoch-cache": "0.87.8",
41
+ "@aztec/ethereum": "0.87.8",
42
+ "@aztec/foundation": "0.87.8",
43
+ "@aztec/kv-store": "0.87.8",
44
+ "@aztec/l1-artifacts": "0.87.8",
45
+ "@aztec/merkle-tree": "0.87.8",
46
+ "@aztec/noir-contracts.js": "0.87.8",
47
+ "@aztec/noir-noirc_abi": "0.87.8",
48
+ "@aztec/noir-protocol-circuits-types": "0.87.8",
49
+ "@aztec/noir-test-contracts.js": "0.87.8",
50
+ "@aztec/p2p": "0.87.8",
51
+ "@aztec/protocol-contracts": "0.87.8",
52
+ "@aztec/prover-client": "0.87.8",
53
+ "@aztec/prover-node": "0.87.8",
54
+ "@aztec/pxe": "0.87.8",
55
+ "@aztec/sequencer-client": "0.87.8",
56
+ "@aztec/simulator": "0.87.8",
57
+ "@aztec/stdlib": "0.87.8",
58
+ "@aztec/telemetry-client": "0.87.8",
59
+ "@aztec/validator-client": "0.87.8",
60
+ "@aztec/world-state": "0.87.8",
61
61
  "@iarna/toml": "^2.2.5",
62
62
  "@jest/globals": "^29.5.0",
63
63
  "@noble/curves": "^1.0.0",
@@ -22,7 +22,11 @@ async function createProver(config: NativeProverConfig = {}, log: Logger) {
22
22
  } else {
23
23
  const bbConfig = config as Required<NativeProverConfig>;
24
24
  return {
25
- prover: await BBNativePrivateKernelProver.new({ bbSkipCleanup: false, ...bbConfig }, simulator, log),
25
+ prover: await BBNativePrivateKernelProver.new(
26
+ { bbSkipCleanup: false, numConcurrentIVCVerifiers: 1, ...bbConfig },
27
+ simulator,
28
+ log,
29
+ ),
26
30
  type: 'native' as ProverType,
27
31
  };
28
32
  }
@@ -46,7 +46,7 @@ export const getBBConfig = async (
46
46
  }
47
47
  };
48
48
 
49
- return { bbSkipCleanup, bbBinaryPath, bbWorkingDirectory, cleanup };
49
+ return { bbSkipCleanup, bbBinaryPath, bbWorkingDirectory, cleanup, numConcurrentIVCVerifiers: 1 };
50
50
  } catch (err) {
51
51
  logger.error(`Native BB not available, error: ${err}`);
52
52
  return undefined;