@aztec/end-to-end 3.0.0-devnet.2 → 3.0.0-manual.20251030

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.
@@ -234,13 +234,13 @@ export async function captureProfile(label, interaction, opts, expectedSteps) {
234
234
  const benchmark = generateBenchmark(label, logs, result.stats, result.executionSteps, 'wasm', undefined);
235
235
  const ivcFolder = process.env.CAPTURE_IVC_FOLDER;
236
236
  if (ivcFolder) {
237
- logger.info(`Capturing client ivc execution profile for ${label}`);
237
+ logger.info(`Capturing chonk execution profile for ${label}`);
238
238
  const resultsDirectory = join(ivcFolder, label);
239
239
  logger.info(`Writing private execution steps to ${resultsDirectory}`);
240
240
  await mkdir(resultsDirectory, {
241
241
  recursive: true
242
242
  });
243
- // Write the client IVC files read by the prover.
243
+ // Write the chonk files read by the prover.
244
244
  const ivcInputsPath = join(resultsDirectory, 'ivc-inputs.msgpack');
245
245
  await writeFile(ivcInputsPath, serializePrivateExecutionSteps(result.executionSteps));
246
246
  await writeFile(join(resultsDirectory, 'logs.json'), JSON.stringify(logs, null, 2));
@@ -40,7 +40,7 @@ async function main() {
40
40
  bbBinaryPath: process.env.BB_BINARY_PATH,
41
41
  bbWorkingDirectory: process.env.BB_WORKING_DIRECTORY
42
42
  }, proxyLogger.createLogger('bb:prover'));
43
- const userLog = createLogger('client_ivc_flows:data_processor');
43
+ const userLog = createLogger('chonk_flows:data_processor');
44
44
  for (const flow of flows){
45
45
  userLog.info(`Processing flow ${flow}`);
46
46
  const ivcInputs = await readFile(join(ivcFolder, flow, 'ivc-inputs.msgpack'));
@@ -73,10 +73,10 @@ async function main() {
73
73
  let provingTime;
74
74
  try {
75
75
  const provingTimer = new Timer();
76
- await prover.createClientIvcProof(privateExecutionSteps);
76
+ await prover.createChonkProof(privateExecutionSteps);
77
77
  provingTime = provingTimer.ms();
78
78
  } catch (e) {
79
- userLog.error(`Failed to generate client ivc proof for ${flow}`, e);
79
+ userLog.error(`Failed to generate chonk proof for ${flow}`, e);
80
80
  error = e.message;
81
81
  }
82
82
  // Extract logs from this run from the proxy and write them to disk unconditionally
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/end-to-end",
3
- "version": "3.0.0-devnet.2",
3
+ "version": "3.0.0-manual.20251030",
4
4
  "type": "module",
5
5
  "exports": "./dest/index.js",
6
6
  "inherits": [
@@ -25,42 +25,42 @@
25
25
  "formatting": "run -T prettier --check ./src && run -T eslint ./src"
26
26
  },
27
27
  "dependencies": {
28
- "@aztec/accounts": "3.0.0-devnet.2",
29
- "@aztec/archiver": "3.0.0-devnet.2",
30
- "@aztec/aztec": "3.0.0-devnet.2",
31
- "@aztec/aztec-node": "3.0.0-devnet.2",
32
- "@aztec/aztec.js": "3.0.0-devnet.2",
33
- "@aztec/bb-prover": "3.0.0-devnet.2",
34
- "@aztec/blob-lib": "3.0.0-devnet.2",
35
- "@aztec/blob-sink": "3.0.0-devnet.2",
36
- "@aztec/bot": "3.0.0-devnet.2",
37
- "@aztec/cli": "3.0.0-devnet.2",
38
- "@aztec/constants": "3.0.0-devnet.2",
39
- "@aztec/entrypoints": "3.0.0-devnet.2",
40
- "@aztec/epoch-cache": "3.0.0-devnet.2",
41
- "@aztec/ethereum": "3.0.0-devnet.2",
42
- "@aztec/foundation": "3.0.0-devnet.2",
43
- "@aztec/kv-store": "3.0.0-devnet.2",
44
- "@aztec/l1-artifacts": "3.0.0-devnet.2",
45
- "@aztec/merkle-tree": "3.0.0-devnet.2",
46
- "@aztec/node-keystore": "3.0.0-devnet.2",
47
- "@aztec/noir-contracts.js": "3.0.0-devnet.2",
48
- "@aztec/noir-noirc_abi": "3.0.0-devnet.2",
49
- "@aztec/noir-protocol-circuits-types": "3.0.0-devnet.2",
50
- "@aztec/noir-test-contracts.js": "3.0.0-devnet.2",
51
- "@aztec/p2p": "3.0.0-devnet.2",
52
- "@aztec/protocol-contracts": "3.0.0-devnet.2",
53
- "@aztec/prover-client": "3.0.0-devnet.2",
54
- "@aztec/prover-node": "3.0.0-devnet.2",
55
- "@aztec/pxe": "3.0.0-devnet.2",
56
- "@aztec/sequencer-client": "3.0.0-devnet.2",
57
- "@aztec/simulator": "3.0.0-devnet.2",
58
- "@aztec/slasher": "3.0.0-devnet.2",
59
- "@aztec/stdlib": "3.0.0-devnet.2",
60
- "@aztec/telemetry-client": "3.0.0-devnet.2",
61
- "@aztec/test-wallet": "3.0.0-devnet.2",
62
- "@aztec/validator-client": "3.0.0-devnet.2",
63
- "@aztec/world-state": "3.0.0-devnet.2",
28
+ "@aztec/accounts": "3.0.0-manual.20251030",
29
+ "@aztec/archiver": "3.0.0-manual.20251030",
30
+ "@aztec/aztec": "3.0.0-manual.20251030",
31
+ "@aztec/aztec-node": "3.0.0-manual.20251030",
32
+ "@aztec/aztec.js": "3.0.0-manual.20251030",
33
+ "@aztec/bb-prover": "3.0.0-manual.20251030",
34
+ "@aztec/blob-lib": "3.0.0-manual.20251030",
35
+ "@aztec/blob-sink": "3.0.0-manual.20251030",
36
+ "@aztec/bot": "3.0.0-manual.20251030",
37
+ "@aztec/cli": "3.0.0-manual.20251030",
38
+ "@aztec/constants": "3.0.0-manual.20251030",
39
+ "@aztec/entrypoints": "3.0.0-manual.20251030",
40
+ "@aztec/epoch-cache": "3.0.0-manual.20251030",
41
+ "@aztec/ethereum": "3.0.0-manual.20251030",
42
+ "@aztec/foundation": "3.0.0-manual.20251030",
43
+ "@aztec/kv-store": "3.0.0-manual.20251030",
44
+ "@aztec/l1-artifacts": "3.0.0-manual.20251030",
45
+ "@aztec/merkle-tree": "3.0.0-manual.20251030",
46
+ "@aztec/node-keystore": "3.0.0-manual.20251030",
47
+ "@aztec/noir-contracts.js": "3.0.0-manual.20251030",
48
+ "@aztec/noir-noirc_abi": "3.0.0-manual.20251030",
49
+ "@aztec/noir-protocol-circuits-types": "3.0.0-manual.20251030",
50
+ "@aztec/noir-test-contracts.js": "3.0.0-manual.20251030",
51
+ "@aztec/p2p": "3.0.0-manual.20251030",
52
+ "@aztec/protocol-contracts": "3.0.0-manual.20251030",
53
+ "@aztec/prover-client": "3.0.0-manual.20251030",
54
+ "@aztec/prover-node": "3.0.0-manual.20251030",
55
+ "@aztec/pxe": "3.0.0-manual.20251030",
56
+ "@aztec/sequencer-client": "3.0.0-manual.20251030",
57
+ "@aztec/simulator": "3.0.0-manual.20251030",
58
+ "@aztec/slasher": "3.0.0-manual.20251030",
59
+ "@aztec/stdlib": "3.0.0-manual.20251030",
60
+ "@aztec/telemetry-client": "3.0.0-manual.20251030",
61
+ "@aztec/test-wallet": "3.0.0-manual.20251030",
62
+ "@aztec/validator-client": "3.0.0-manual.20251030",
63
+ "@aztec/world-state": "3.0.0-manual.20251030",
64
64
  "@iarna/toml": "^2.2.5",
65
65
  "@jest/globals": "^30.0.0",
66
66
  "@noble/curves": "=1.0.0",
@@ -315,12 +315,12 @@ export async function captureProfile(
315
315
 
316
316
  const ivcFolder = process.env.CAPTURE_IVC_FOLDER;
317
317
  if (ivcFolder) {
318
- logger.info(`Capturing client ivc execution profile for ${label}`);
318
+ logger.info(`Capturing chonk execution profile for ${label}`);
319
319
 
320
320
  const resultsDirectory = join(ivcFolder, label);
321
321
  logger.info(`Writing private execution steps to ${resultsDirectory}`);
322
322
  await mkdir(resultsDirectory, { recursive: true });
323
- // Write the client IVC files read by the prover.
323
+ // Write the chonk files read by the prover.
324
324
  const ivcInputsPath = join(resultsDirectory, 'ivc-inputs.msgpack');
325
325
  await writeFile(ivcInputsPath, serializePrivateExecutionSteps(result.executionSteps));
326
326
  await writeFile(join(resultsDirectory, 'logs.json'), JSON.stringify(logs, null, 2));
@@ -46,7 +46,7 @@ async function main() {
46
46
  proxyLogger.createLogger('bb:prover'),
47
47
  );
48
48
 
49
- const userLog = createLogger('client_ivc_flows:data_processor');
49
+ const userLog = createLogger('chonk_flows:data_processor');
50
50
 
51
51
  for (const flow of flows) {
52
52
  userLog.info(`Processing flow ${flow}`);
@@ -84,10 +84,10 @@ async function main() {
84
84
  let provingTime;
85
85
  try {
86
86
  const provingTimer = new Timer();
87
- await prover.createClientIvcProof(privateExecutionSteps);
87
+ await prover.createChonkProof(privateExecutionSteps);
88
88
  provingTime = provingTimer.ms();
89
89
  } catch (e) {
90
- userLog.error(`Failed to generate client ivc proof for ${flow}`, e);
90
+ userLog.error(`Failed to generate chonk proof for ${flow}`, e);
91
91
  error = (e as Error).message;
92
92
  }
93
93
  // Extract logs from this run from the proxy and write them to disk unconditionally