@aztec/aztec 0.0.1-commit.d1cd2107c → 0.0.1-commit.d1da697d6

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.
Files changed (54) hide show
  1. package/dest/cli/aztec_start_action.d.ts +1 -1
  2. package/dest/cli/aztec_start_action.d.ts.map +1 -1
  3. package/dest/cli/aztec_start_action.js +12 -5
  4. package/dest/cli/cmds/compile.d.ts +1 -1
  5. package/dest/cli/cmds/compile.d.ts.map +1 -1
  6. package/dest/cli/cmds/compile.js +4 -1
  7. package/dest/cli/cmds/profile_flamegraph.d.ts +1 -1
  8. package/dest/cli/cmds/profile_flamegraph.d.ts.map +1 -1
  9. package/dest/cli/cmds/profile_flamegraph.js +2 -1
  10. package/dest/cli/cmds/profile_gates.d.ts +1 -1
  11. package/dest/cli/cmds/profile_gates.d.ts.map +1 -1
  12. package/dest/cli/cmds/profile_gates.js +2 -1
  13. package/dest/cli/cmds/standby.d.ts +10 -5
  14. package/dest/cli/cmds/standby.d.ts.map +1 -1
  15. package/dest/cli/cmds/standby.js +33 -14
  16. package/dest/cli/cmds/start_node.d.ts +1 -1
  17. package/dest/cli/cmds/start_node.d.ts.map +1 -1
  18. package/dest/cli/cmds/start_node.js +10 -16
  19. package/dest/cli/cmds/start_prover_agent.d.ts +1 -1
  20. package/dest/cli/cmds/start_prover_agent.d.ts.map +1 -1
  21. package/dest/cli/cmds/start_prover_agent.js +3 -15
  22. package/dest/cli/cmds/start_prover_broker.d.ts +1 -1
  23. package/dest/cli/cmds/start_prover_broker.d.ts.map +1 -1
  24. package/dest/cli/cmds/start_prover_broker.js +7 -1
  25. package/dest/cli/cmds/utils/collect_crate_dirs.d.ts +21 -0
  26. package/dest/cli/cmds/utils/collect_crate_dirs.d.ts.map +1 -0
  27. package/dest/cli/cmds/utils/collect_crate_dirs.js +114 -0
  28. package/dest/cli/cmds/utils/needs_recompile.d.ts +1 -1
  29. package/dest/cli/cmds/utils/needs_recompile.d.ts.map +1 -1
  30. package/dest/cli/cmds/utils/needs_recompile.js +9 -43
  31. package/dest/cli/cmds/utils/warn_if_aztec_version_mismatch.d.ts +4 -0
  32. package/dest/cli/cmds/utils/warn_if_aztec_version_mismatch.d.ts.map +1 -0
  33. package/dest/cli/cmds/utils/warn_if_aztec_version_mismatch.js +41 -0
  34. package/dest/testing/anvil_test_watcher.js +1 -1
  35. package/dest/testing/cheat_codes.js +1 -1
  36. package/dest/testing/epoch_test_settler.d.ts +1 -1
  37. package/dest/testing/epoch_test_settler.d.ts.map +1 -1
  38. package/dest/testing/epoch_test_settler.js +3 -4
  39. package/package.json +33 -34
  40. package/scripts/aztec.sh +1 -1
  41. package/src/cli/aztec_start_action.ts +7 -5
  42. package/src/cli/cmds/compile.ts +5 -1
  43. package/src/cli/cmds/profile_flamegraph.ts +2 -1
  44. package/src/cli/cmds/profile_gates.ts +2 -1
  45. package/src/cli/cmds/standby.ts +37 -16
  46. package/src/cli/cmds/start_node.ts +15 -8
  47. package/src/cli/cmds/start_prover_agent.ts +3 -6
  48. package/src/cli/cmds/start_prover_broker.ts +8 -1
  49. package/src/cli/cmds/utils/collect_crate_dirs.ts +118 -0
  50. package/src/cli/cmds/utils/needs_recompile.ts +8 -49
  51. package/src/cli/cmds/utils/warn_if_aztec_version_mismatch.ts +54 -0
  52. package/src/testing/anvil_test_watcher.ts +1 -1
  53. package/src/testing/cheat_codes.ts +1 -1
  54. package/src/testing/epoch_test_settler.ts +3 -4
@@ -1,6 +1,6 @@
1
- import TOML from '@iarna/toml';
2
- import { readFile, readdir, stat } from 'fs/promises';
3
- import { join, resolve } from 'path';
1
+ import { readdir, stat } from 'fs/promises';
2
+ import { join } from 'path';
3
+ import { collectCrateDirs } from './collect_crate_dirs.js';
4
4
  /**
5
5
  * Returns true if recompilation is needed: either no artifacts exist in target/ or any .nr or Nargo.toml source file
6
6
  * (including path-based dependencies) is newer than the oldest artifact. We compare against the oldest artifact so
@@ -13,7 +13,12 @@ import { join, resolve } from 'path';
13
13
  if (oldestArtifactMs === undefined) {
14
14
  return true;
15
15
  }
16
- const crateDirs = await collectCrateDirs('.');
16
+ // Git deps are pinned to a specific tag in Nargo.toml and nargo always fetches an exact tag, so their contents never
17
+ // change without Nargo.toml itself changing — and Nargo.toml is already tracked as a source file. Hence we can
18
+ // safely ignore checking source files of git deps.
19
+ const crateDirs = await collectCrateDirs('.', {
20
+ skipGitDeps: true
21
+ });
17
22
  return hasNewerSourceFile(crateDirs, oldestArtifactMs);
18
23
  }
19
24
  /**
@@ -41,45 +46,6 @@ import { join, resolve } from 'path';
41
46
  }
42
47
  return oldest;
43
48
  }
44
- /**
45
- * Recursively collects crate directories starting from startCrateDir by following path-based dependencies declared in
46
- * Nargo.toml files. Git-based deps are ignored (they only change when Nargo.toml itself is modified since the deps are
47
- * tagged).
48
- */ async function collectCrateDirs(startCrateDir) {
49
- // We have a set of visited dirs we check against when entering a new dir because we could stumble upon a directory
50
- // multiple times in case multiple deps shared a dep (e.g. dep A and dep B both sharing dep C).
51
- const visited = new Set();
52
- async function visit(crateDir) {
53
- const absDir = resolve(crateDir);
54
- if (visited.has(absDir)) {
55
- return;
56
- }
57
- visited.add(absDir);
58
- // Every dep is its own crate and every crate needs to have Nargo.toml defined in the root so we try to load it and
59
- // error out if it's not the case.
60
- const tomlPath = join(absDir, 'Nargo.toml');
61
- const content = await readFile(tomlPath, 'utf-8').catch(()=>{
62
- throw new Error(`Incorrectly defined dependency. Nargo.toml not found in ${absDir}`);
63
- });
64
- // We parse and iterate over the dependencies
65
- const parsed = TOML.parse(content);
66
- const deps = parsed.dependencies ?? {};
67
- for (const dep of Object.values(deps)){
68
- if (dep && typeof dep === 'object' && typeof dep.path === 'string') {
69
- const depPath = resolve(absDir, dep.path);
70
- const s = await stat(depPath);
71
- if (!s.isDirectory()) {
72
- throw new Error(`Dependency path "${dep.path}" in ${tomlPath} resolves to ${depPath} which is not a directory`);
73
- }
74
- await visit(depPath);
75
- }
76
- }
77
- }
78
- await visit(startCrateDir);
79
- return [
80
- ...visited
81
- ];
82
- }
83
49
  /**
84
50
  * Walks crate dirs looking for .nr and Nargo.toml files newer than thresholdMs. Short-circuits on the first match.
85
51
  */ async function hasNewerSourceFile(crateDirs, thresholdMs) {
@@ -0,0 +1,4 @@
1
+ import type { LogFn } from '@aztec/foundation/log';
2
+ /** Warns if the `aztec` dependency tag in any crate's Nargo.toml doesn't match the CLI version. */
3
+ export declare function warnIfAztecVersionMismatch(log: LogFn, cliVersion?: string): Promise<void>;
4
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2Fybl9pZl9henRlY192ZXJzaW9uX21pc21hdGNoLmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvY2xpL2NtZHMvdXRpbHMvd2Fybl9pZl9henRlY192ZXJzaW9uX21pc21hdGNoLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sS0FBSyxFQUFFLEtBQUssRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBU25ELG1HQUFtRztBQUNuRyx3QkFBc0IsMEJBQTBCLENBQUMsR0FBRyxFQUFFLEtBQUssRUFBRSxVQUFVLENBQUMsRUFBRSxNQUFNLEdBQUcsT0FBTyxDQUFDLElBQUksQ0FBQyxDQTJDL0YifQ==
@@ -0,0 +1 @@
1
+ {"version":3,"file":"warn_if_aztec_version_mismatch.d.ts","sourceRoot":"","sources":["../../../../src/cli/cmds/utils/warn_if_aztec_version_mismatch.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,uBAAuB,CAAC;AASnD,mGAAmG;AACnG,wBAAsB,0BAA0B,CAAC,GAAG,EAAE,KAAK,EAAE,UAAU,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CA2C/F"}
@@ -0,0 +1,41 @@
1
+ import { getPackageVersion } from '@aztec/stdlib/update-checker';
2
+ import TOML from '@iarna/toml';
3
+ import { readFile } from 'fs/promises';
4
+ import { join } from 'path';
5
+ import { collectCrateDirs } from './collect_crate_dirs.js';
6
+ /** Warns if the `aztec` dependency tag in any crate's Nargo.toml doesn't match the CLI version. */ export async function warnIfAztecVersionMismatch(log, cliVersion) {
7
+ const version = cliVersion ?? getPackageVersion();
8
+ if (!version) {
9
+ log(`WARNING: aztec CLI version not found. Skipping dependency compatibility check.`);
10
+ return;
11
+ }
12
+ const expectedTag = `v${version}`;
13
+ const mismatches = [];
14
+ const crateDirs = await collectCrateDirs('.', {
15
+ skipGitDeps: true
16
+ });
17
+ for (const dir of crateDirs){
18
+ const tomlPath = join(dir, 'Nargo.toml');
19
+ let content;
20
+ try {
21
+ content = await readFile(tomlPath, 'utf-8');
22
+ } catch {
23
+ continue;
24
+ }
25
+ const parsed = TOML.parse(content);
26
+ const aztecDep = parsed.dependencies?.aztec;
27
+ if (!aztecDep || typeof aztecDep !== 'object' || typeof aztecDep.tag !== 'string') {
28
+ continue;
29
+ }
30
+ if (aztecDep.tag !== expectedTag) {
31
+ mismatches.push({
32
+ file: tomlPath,
33
+ tag: aztecDep.tag
34
+ });
35
+ }
36
+ }
37
+ if (mismatches.length > 0) {
38
+ const details = mismatches.map((m)=>` ${m.file} (${m.tag})`).join('\n');
39
+ log(`WARNING: Aztec dependency version mismatch detected.\n` + `The following crates have an aztec dependency that does not match the CLI version (${expectedTag}):\n` + `${details}\n\n` + `See https://docs.aztec.network/errors/9 for how to update your dependencies.`);
40
+ }
41
+ }
@@ -101,7 +101,7 @@ import { getAddress, getContract } from 'viem';
101
101
  if (!this.dateProvider) {
102
102
  return;
103
103
  }
104
- const l1Time = await this.cheatcodes.timestamp() * 1000;
104
+ const l1Time = await this.cheatcodes.lastBlockTimestamp() * 1000;
105
105
  const wallTime = this.dateProvider.now();
106
106
  if (l1Time > wallTime) {
107
107
  this.logger.warn(`L1 is ahead of wall time. Syncing wall time to L1 time`);
@@ -55,7 +55,7 @@ import { retryUntil } from '@aztec/foundation/retry';
55
55
  * @param node - The Aztec node used to query if a new block has been mined.
56
56
  * @param duration - The duration to advance time by (in seconds)
57
57
  */ async warpL2TimeAtLeastBy(sequencerClient, node, duration) {
58
- const currentTimestamp = await this.eth.timestamp();
58
+ const currentTimestamp = await this.eth.lastBlockTimestamp();
59
59
  const targetTimestamp = BigInt(currentTimestamp) + BigInt(duration);
60
60
  await this.warpL2TimeAtLeastTo(sequencerClient, node, targetTimestamp);
61
61
  }
@@ -16,4 +16,4 @@ export declare class EpochTestSettler {
16
16
  stop(): Promise<void>;
17
17
  handleEpochReadyToProve(epoch: EpochNumber): Promise<boolean>;
18
18
  }
19
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXBvY2hfdGVzdF9zZXR0bGVyLmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvdGVzdGluZy9lcG9jaF90ZXN0X3NldHRsZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQ0EsT0FBTyxFQUFFLEtBQUssYUFBYSxFQUFvQixNQUFNLHNCQUFzQixDQUFDO0FBQzVFLE9BQU8sRUFBRSxLQUFLLFdBQVcsRUFBYyxNQUFNLGlDQUFpQyxDQUFDO0FBQy9FLE9BQU8sS0FBSyxFQUFFLE1BQU0sRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBRXBELE9BQU8sS0FBSyxFQUFFLFVBQVUsRUFBRSxhQUFhLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUdyRSxxQkFBYSxnQkFBZ0I7SUFPekIsT0FBTyxDQUFDLGFBQWE7SUFDckIsT0FBTyxDQUFDLEdBQUc7SUFDWCxPQUFPLENBQUMsT0FBTztJQVJqQixPQUFPLENBQUMsZ0JBQWdCLENBQW1CO0lBQzNDLE9BQU8sQ0FBQyxZQUFZLENBQUMsQ0FBZTtJQUVwQyxZQUNFLFVBQVUsRUFBRSxhQUFhLEVBQ3pCLGFBQWEsRUFBRSxVQUFVLEVBQ2pCLGFBQWEsRUFBRSxhQUFhLEVBQzVCLEdBQUcsRUFBRSxNQUFNLEVBQ1gsT0FBTyxFQUFFO1FBQUUsaUJBQWlCLEVBQUUsTUFBTSxDQUFDO1FBQUMsY0FBYyxDQUFDLEVBQUUsTUFBTSxDQUFBO0tBQUUsRUFHeEU7SUFFSyxLQUFLLGtCQUlWO0lBRUssSUFBSSxrQkFFVDtJQUVLLHVCQUF1QixDQUFDLEtBQUssRUFBRSxXQUFXLEdBQUcsT0FBTyxDQUFDLE9BQU8sQ0FBQyxDQXFDbEU7Q0FDRiJ9
19
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXBvY2hfdGVzdF9zZXR0bGVyLmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvdGVzdGluZy9lcG9jaF90ZXN0X3NldHRsZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQ0EsT0FBTyxFQUFFLEtBQUssYUFBYSxFQUFvQixNQUFNLHNCQUFzQixDQUFDO0FBQzVFLE9BQU8sRUFBRSxLQUFLLFdBQVcsRUFBYyxNQUFNLGlDQUFpQyxDQUFDO0FBQy9FLE9BQU8sS0FBSyxFQUFFLE1BQU0sRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBRXBELE9BQU8sS0FBSyxFQUFFLFVBQVUsRUFBRSxhQUFhLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUdyRSxxQkFBYSxnQkFBZ0I7SUFPekIsT0FBTyxDQUFDLGFBQWE7SUFDckIsT0FBTyxDQUFDLEdBQUc7SUFDWCxPQUFPLENBQUMsT0FBTztJQVJqQixPQUFPLENBQUMsZ0JBQWdCLENBQW1CO0lBQzNDLE9BQU8sQ0FBQyxZQUFZLENBQUMsQ0FBZTtJQUVwQyxZQUNFLFVBQVUsRUFBRSxhQUFhLEVBQ3pCLGFBQWEsRUFBRSxVQUFVLEVBQ2pCLGFBQWEsRUFBRSxhQUFhLEVBQzVCLEdBQUcsRUFBRSxNQUFNLEVBQ1gsT0FBTyxFQUFFO1FBQUUsaUJBQWlCLEVBQUUsTUFBTSxDQUFDO1FBQUMsY0FBYyxDQUFDLEVBQUUsTUFBTSxDQUFBO0tBQUUsRUFHeEU7SUFFSyxLQUFLLGtCQUlWO0lBRUssSUFBSSxrQkFFVDtJQUVLLHVCQUF1QixDQUFDLEtBQUssRUFBRSxXQUFXLEdBQUcsT0FBTyxDQUFDLE9BQU8sQ0FBQyxDQW9DbEU7Q0FDRiJ9
@@ -1 +1 @@
1
- {"version":3,"file":"epoch_test_settler.d.ts","sourceRoot":"","sources":["../../src/testing/epoch_test_settler.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,aAAa,EAAoB,MAAM,sBAAsB,CAAC;AAC5E,OAAO,EAAE,KAAK,WAAW,EAAc,MAAM,iCAAiC,CAAC;AAC/E,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,uBAAuB,CAAC;AAEpD,OAAO,KAAK,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAGrE,qBAAa,gBAAgB;IAOzB,OAAO,CAAC,aAAa;IACrB,OAAO,CAAC,GAAG;IACX,OAAO,CAAC,OAAO;IARjB,OAAO,CAAC,gBAAgB,CAAmB;IAC3C,OAAO,CAAC,YAAY,CAAC,CAAe;IAEpC,YACE,UAAU,EAAE,aAAa,EACzB,aAAa,EAAE,UAAU,EACjB,aAAa,EAAE,aAAa,EAC5B,GAAG,EAAE,MAAM,EACX,OAAO,EAAE;QAAE,iBAAiB,EAAE,MAAM,CAAC;QAAC,cAAc,CAAC,EAAE,MAAM,CAAA;KAAE,EAGxE;IAEK,KAAK,kBAIV;IAEK,IAAI,kBAET;IAEK,uBAAuB,CAAC,KAAK,EAAE,WAAW,GAAG,OAAO,CAAC,OAAO,CAAC,CAqClE;CACF"}
1
+ {"version":3,"file":"epoch_test_settler.d.ts","sourceRoot":"","sources":["../../src/testing/epoch_test_settler.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,aAAa,EAAoB,MAAM,sBAAsB,CAAC;AAC5E,OAAO,EAAE,KAAK,WAAW,EAAc,MAAM,iCAAiC,CAAC;AAC/E,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,uBAAuB,CAAC;AAEpD,OAAO,KAAK,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAGrE,qBAAa,gBAAgB;IAOzB,OAAO,CAAC,aAAa;IACrB,OAAO,CAAC,GAAG;IACX,OAAO,CAAC,OAAO;IARjB,OAAO,CAAC,gBAAgB,CAAmB;IAC3C,OAAO,CAAC,YAAY,CAAC,CAAe;IAEpC,YACE,UAAU,EAAE,aAAa,EACzB,aAAa,EAAE,UAAU,EACjB,aAAa,EAAE,aAAa,EAC5B,GAAG,EAAE,MAAM,EACX,OAAO,EAAE;QAAE,iBAAiB,EAAE,MAAM,CAAC;QAAC,cAAc,CAAC,EAAE,MAAM,CAAA;KAAE,EAGxE;IAEK,KAAK,kBAIV;IAEK,IAAI,kBAET;IAEK,uBAAuB,CAAC,KAAK,EAAE,WAAW,GAAG,OAAO,CAAC,OAAO,CAAC,CAoClE;CACF"}
@@ -1,7 +1,7 @@
1
1
  import { RollupCheatCodes } from '@aztec/ethereum/test';
2
2
  import { SlotNumber } from '@aztec/foundation/branded-types';
3
3
  import { EpochMonitor } from '@aztec/prover-node';
4
- import { computeL2ToL1MembershipWitnessFromMessagesInEpoch } from '@aztec/stdlib/messaging';
4
+ import { computeEpochOutHash } from '@aztec/stdlib/messaging';
5
5
  export class EpochTestSettler {
6
6
  l2BlockSource;
7
7
  log;
@@ -44,9 +44,8 @@ export class EpochTestSettler {
44
44
  }
45
45
  messagesInEpoch[checkpointIndex].push(block.body.txEffects.map((txEffect)=>txEffect.l2ToL1Msgs));
46
46
  }
47
- const [firstMessage] = messagesInEpoch.flat(3);
48
- if (firstMessage) {
49
- const { root: outHash } = computeL2ToL1MembershipWitnessFromMessagesInEpoch(messagesInEpoch, firstMessage);
47
+ const outHash = computeEpochOutHash(messagesInEpoch);
48
+ if (!outHash.isZero()) {
50
49
  await this.rollupCheatCodes.insertOutbox(epoch, outHash.toBigInt());
51
50
  } else {
52
51
  this.log.info(`No L2 to L1 messages in epoch ${epoch}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/aztec",
3
- "version": "0.0.1-commit.d1cd2107c",
3
+ "version": "0.0.1-commit.d1da697d6",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./dest/index.js",
@@ -28,39 +28,38 @@
28
28
  "../package.common.json"
29
29
  ],
30
30
  "dependencies": {
31
- "@aztec/accounts": "0.0.1-commit.d1cd2107c",
32
- "@aztec/archiver": "0.0.1-commit.d1cd2107c",
33
- "@aztec/aztec-faucet": "0.0.1-commit.d1cd2107c",
34
- "@aztec/aztec-node": "0.0.1-commit.d1cd2107c",
35
- "@aztec/aztec.js": "0.0.1-commit.d1cd2107c",
36
- "@aztec/bb-prover": "0.0.1-commit.d1cd2107c",
37
- "@aztec/bb.js": "0.0.1-commit.d1cd2107c",
38
- "@aztec/blob-client": "0.0.1-commit.d1cd2107c",
39
- "@aztec/bot": "0.0.1-commit.d1cd2107c",
40
- "@aztec/builder": "0.0.1-commit.d1cd2107c",
41
- "@aztec/cli": "0.0.1-commit.d1cd2107c",
42
- "@aztec/constants": "0.0.1-commit.d1cd2107c",
43
- "@aztec/entrypoints": "0.0.1-commit.d1cd2107c",
44
- "@aztec/ethereum": "0.0.1-commit.d1cd2107c",
45
- "@aztec/foundation": "0.0.1-commit.d1cd2107c",
46
- "@aztec/kv-store": "0.0.1-commit.d1cd2107c",
47
- "@aztec/l1-artifacts": "0.0.1-commit.d1cd2107c",
48
- "@aztec/node-lib": "0.0.1-commit.d1cd2107c",
49
- "@aztec/noir-contracts.js": "0.0.1-commit.d1cd2107c",
50
- "@aztec/noir-protocol-circuits-types": "0.0.1-commit.d1cd2107c",
51
- "@aztec/p2p": "0.0.1-commit.d1cd2107c",
52
- "@aztec/p2p-bootstrap": "0.0.1-commit.d1cd2107c",
53
- "@aztec/protocol-contracts": "0.0.1-commit.d1cd2107c",
54
- "@aztec/prover-client": "0.0.1-commit.d1cd2107c",
55
- "@aztec/prover-node": "0.0.1-commit.d1cd2107c",
56
- "@aztec/pxe": "0.0.1-commit.d1cd2107c",
57
- "@aztec/sequencer-client": "0.0.1-commit.d1cd2107c",
58
- "@aztec/stdlib": "0.0.1-commit.d1cd2107c",
59
- "@aztec/telemetry-client": "0.0.1-commit.d1cd2107c",
60
- "@aztec/txe": "0.0.1-commit.d1cd2107c",
61
- "@aztec/validator-ha-signer": "0.0.1-commit.d1cd2107c",
62
- "@aztec/wallets": "0.0.1-commit.d1cd2107c",
63
- "@aztec/world-state": "0.0.1-commit.d1cd2107c",
31
+ "@aztec/accounts": "0.0.1-commit.d1da697d6",
32
+ "@aztec/archiver": "0.0.1-commit.d1da697d6",
33
+ "@aztec/aztec-node": "0.0.1-commit.d1da697d6",
34
+ "@aztec/aztec.js": "0.0.1-commit.d1da697d6",
35
+ "@aztec/bb-prover": "0.0.1-commit.d1da697d6",
36
+ "@aztec/bb.js": "0.0.1-commit.d1da697d6",
37
+ "@aztec/blob-client": "0.0.1-commit.d1da697d6",
38
+ "@aztec/bot": "0.0.1-commit.d1da697d6",
39
+ "@aztec/builder": "0.0.1-commit.d1da697d6",
40
+ "@aztec/cli": "0.0.1-commit.d1da697d6",
41
+ "@aztec/constants": "0.0.1-commit.d1da697d6",
42
+ "@aztec/entrypoints": "0.0.1-commit.d1da697d6",
43
+ "@aztec/ethereum": "0.0.1-commit.d1da697d6",
44
+ "@aztec/foundation": "0.0.1-commit.d1da697d6",
45
+ "@aztec/kv-store": "0.0.1-commit.d1da697d6",
46
+ "@aztec/l1-artifacts": "0.0.1-commit.d1da697d6",
47
+ "@aztec/node-lib": "0.0.1-commit.d1da697d6",
48
+ "@aztec/noir-contracts.js": "0.0.1-commit.d1da697d6",
49
+ "@aztec/noir-protocol-circuits-types": "0.0.1-commit.d1da697d6",
50
+ "@aztec/p2p": "0.0.1-commit.d1da697d6",
51
+ "@aztec/p2p-bootstrap": "0.0.1-commit.d1da697d6",
52
+ "@aztec/protocol-contracts": "0.0.1-commit.d1da697d6",
53
+ "@aztec/prover-client": "0.0.1-commit.d1da697d6",
54
+ "@aztec/prover-node": "0.0.1-commit.d1da697d6",
55
+ "@aztec/pxe": "0.0.1-commit.d1da697d6",
56
+ "@aztec/sequencer-client": "0.0.1-commit.d1da697d6",
57
+ "@aztec/stdlib": "0.0.1-commit.d1da697d6",
58
+ "@aztec/telemetry-client": "0.0.1-commit.d1da697d6",
59
+ "@aztec/txe": "0.0.1-commit.d1da697d6",
60
+ "@aztec/validator-ha-signer": "0.0.1-commit.d1da697d6",
61
+ "@aztec/wallets": "0.0.1-commit.d1da697d6",
62
+ "@aztec/world-state": "0.0.1-commit.d1da697d6",
64
63
  "@iarna/toml": "^2.2.5",
65
64
  "@types/chalk": "^2.2.0",
66
65
  "abitype": "^0.8.11",
package/scripts/aztec.sh CHANGED
@@ -23,7 +23,7 @@ case $cmd in
23
23
  # Attempt to compile, no-op if there are no changes
24
24
  node --no-warnings "$script_dir/../dest/bin/index.js" compile
25
25
 
26
- export LOG_LEVEL="${LOG_LEVEL:-"error;trace:contract_log"}"
26
+ export LOG_LEVEL="${LOG_LEVEL:-"error;trace:contract"}"
27
27
  aztec start --txe --port 8081 &
28
28
  server_pid=$!
29
29
  trap 'kill $server_pid &>/dev/null || true' EXIT
@@ -7,7 +7,7 @@ import {
7
7
  } from '@aztec/foundation/json-rpc/server';
8
8
  import type { LogFn, Logger } from '@aztec/foundation/log';
9
9
  import type { ChainConfig } from '@aztec/stdlib/config';
10
- import { AztecNodeApiSchema } from '@aztec/stdlib/interfaces/client';
10
+ import { AztecNodeAdminApiSchema, AztecNodeApiSchema } from '@aztec/stdlib/interfaces/client';
11
11
  import { getPackageVersion } from '@aztec/stdlib/update-checker';
12
12
  import { getVersioningMiddleware } from '@aztec/stdlib/versioning';
13
13
  import { getOtelJsonRpcPropagationMiddleware } from '@aztec/telemetry-client';
@@ -23,14 +23,14 @@ export async function aztecStart(options: any, userLog: LogFn, debugLogger: Logg
23
23
  const signalHandlers: Array<() => Promise<void>> = [];
24
24
  const services: NamespacedApiHandlers = {};
25
25
  const adminServices: NamespacedApiHandlers = {};
26
+ const packageVersion = getPackageVersion();
26
27
  let config: ChainConfig | undefined = undefined;
27
28
 
28
29
  if (options.localNetwork) {
29
- const cliVersion = getPackageVersion() ?? 'unknown';
30
30
  const localNetwork = extractNamespacedOptions(options, 'local-network');
31
31
  localNetwork.testAccounts = true;
32
32
  userLog(`${splash}\n${github}\n\n`);
33
- userLog(`Setting up Aztec local network ${cliVersion}, please stand by...`);
33
+ userLog(`Setting up Aztec local network ${packageVersion ?? 'unknown'}, please stand by...`);
34
34
 
35
35
  const { node, stop } = await createLocalNetwork(
36
36
  {
@@ -50,6 +50,7 @@ export async function aztecStart(options: any, userLog: LogFn, debugLogger: Logg
50
50
  // Start Node and PXE JSON-RPC server
51
51
  signalHandlers.push(stop);
52
52
  services.node = [node, AztecNodeApiSchema];
53
+ adminServices.node = [node, AztecNodeAdminApiSchema];
53
54
  } else {
54
55
  // Route --prover-node through startNode
55
56
  if (options.proverNode && !options.node) {
@@ -89,13 +90,14 @@ export async function aztecStart(options: any, userLog: LogFn, debugLogger: Logg
89
90
 
90
91
  installSignalHandlers(debugLogger.info, signalHandlers);
91
92
  const versions = getVersions(config);
93
+ const versioningOpts = { packageVersion };
92
94
 
93
95
  // Start the main JSON-RPC server
94
96
  if (Object.entries(services).length > 0) {
95
97
  const rpcServer = createNamespacedSafeJsonRpcServer(services, {
96
98
  http200OnError: false,
97
99
  log: debugLogger,
98
- middlewares: [getOtelJsonRpcPropagationMiddleware(), getVersioningMiddleware(versions)],
100
+ middlewares: [getOtelJsonRpcPropagationMiddleware(), getVersioningMiddleware(versions, versioningOpts)],
99
101
  maxBatchSize: options.rpcMaxBatchSize,
100
102
  maxBodySizeBytes: options.rpcMaxBodySize,
101
103
  });
@@ -105,7 +107,7 @@ export async function aztecStart(options: any, userLog: LogFn, debugLogger: Logg
105
107
 
106
108
  // If there are any admin services, start a separate JSON-RPC server for them
107
109
  if (Object.entries(adminServices).length > 0) {
108
- const adminMiddlewares = [getOtelJsonRpcPropagationMiddleware(), getVersioningMiddleware(versions)];
110
+ const adminMiddlewares = [getOtelJsonRpcPropagationMiddleware(), getVersioningMiddleware(versions, versioningOpts)];
109
111
 
110
112
  // Resolve the admin API key (auto-generated and persisted, or opt-out)
111
113
  const apiKeyResolution = await resolveAdminApiKey(
@@ -1,3 +1,4 @@
1
+ import { findBbBinary } from '@aztec/bb.js';
1
2
  import type { LogFn } from '@aztec/foundation/log';
2
3
 
3
4
  import { execFileSync } from 'child_process';
@@ -8,6 +9,7 @@ import { join } from 'path';
8
9
  import { readArtifactFiles } from './utils/artifacts.js';
9
10
  import { needsRecompile } from './utils/needs_recompile.js';
10
11
  import { run } from './utils/spawn.js';
12
+ import { warnIfAztecVersionMismatch } from './utils/warn_if_aztec_version_mismatch.js';
11
13
 
12
14
  /** Returns paths to contract artifacts in the target directory. */
13
15
  async function collectContractArtifacts(): Promise<string[]> {
@@ -138,13 +140,15 @@ async function checkNoTestsInContracts(nargo: string, log: LogFn): Promise<void>
138
140
 
139
141
  /** Compiles Aztec Noir contracts and postprocesses artifacts. */
140
142
  async function compileAztecContract(nargoArgs: string[], log: LogFn): Promise<void> {
143
+ await warnIfAztecVersionMismatch(log);
144
+
141
145
  if (!(await needsRecompile())) {
142
146
  log('No source changes detected, skipping compilation.');
143
147
  return;
144
148
  }
145
149
 
146
150
  const nargo = process.env.NARGO ?? 'nargo';
147
- const bb = process.env.BB ?? 'bb';
151
+ const bb = process.env.BB ?? findBbBinary() ?? 'bb';
148
152
 
149
153
  await run(nargo, ['compile', ...nargoArgs]);
150
154
 
@@ -1,3 +1,4 @@
1
+ import { findBbBinary } from '@aztec/bb.js';
1
2
  import type { LogFn } from '@aztec/foundation/log';
2
3
 
3
4
  import { readFile, rename, rm, writeFile } from 'fs/promises';
@@ -33,7 +34,7 @@ export async function profileFlamegraph(artifactPath: string, functionName: stri
33
34
  await writeFile(functionArtifact, makeFunctionArtifact(artifact, func));
34
35
 
35
36
  const profiler = process.env.PROFILER_PATH ?? 'noir-profiler';
36
- const bb = process.env.BB ?? 'bb';
37
+ const bb = process.env.BB ?? findBbBinary() ?? 'bb';
37
38
 
38
39
  await run(profiler, [
39
40
  'gates',
@@ -1,3 +1,4 @@
1
+ import { findBbBinary } from '@aztec/bb.js';
1
2
  import { asyncPool } from '@aztec/foundation/async-pool';
2
3
  import type { LogFn } from '@aztec/foundation/log';
3
4
 
@@ -32,7 +33,7 @@ async function getGateCount(bb: string, artifactPath: string): Promise<number> {
32
33
 
33
34
  /** Profiles all compiled artifacts in a target directory and prints gate counts. */
34
35
  export async function profileGates(targetDir: string, log: LogFn): Promise<void> {
35
- const bb = process.env.BB ?? 'bb';
36
+ const bb = process.env.BB ?? findBbBinary() ?? 'bb';
36
37
  const { artifacts, tmpDir } = await discoverArtifacts(targetDir);
37
38
 
38
39
  if (artifacts.length === 0) {
@@ -35,10 +35,33 @@ export async function computeExpectedGenesisRoot(config: GenesisStateConfig, use
35
35
  return { genesisArchiveRoot, prefilledPublicData };
36
36
  }
37
37
 
38
+ async function checkRollupCompatibility(
39
+ rollup: RollupContract,
40
+ expected: { genesisArchiveRoot: Fr; vkTreeRoot: Fr; protocolContractsHash: Fr },
41
+ ): Promise<string[]> {
42
+ const mismatches: string[] = [];
43
+ const [l1Genesis, l1Vk, l1Protocol] = await Promise.all([
44
+ rollup.getGenesisArchiveTreeRoot(),
45
+ rollup.getVkTreeRoot(),
46
+ rollup.getProtocolContractsHash(),
47
+ ]);
48
+ if (!l1Genesis.equals(expected.genesisArchiveRoot)) {
49
+ mismatches.push(`genesis archive root (expected ${expected.genesisArchiveRoot}, got ${l1Genesis})`);
50
+ }
51
+ if (!l1Vk.equals(expected.vkTreeRoot)) {
52
+ mismatches.push(`VK tree root (expected ${expected.vkTreeRoot}, got ${l1Vk})`);
53
+ }
54
+ if (!l1Protocol.equals(expected.protocolContractsHash)) {
55
+ mismatches.push(`protocol contracts hash (expected ${expected.protocolContractsHash}, got ${l1Protocol})`);
56
+ }
57
+ return mismatches;
58
+ }
59
+
38
60
  /**
39
- * Waits until the canonical rollup's genesis archive root matches the expected local genesis root.
40
- * If the rollup is not yet compatible (e.g. during L1 contract upgrades), enters standby mode:
41
- * starts a lightweight HTTP server for K8s liveness probes and polls every 60s until a compatible rollup appears.
61
+ * Waits until the canonical rollup's genesis archive root, VK tree root, and protocol contracts hash
62
+ * all match the expected local values. If the rollup is not yet compatible (e.g. during L1 contract upgrades),
63
+ * enters standby mode: starts a lightweight HTTP server for K8s liveness probes and polls every 60s
64
+ * until a compatible rollup appears.
42
65
  */
43
66
  export async function waitForCompatibleRollup(
44
67
  config: {
@@ -47,7 +70,7 @@ export async function waitForCompatibleRollup(
47
70
  l1Contracts: { registryAddress: EthAddress };
48
71
  rollupVersion?: number;
49
72
  },
50
- expectedGenesisRoot: Fr,
73
+ expected: { genesisArchiveRoot: Fr; vkTreeRoot: Fr; protocolContractsHash: Fr },
51
74
  port: number | undefined,
52
75
  userLog: LogFn,
53
76
  ): Promise<void> {
@@ -58,21 +81,19 @@ export async function waitForCompatibleRollup(
58
81
  const rollupAddress = await registry.getRollupAddress(rollupVersion);
59
82
  const rollup = new RollupContract(publicClient, rollupAddress.toString());
60
83
 
61
- let l1GenesisRoot: Fr;
84
+ let mismatches: string[];
62
85
  try {
63
- l1GenesisRoot = await rollup.getGenesisArchiveTreeRoot();
86
+ mismatches = await checkRollupCompatibility(rollup, expected);
64
87
  } catch (err: any) {
65
- throw new Error(
66
- `Could not retrieve genesis archive root from canonical rollup at ${rollupAddress}: ${err.message}`,
67
- );
88
+ throw new Error(`Could not retrieve rollup config from canonical rollup at ${rollupAddress}: ${err.message}`);
68
89
  }
69
90
 
70
- if (l1GenesisRoot.equals(expectedGenesisRoot)) {
91
+ if (mismatches.length === 0) {
71
92
  return;
72
93
  }
73
94
 
74
95
  userLog(
75
- `Genesis root mismatch: expected ${expectedGenesisRoot}, got ${l1GenesisRoot} from rollup at ${rollupAddress}. ` +
96
+ `Rollup at ${rollupAddress} is incompatible: ${mismatches.join('; ')}. ` +
76
97
  `Entering standby mode. Will poll every ${ROLLUP_POLL_INTERVAL_S}s for a compatible rollup...`,
77
98
  );
78
99
 
@@ -85,20 +106,20 @@ export async function waitForCompatibleRollup(
85
106
  const currentRollupAddress = await registry.getRollupAddress(rollupVersion);
86
107
  const currentRollup = new RollupContract(publicClient, currentRollupAddress.toString());
87
108
 
88
- let currentGenesisRoot: Fr;
109
+ let currentMismatches: string[];
89
110
  try {
90
- currentGenesisRoot = await currentRollup.getGenesisArchiveTreeRoot();
111
+ currentMismatches = await checkRollupCompatibility(currentRollup, expected);
91
112
  } catch {
92
- userLog(`Failed to fetch genesis root from rollup at ${currentRollupAddress}. Retrying...`);
113
+ userLog(`Failed to fetch rollup config from rollup at ${currentRollupAddress}. Retrying...`);
93
114
  return undefined;
94
115
  }
95
116
 
96
- if (currentGenesisRoot.equals(expectedGenesisRoot)) {
117
+ if (currentMismatches.length === 0) {
97
118
  userLog(`Compatible rollup found at ${currentRollupAddress}. Exiting standby mode.`);
98
119
  return true;
99
120
  }
100
121
 
101
- userLog(`Still waiting. Rollup at ${currentRollupAddress} has genesis root ${currentGenesisRoot}.`);
122
+ userLog(`Still waiting. Rollup at ${currentRollupAddress}: ${currentMismatches.join('; ')}.`);
102
123
  return undefined;
103
124
  },
104
125
  'compatible rollup',
@@ -7,7 +7,13 @@ import { type NetworkNames, SecretValue } from '@aztec/foundation/config';
7
7
  import type { NamespacedApiHandlers } from '@aztec/foundation/json-rpc/server';
8
8
  import { Agent, makeUndiciFetch } from '@aztec/foundation/json-rpc/undici';
9
9
  import type { LogFn } from '@aztec/foundation/log';
10
- import { ProvingJobConsumerSchema, createProvingJobBrokerClient } from '@aztec/prover-client/broker';
10
+ import { getVKTreeRoot } from '@aztec/noir-protocol-circuits-types/vk-tree';
11
+ import { protocolContractsHash } from '@aztec/protocol-contracts';
12
+ import {
13
+ ProvingJobConsumerSchema,
14
+ createProvingJobBrokerClient,
15
+ proverBrokerBackoff,
16
+ } from '@aztec/prover-client/broker';
11
17
  import { type CliPXEOptions, type PXEConfig, allPxeConfigMappings } from '@aztec/pxe/config';
12
18
  import { AztecNodeAdminApiSchema, AztecNodeApiSchema } from '@aztec/stdlib/interfaces/client';
13
19
  import { P2PApiSchema, ProverNodeApiSchema, type ProvingJobBroker } from '@aztec/stdlib/interfaces/server';
@@ -63,12 +69,8 @@ export async function startNode(
63
69
  if (nodeConfig.proverBrokerUrl) {
64
70
  // at 1TPS we'd enqueue ~1k chonk verifier proofs and ~1k AVM proofs immediately
65
71
  // set a lower connection limit such that we don't overload the server
66
- // Keep retrying up to 30s
67
- const fetch = makeTracedFetch(
68
- [1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3],
69
- false,
70
- makeUndiciFetch(new Agent({ connections: 100 })),
71
- );
72
+ // Retry indefinitely until the epoch proving times out and the chain reorgs
73
+ const fetch = makeTracedFetch(proverBrokerBackoff, false, makeUndiciFetch(new Agent({ connections: 100 })));
72
74
  broker = createProvingJobBrokerClient(nodeConfig.proverBrokerUrl, getVersions(nodeConfig), fetch);
73
75
  } else if (options.proverBroker) {
74
76
  ({ broker } = await startProverBroker(options, signalHandlers, services, userLog));
@@ -92,7 +94,12 @@ export async function startNode(
92
94
 
93
95
  // Wait for a compatible rollup before proceeding with full L1 config fetch.
94
96
  // This prevents crashes when the canonical rollup hasn't been upgraded yet.
95
- await waitForCompatibleRollup(nodeConfig, genesisArchiveRoot, options.port, userLog);
97
+ await waitForCompatibleRollup(
98
+ nodeConfig,
99
+ { genesisArchiveRoot, vkTreeRoot: getVKTreeRoot(), protocolContractsHash },
100
+ options.port,
101
+ userLog,
102
+ );
96
103
 
97
104
  const { addresses, config } = await getL1Config(
98
105
  nodeConfig.l1Contracts.registryAddress,
@@ -9,6 +9,7 @@ import {
9
9
  createProofStore,
10
10
  createProvingJobBrokerClient,
11
11
  proverAgentConfigMappings,
12
+ proverBrokerBackoff,
12
13
  } from '@aztec/prover-client/broker';
13
14
  import { getProverNodeAgentConfigFromEnv } from '@aztec/prover-node';
14
15
  import { ProverAgentApiSchema } from '@aztec/stdlib/interfaces/server';
@@ -45,12 +46,8 @@ export async function startProverAgent(
45
46
 
46
47
  await preloadCrsDataForServerSideProving(config, userLog);
47
48
 
48
- const fetch = makeTracedFetch(
49
- // retry connections every 3s, up to 30s before giving up
50
- [1, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3],
51
- false,
52
- makeUndiciFetch(new Agent({ connections: 10 })),
53
- );
49
+ // Retry indefinitely until the epoch proving times out and the chain reorgs
50
+ const fetch = makeTracedFetch(proverBrokerBackoff, false, makeUndiciFetch(new Agent({ connections: 10 })));
54
51
  const broker = createProvingJobBrokerClient(config.proverBrokerUrl, getVersions(), fetch);
55
52
 
56
53
  const telemetry = await initTelemetryClient(extractRelevantOptions(options, telemetryClientConfigMappings, 'tel'));
@@ -2,6 +2,8 @@ import { getL1Config } from '@aztec/cli/config';
2
2
  import { getGenesisStateConfigEnvVars } from '@aztec/ethereum/config';
3
3
  import type { NamespacedApiHandlers } from '@aztec/foundation/json-rpc/server';
4
4
  import type { LogFn } from '@aztec/foundation/log';
5
+ import { getVKTreeRoot } from '@aztec/noir-protocol-circuits-types/vk-tree';
6
+ import { protocolContractsHash } from '@aztec/protocol-contracts';
5
7
  import {
6
8
  type ProverBrokerConfig,
7
9
  ProvingJobBrokerSchema,
@@ -38,7 +40,12 @@ export async function startProverBroker(
38
40
 
39
41
  const genesisConfig = getGenesisStateConfigEnvVars();
40
42
  const { genesisArchiveRoot } = await computeExpectedGenesisRoot(genesisConfig, userLog);
41
- await waitForCompatibleRollup(config, genesisArchiveRoot, options.port, userLog);
43
+ await waitForCompatibleRollup(
44
+ config,
45
+ { genesisArchiveRoot, vkTreeRoot: getVKTreeRoot(), protocolContractsHash },
46
+ options.port,
47
+ userLog,
48
+ );
42
49
 
43
50
  const { addresses, config: rollupConfig } = await getL1Config(
44
51
  config.l1Contracts.registryAddress,