@aztec/aztec 0.0.1-commit.b2a5d0dd1 → 0.0.1-commit.b3d3157a

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 (92) hide show
  1. package/dest/bin/index.js +1 -1
  2. package/dest/cli/aztec_start_action.d.ts +1 -1
  3. package/dest/cli/aztec_start_action.d.ts.map +1 -1
  4. package/dest/cli/aztec_start_action.js +10 -6
  5. package/dest/cli/aztec_start_options.d.ts +1 -1
  6. package/dest/cli/aztec_start_options.d.ts.map +1 -1
  7. package/dest/cli/aztec_start_options.js +1 -14
  8. package/dest/cli/cmds/compile.d.ts +1 -1
  9. package/dest/cli/cmds/compile.d.ts.map +1 -1
  10. package/dest/cli/cmds/compile.js +12 -1
  11. package/dest/cli/cmds/profile.d.ts +1 -1
  12. package/dest/cli/cmds/profile.d.ts.map +1 -1
  13. package/dest/cli/cmds/profile.js +1 -1
  14. package/dest/cli/cmds/profile_gates.d.ts +2 -2
  15. package/dest/cli/cmds/profile_gates.d.ts.map +1 -1
  16. package/dest/cli/cmds/profile_gates.js +21 -3
  17. package/dest/cli/cmds/standby.d.ts +2 -4
  18. package/dest/cli/cmds/standby.d.ts.map +1 -1
  19. package/dest/cli/cmds/standby.js +1 -1
  20. package/dest/cli/cmds/start_bot.d.ts +1 -1
  21. package/dest/cli/cmds/start_bot.d.ts.map +1 -1
  22. package/dest/cli/cmds/start_bot.js +3 -3
  23. package/dest/cli/cmds/start_node.d.ts +1 -1
  24. package/dest/cli/cmds/start_node.d.ts.map +1 -1
  25. package/dest/cli/cmds/start_node.js +3 -5
  26. package/dest/cli/cmds/start_prover_agent.js +2 -2
  27. package/dest/cli/cmds/start_prover_broker.d.ts +1 -1
  28. package/dest/cli/cmds/start_prover_broker.d.ts.map +1 -1
  29. package/dest/cli/cmds/start_prover_broker.js +11 -8
  30. package/dest/cli/cmds/start_txe.d.ts +2 -2
  31. package/dest/cli/cmds/start_txe.d.ts.map +1 -1
  32. package/dest/cli/cmds/start_txe.js +6 -5
  33. package/dest/cli/cmds/utils/warn_if_aztec_version_mismatch.d.ts +1 -1
  34. package/dest/cli/cmds/utils/warn_if_aztec_version_mismatch.d.ts.map +1 -1
  35. package/dest/cli/cmds/utils/warn_if_aztec_version_mismatch.js +2 -3
  36. package/dest/cli/util.js +7 -5
  37. package/dest/local-network/auth_registry.d.ts +5 -0
  38. package/dest/local-network/auth_registry.d.ts.map +1 -0
  39. package/dest/local-network/auth_registry.js +17 -0
  40. package/dest/local-network/banana_fpc.d.ts +3 -2
  41. package/dest/local-network/banana_fpc.d.ts.map +1 -1
  42. package/dest/local-network/banana_fpc.js +11 -7
  43. package/dest/local-network/local-network.d.ts +3 -25
  44. package/dest/local-network/local-network.d.ts.map +1 -1
  45. package/dest/local-network/local-network.js +33 -11
  46. package/dest/testing/anvil_test_watcher.d.ts +9 -1
  47. package/dest/testing/anvil_test_watcher.d.ts.map +1 -1
  48. package/dest/testing/anvil_test_watcher.js +28 -0
  49. package/dest/testing/cheat_codes.d.ts +10 -5
  50. package/dest/testing/cheat_codes.d.ts.map +1 -1
  51. package/dest/testing/cheat_codes.js +40 -6
  52. package/dest/testing/epoch_test_settler.d.ts +1 -1
  53. package/dest/testing/epoch_test_settler.d.ts.map +1 -1
  54. package/dest/testing/epoch_test_settler.js +6 -4
  55. package/package.json +34 -33
  56. package/scripts/add_crate.sh +11 -60
  57. package/scripts/aztec.sh +2 -2
  58. package/scripts/init.sh +5 -5
  59. package/scripts/new.sh +2 -2
  60. package/scripts/setup_workspace.sh +3 -2
  61. package/scripts/templates/blank/contract/Nargo.toml +6 -0
  62. package/scripts/templates/blank/contract/src/main.nr +10 -0
  63. package/scripts/templates/blank/test/Nargo.toml +7 -0
  64. package/scripts/templates/blank/test/src/lib.nr +11 -0
  65. package/scripts/templates/counter/contract/Nargo.toml +7 -0
  66. package/scripts/templates/counter/contract/src/main.nr +48 -0
  67. package/scripts/templates/counter/test/Nargo.toml +7 -0
  68. package/scripts/templates/counter/test/src/lib.nr +32 -0
  69. package/src/bin/index.ts +1 -1
  70. package/src/cli/aztec_start_action.ts +11 -6
  71. package/src/cli/aztec_start_options.ts +2 -20
  72. package/src/cli/cmds/compile.ts +15 -1
  73. package/src/cli/cmds/profile.ts +2 -1
  74. package/src/cli/cmds/profile_gates.ts +20 -4
  75. package/src/cli/cmds/standby.ts +2 -2
  76. package/src/cli/cmds/start_bot.ts +3 -5
  77. package/src/cli/cmds/start_node.ts +3 -5
  78. package/src/cli/cmds/start_prover_agent.ts +2 -2
  79. package/src/cli/cmds/start_prover_broker.ts +10 -11
  80. package/src/cli/cmds/start_txe.ts +7 -5
  81. package/src/cli/cmds/utils/warn_if_aztec_version_mismatch.ts +2 -3
  82. package/src/cli/util.ts +7 -7
  83. package/src/local-network/auth_registry.ts +19 -0
  84. package/src/local-network/banana_fpc.ts +12 -8
  85. package/src/local-network/local-network.ts +34 -8
  86. package/src/testing/anvil_test_watcher.ts +32 -0
  87. package/src/testing/cheat_codes.ts +54 -7
  88. package/src/testing/epoch_test_settler.ts +3 -4
  89. package/dest/cli/cmds/start_archiver.d.ts +0 -9
  90. package/dest/cli/cmds/start_archiver.d.ts.map +0 -1
  91. package/dest/cli/cmds/start_archiver.js +0 -50
  92. package/src/cli/cmds/start_archiver.ts +0 -56
@@ -2,10 +2,11 @@
2
2
  set -euo pipefail
3
3
 
4
4
  # Creates a contract+test crate pair and adds them to an existing workspace.
5
- # Usage: add_crate.sh <crate_name>
5
+ # Usage: add_crate.sh <crate_name> <template>
6
6
  # Must be called from a workspace root that already has Nargo.toml with [workspace].
7
7
 
8
8
  crate_name=$1
9
+ template=$2
9
10
 
10
11
  if [ -z "$crate_name" ]; then
11
12
  echo "Error: crate name is required"
@@ -31,72 +32,22 @@ fi
31
32
 
32
33
  # Get the actual aztec version for the git tag.
33
34
  AZTEC_VERSION=$(jq -r '.version' $(dirname $0)/../package.json)
35
+ TEMPLATE_DIR="$(dirname $0)/templates/$template"
34
36
 
35
- # Create contract crate
36
- mkdir -p "$contract_dir/src"
37
- cat > "$contract_dir/Nargo.toml" << CEOF
38
- [package]
39
- name = "${crate_name}_contract"
40
- type = "contract"
41
-
42
- [dependencies]
43
- aztec = { git="https://github.com/AztecProtocol/aztec-nr", tag="v${AZTEC_VERSION}", directory="aztec" }
44
- CEOF
45
-
46
- cat > "$contract_dir/src/main.nr" << 'EOF'
47
- use aztec::macros::aztec;
48
-
49
- #[aztec]
50
- pub contract Main {
51
- use aztec::macros::functions::{external, initializer};
52
-
53
- #[initializer]
54
- #[external("private")]
55
- fn constructor() {}
56
- }
57
- EOF
58
-
59
- # Create test crate
60
- mkdir -p "$test_dir/src"
61
- cat > "$test_dir/Nargo.toml" << TEOF
62
- [package]
63
- name = "${crate_name}_test"
64
- type = "lib"
65
-
66
- [dependencies]
67
- aztec = { git="https://github.com/AztecProtocol/aztec-nr", tag="v${AZTEC_VERSION}", directory="aztec" }
68
- ${crate_name}_contract = { path = "../${contract_dir}" }
69
- TEOF
70
-
71
- cat > "$test_dir/src/lib.nr" << 'NOIR'
72
- use aztec::test::helpers::test_environment::TestEnvironment;
73
- use __CRATE_NAME___contract::Main;
74
-
75
- #[test]
76
- unconstrained fn test_constructor() {
77
- let mut env = TestEnvironment::new();
78
- let deployer = env.create_light_account();
79
-
80
- // Deploy the contract with the default constructor:
81
- let contract_address = env.deploy("@__CRATE_NAME___contract/Main").with_private_initializer(
82
- deployer,
83
- Main::interface().constructor(),
84
- );
85
-
86
- // Deploy without an initializer:
87
- let contract_address = env.deploy("@__CRATE_NAME___contract/Main").without_initializer();
88
- }
89
- NOIR
90
-
91
- sed -i "s/__CRATE_NAME__/${crate_name}/g" "$test_dir/src/lib.nr"
37
+ # Copy template crates and substitute placeholders
38
+ cp -r "$TEMPLATE_DIR/contract" "$contract_dir"
39
+ cp -r "$TEMPLATE_DIR/test" "$test_dir"
40
+ # Use perl -i for portability across os.
41
+ find "$contract_dir" "$test_dir" -type f -exec \
42
+ perl -i -pe "s/__CRATE_NAME__/${crate_name}/g; s/__AZTEC_VERSION__/${AZTEC_VERSION}/g" {} +
92
43
 
93
44
  # Add members to workspace Nargo.toml
94
45
  if grep -q 'members\s*=\s*\[\s*\]' Nargo.toml; then
95
46
  # Empty array: members = []
96
- sed -i "s|members\s*=\s*\[\s*\]|members = [\"${contract_dir}\", \"${test_dir}\"]|" Nargo.toml
47
+ perl -i -pe "s|members\s*=\s*\[\s*\]|members = [\"${contract_dir}\", \"${test_dir}\"]|" Nargo.toml
97
48
  else
98
49
  # Non-empty array: add before closing ]
99
- sed -i "s|\(members\s*=\s*\[.*\)\]|\1, \"${contract_dir}\", \"${test_dir}\"]|" Nargo.toml
50
+ perl -i -pe "s|(members\s*=\s*\[.*)\]|\1, \"${contract_dir}\", \"${test_dir}\"]|" Nargo.toml
100
51
  fi
101
52
 
102
53
  echo "Created crates '${contract_dir}' and '${test_dir}'"
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"}"
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
@@ -33,7 +33,7 @@ case $cmd in
33
33
  fi
34
34
  while ! nc -z 127.0.0.1 8081 &>/dev/null; do sleep 0.2; done
35
35
  export NARGO_FOREIGN_CALL_TIMEOUT=300000
36
- nargo test --silence-warnings --oracle-resolver http://127.0.0.1:8081 --test-threads 16 "$@"
36
+ nargo test --silence-warnings --oracle-resolver http://127.0.0.1:8081 "$@"
37
37
  ;;
38
38
  start)
39
39
  if [ "${1:-}" == "--local-network" ]; then
package/scripts/init.sh CHANGED
@@ -16,11 +16,11 @@ Options:
16
16
  -h, --help Print help
17
17
 
18
18
  This command creates a new Aztec Noir project in the current directory with
19
- a workspace containing a contract crate and a test crate, and automatically
20
- adds the Aztec.nr dependency to both.
19
+ a workspace containing a Counter contract example with tests. The Counter
20
+ demonstrates private state, private functions, and utility reads.
21
21
 
22
- If a workspace already exists in the current directory, use
23
- 'aztec new <name>' instead to add another contract.
22
+ Use 'aztec new <name>' to create a blank contract project, or to add another
23
+ contract to an existing workspace.
24
24
  EOF
25
25
  exit 0
26
26
  ;;
@@ -36,4 +36,4 @@ done
36
36
  package_name="$(basename $(pwd))"
37
37
 
38
38
  echo "Initializing Aztec contract project..."
39
- $script_path/setup_workspace.sh "$package_name"
39
+ $script_path/setup_workspace.sh "$package_name" counter
package/scripts/new.sh CHANGED
@@ -68,7 +68,7 @@ fi
68
68
  if [ -f "Nargo.toml" ] && grep -q '\[workspace\]' Nargo.toml; then
69
69
  # Add crate pair to existing workspace
70
70
  echo "Adding contract '$package_name' to existing workspace..."
71
- $script_path/add_crate.sh "$package_name"
71
+ $script_path/add_crate.sh "$package_name" blank
72
72
  else
73
73
  # Create new workspace
74
74
  if [ -d "$project_path" ] && [ "$(ls -A $project_path 2>/dev/null)" ]; then
@@ -79,5 +79,5 @@ else
79
79
  echo "Creating new Aztec contract project at $project_path..."
80
80
  mkdir -p "$project_path"
81
81
  cd "$project_path"
82
- $script_path/setup_workspace.sh "$package_name"
82
+ $script_path/setup_workspace.sh "$package_name" blank
83
83
  fi
@@ -2,10 +2,11 @@
2
2
  set -euo pipefail
3
3
 
4
4
  # Creates an Aztec contract workspace with a contract crate and a test crate.
5
- # Usage: setup_workspace.sh <package_name>
5
+ # Usage: setup_workspace.sh <package_name> <template>
6
6
  # Must be called from the workspace root directory.
7
7
 
8
8
  package_name=$1
9
+ template=$2
9
10
  script_path=$(realpath $(dirname "$0"))
10
11
 
11
12
  if [ -z "$package_name" ]; then
@@ -26,7 +27,7 @@ members = []
26
27
  EOF
27
28
 
28
29
  # Create the first crate pair
29
- $script_path/add_crate.sh "$package_name"
30
+ $script_path/add_crate.sh "$package_name" "$template"
30
31
 
31
32
  # Create README
32
33
  cat > README.md << REOF
@@ -0,0 +1,6 @@
1
+ [package]
2
+ name = "__CRATE_NAME___contract"
3
+ type = "contract"
4
+
5
+ [dependencies]
6
+ aztec = { git="https://github.com/AztecProtocol/aztec-nr", tag="v__AZTEC_VERSION__", directory="aztec" }
@@ -0,0 +1,10 @@
1
+ use aztec::macros::aztec;
2
+
3
+ #[aztec]
4
+ pub contract Main {
5
+ use aztec::macros::functions::{external, initializer};
6
+
7
+ #[initializer]
8
+ #[external("private")]
9
+ fn constructor() {}
10
+ }
@@ -0,0 +1,7 @@
1
+ [package]
2
+ name = "__CRATE_NAME___test"
3
+ type = "lib"
4
+
5
+ [dependencies]
6
+ aztec = { git="https://github.com/AztecProtocol/aztec-nr", tag="v__AZTEC_VERSION__", directory="aztec" }
7
+ __CRATE_NAME___contract = { path = "../__CRATE_NAME___contract" }
@@ -0,0 +1,11 @@
1
+ use aztec::test::helpers::test_environment::TestEnvironment;
2
+ use __CRATE_NAME___contract::Main;
3
+
4
+ #[test]
5
+ unconstrained fn test_constructor() {
6
+ let mut env = TestEnvironment::new();
7
+ let deployer = env.create_light_account();
8
+
9
+ let _contract_address = env.deploy("@__CRATE_NAME___contract/Main")
10
+ .with_private_initializer(deployer, Main::interface().constructor());
11
+ }
@@ -0,0 +1,7 @@
1
+ [package]
2
+ name = "__CRATE_NAME___contract"
3
+ type = "contract"
4
+
5
+ [dependencies]
6
+ aztec = { git="https://github.com/AztecProtocol/aztec-nr", tag="v__AZTEC_VERSION__", directory="aztec" }
7
+ balance_set = { git="https://github.com/AztecProtocol/aztec-nr", tag="v__AZTEC_VERSION__", directory="balance-set" }
@@ -0,0 +1,48 @@
1
+ use aztec::macros::aztec;
2
+
3
+ #[aztec]
4
+ pub contract Counter {
5
+ use aztec::{
6
+ macros::{functions::{external, initializer}, storage::storage},
7
+ messages::message_delivery::MessageDelivery,
8
+ protocol::address::AztecAddress,
9
+ state_vars::Owned,
10
+ };
11
+ use balance_set::BalanceSet;
12
+
13
+ #[storage]
14
+ struct Storage<Context> {
15
+ // Each owner has their own counter, stored as private encrypted notes.
16
+ // Owned: dictates who will receive the encrypted notes.
17
+ // BalanceSet: manages the underlying notes, providing add/sub/balance_of.
18
+ counters: Owned<BalanceSet<Context>, Context>,
19
+ }
20
+
21
+ // Sets the owner's counter to an initial value.
22
+ //
23
+ // #[external("private")]: executes on the user's device, inputs are hidden from everyone.
24
+ #[initializer]
25
+ #[external("private")]
26
+ fn constructor(initial_value: u128, owner: AztecAddress) {
27
+ // Delivers the note to the recipient onchain with provable correctness.
28
+ // Without delivery, the recipient can't find or decrypt the note.
29
+ self.storage.counters.at(owner).add(initial_value).deliver(
30
+ MessageDelivery::onchain_constrained(),
31
+ );
32
+ }
33
+
34
+ // Adds 1 to the owner's counter.
35
+ #[external("private")]
36
+ fn increment(owner: AztecAddress) {
37
+ self.storage.counters.at(owner).add(1).deliver(MessageDelivery::onchain_constrained());
38
+ }
39
+
40
+ // Returns the current value of the owner's counter.
41
+ //
42
+ // #[external("utility")]: runs off-chain, no transaction created, no cost.
43
+ // Only the owner can decrypt and read their own counter.
44
+ #[external("utility")]
45
+ unconstrained fn get_counter(owner: AztecAddress) -> u128 {
46
+ self.storage.counters.at(owner).balance_of()
47
+ }
48
+ }
@@ -0,0 +1,7 @@
1
+ [package]
2
+ name = "__CRATE_NAME___test"
3
+ type = "lib"
4
+
5
+ [dependencies]
6
+ aztec = { git="https://github.com/AztecProtocol/aztec-nr", tag="v__AZTEC_VERSION__", directory="aztec" }
7
+ __CRATE_NAME___contract = { path = "../__CRATE_NAME___contract" }
@@ -0,0 +1,32 @@
1
+ use aztec::{protocol::address::AztecAddress, test::helpers::test_environment::TestEnvironment};
2
+ use __CRATE_NAME___contract::Counter;
3
+
4
+ unconstrained fn setup(initial_value: u128) -> (TestEnvironment, AztecAddress, AztecAddress) {
5
+ let mut env = TestEnvironment::new();
6
+ let owner = env.create_light_account();
7
+
8
+ let contract_address = env.deploy("@__CRATE_NAME___contract/Counter")
9
+ .with_private_initializer(owner, Counter::interface().constructor(initial_value, owner));
10
+
11
+ (env, contract_address, owner)
12
+ }
13
+
14
+ #[test]
15
+ unconstrained fn test_constructor() {
16
+ let initial_value = 5;
17
+ let (env, contract_address, owner) = setup(initial_value);
18
+
19
+ let counter = env.execute_utility(Counter::at(contract_address).get_counter(owner));
20
+ assert_eq(counter, initial_value);
21
+ }
22
+
23
+ #[test]
24
+ unconstrained fn test_increment() {
25
+ let initial_value = 5;
26
+ let (mut env, contract_address, owner) = setup(initial_value);
27
+
28
+ env.call_private(owner, Counter::at(contract_address).increment(owner));
29
+
30
+ let counter = env.execute_utility(Counter::at(contract_address).get_counter(owner));
31
+ assert_eq(counter, initial_value + 1);
32
+ }
package/src/bin/index.ts CHANGED
@@ -47,7 +47,7 @@ async function main() {
47
47
  await enrichEnvironmentWithNetworkConfig(networkName);
48
48
  enrichEnvironmentWithChainName(networkName);
49
49
 
50
- const cliVersion = getPackageVersion() ?? 'unknown';
50
+ const cliVersion = getPackageVersion();
51
51
  let program = new Command('aztec');
52
52
  program.description('Aztec command line interface').version(cliVersion).enablePositionalOptions();
53
53
  program = injectAztecCommands(program, userLog, debugLogger);
@@ -10,7 +10,7 @@ import type { ChainConfig } from '@aztec/stdlib/config';
10
10
  import { AztecNodeAdminApiSchema, AztecNodeApiSchema, AztecNodeDebugApiSchema } from '@aztec/stdlib/interfaces/client';
11
11
  import { getPackageVersion } from '@aztec/stdlib/update-checker';
12
12
  import { getVersioningMiddleware } from '@aztec/stdlib/versioning';
13
- import { getOtelJsonRpcPropagationMiddleware } from '@aztec/telemetry-client';
13
+ import { getOtelJsonRpcDiagnosticsMiddleware, getOtelJsonRpcPropagationMiddleware } from '@aztec/telemetry-client';
14
14
 
15
15
  import { createLocalNetwork } from '../local-network/index.js';
16
16
  import { github, splash } from '../splash.js';
@@ -29,7 +29,7 @@ export async function aztecStart(options: any, userLog: LogFn, debugLogger: Logg
29
29
  if (options.localNetwork) {
30
30
  const localNetwork = extractNamespacedOptions(options, 'localNetwork');
31
31
  userLog(`${splash}\n${github}\n\n`);
32
- userLog(`Setting up Aztec local network ${packageVersion ?? 'unknown'}, please stand by...`);
32
+ userLog(`Setting up Aztec local network ${packageVersion}, please stand by...`);
33
33
 
34
34
  const { node, stop } = await createLocalNetwork(
35
35
  {
@@ -67,9 +67,6 @@ export async function aztecStart(options: any, userLog: LogFn, debugLogger: Logg
67
67
  } else if (options.bot) {
68
68
  const { startBot } = await import('./cmds/start_bot.js');
69
69
  await startBot(options, signalHandlers, services, userLog);
70
- } else if (options.archiver) {
71
- const { startArchiver } = await import('./cmds/start_archiver.js');
72
- ({ config } = await startArchiver(options, signalHandlers, services));
73
70
  } else if (options.p2pBootstrap) {
74
71
  const { startP2PBootstrap } = await import('./cmds/start_p2p_bootstrap.js');
75
72
  ({ config } = await startP2PBootstrap(options, signalHandlers, services, userLog));
@@ -81,7 +78,7 @@ export async function aztecStart(options: any, userLog: LogFn, debugLogger: Logg
81
78
  await startProverBroker(options, signalHandlers, services, userLog);
82
79
  } else if (options.txe) {
83
80
  const { startTXE } = await import('./cmds/start_txe.js');
84
- await startTXE(options, debugLogger);
81
+ await startTXE(options, signalHandlers, debugLogger);
85
82
  } else if (options.sequencer) {
86
83
  userLog(`Cannot run a standalone sequencer without a node`);
87
84
  process.exit(1);
@@ -97,7 +94,14 @@ export async function aztecStart(options: any, userLog: LogFn, debugLogger: Logg
97
94
 
98
95
  // Start the main JSON-RPC server
99
96
  if (Object.entries(services).length > 0) {
97
+ if (services.node) {
98
+ const { BarretenbergSync } = await import('@aztec/bb.js');
99
+ // JSON-RPC schema parsing may decompress compressed Chonk proofs before the node handler runs.
100
+ await BarretenbergSync.initSingleton();
101
+ }
102
+
100
103
  const rpcServer = createNamespacedSafeJsonRpcServer(services, {
104
+ diagnostic: getOtelJsonRpcDiagnosticsMiddleware(),
101
105
  http200OnError: false,
102
106
  log: debugLogger,
103
107
  middlewares: [getOtelJsonRpcPropagationMiddleware(), getVersioningMiddleware(versions, versioningOpts)],
@@ -129,6 +133,7 @@ export async function aztecStart(options: any, userLog: LogFn, debugLogger: Logg
129
133
  }
130
134
 
131
135
  const rpcServer = createNamespacedSafeJsonRpcServer(adminServices, {
136
+ diagnostic: getOtelJsonRpcDiagnosticsMiddleware(),
132
137
  http200OnError: false,
133
138
  log: debugLogger,
134
139
  middlewares: adminMiddlewares,
@@ -222,12 +222,6 @@ export const aztecStartOptions: { [key: string]: AztecStartOption[] } = {
222
222
  },
223
223
  ],
224
224
  ARCHIVER: [
225
- {
226
- flag: '--archiver',
227
- description: 'Starts Aztec Archiver with options',
228
- defaultValue: undefined,
229
- env: undefined,
230
- },
231
225
  ...getOptions(
232
226
  'archiver',
233
227
  omitConfigMappings(archiverConfigMappings, Object.keys(l1ContractsConfigMappings) as (keyof ArchiverConfig)[]),
@@ -274,11 +268,7 @@ export const aztecStartOptions: { [key: string]: AztecStartOption[] } = {
274
268
  defaultValue: undefined,
275
269
  env: undefined,
276
270
  },
277
- ...getOptions(
278
- 'proverBroker',
279
- // filter out archiver options from prover node options as they're passed separately in --archiver
280
- proverBrokerConfigMappings,
281
- ),
271
+ ...getOptions('proverBroker', proverBrokerConfigMappings),
282
272
  ],
283
273
  'PROVER AGENT': [
284
274
  {
@@ -326,15 +316,7 @@ export const aztecStartOptions: { [key: string]: AztecStartOption[] } = {
326
316
  },
327
317
  ...getOptions('bot', botConfigMappings),
328
318
  ],
329
- PXE: [
330
- {
331
- flag: '--pxe',
332
- description: 'Starts Aztec PXE with options',
333
- defaultValue: undefined,
334
- env: undefined,
335
- },
336
- ...getOptions('pxe', allPxeConfigMappings),
337
- ],
319
+ PXE: [...getOptions('pxe', allPxeConfigMappings)],
338
320
  TXE: [
339
321
  {
340
322
  flag: '--txe',
@@ -1,9 +1,10 @@
1
1
  import { findBbBinary } from '@aztec/bb.js';
2
2
  import type { LogFn } from '@aztec/foundation/log';
3
+ import { getPackageVersion } from '@aztec/stdlib/update-checker';
3
4
 
4
5
  import { execFileSync } from 'child_process';
5
6
  import type { Command } from 'commander';
6
- import { readFile } from 'fs/promises';
7
+ import { readFile, writeFile } from 'fs/promises';
7
8
  import { join } from 'path';
8
9
 
9
10
  import { readArtifactFiles } from './utils/artifacts.js';
@@ -25,6 +26,17 @@ async function collectContractArtifacts(): Promise<string[]> {
25
26
  return files.filter(f => Array.isArray(f.content.functions)).map(f => f.filePath);
26
27
  }
27
28
 
29
+ /** Stamps the Aztec stack version into the contract artifacts. */
30
+ async function stampAztecVersion(artifactPaths: string[]): Promise<void> {
31
+ const version = getPackageVersion();
32
+ for (const path of artifactPaths) {
33
+ const artifact = JSON.parse(await readFile(path, 'utf-8'));
34
+ // eslint-disable-next-line camelcase
35
+ artifact.aztec_version = version;
36
+ await writeFile(path, JSON.stringify(artifact, null, 2) + '\n');
37
+ }
38
+ }
39
+
28
40
  /** Returns the set of package names that are contract crates in the current workspace. */
29
41
  async function getContractPackageNames(): Promise<Set<string>> {
30
42
  const contractNames = new Set<string>();
@@ -148,6 +160,8 @@ async function compileAztecContract(nargoArgs: string[], log: LogFn): Promise<vo
148
160
  log('Postprocessing contracts...');
149
161
  const bbArgs = artifacts.flatMap(a => ['-i', a]);
150
162
  await run(bb, ['aztec_process', ...bbArgs]);
163
+
164
+ await stampAztecVersion(artifacts);
151
165
  }
152
166
 
153
167
  log('Compilation complete!');
@@ -11,8 +11,9 @@ export function injectProfileCommand(program: Command, log: LogFn): Command {
11
11
  profile
12
12
  .command('gates')
13
13
  .argument('[target-dir]', 'Path to the compiled artifacts directory', './target')
14
+ .option('--json', 'Output gate counts as JSON instead of a table', false)
14
15
  .description('Display gate counts for all compiled Aztec artifacts in a target directory.')
15
- .action((targetDir: string) => profileGates(targetDir, log));
16
+ .action((targetDir: string, options: { json: boolean }) => profileGates(targetDir, options.json, log));
16
17
 
17
18
  profile
18
19
  .command('flamegraph')
@@ -6,12 +6,13 @@ import { execFile as execFileCb } from 'child_process';
6
6
  import { rm } from 'fs/promises';
7
7
  import { promisify } from 'util';
8
8
 
9
- import { MAX_CONCURRENT, discoverArtifacts } from './profile_utils.js';
9
+ import { type DiscoveredArtifact, MAX_CONCURRENT, discoverArtifacts } from './profile_utils.js';
10
10
 
11
11
  const execFile = promisify(execFileCb);
12
12
 
13
13
  interface GateCountResult {
14
14
  name: string;
15
+ type: DiscoveredArtifact['type'];
15
16
  gateCount: number;
16
17
  }
17
18
 
@@ -32,24 +33,39 @@ async function getGateCount(bb: string, artifactPath: string): Promise<number> {
32
33
  }
33
34
 
34
35
  /** Profiles all compiled artifacts in a target directory and prints gate counts. */
35
- export async function profileGates(targetDir: string, log: LogFn): Promise<void> {
36
+ export async function profileGates(targetDir: string, json: boolean, log: LogFn): Promise<void> {
36
37
  const bb = process.env.BB ?? findBbBinary() ?? 'bb';
37
38
  const { artifacts, tmpDir } = await discoverArtifacts(targetDir);
38
39
 
39
40
  if (artifacts.length === 0) {
40
- log('No artifacts found in target directory.');
41
+ if (json) {
42
+ log('[]');
43
+ } else {
44
+ log('No artifacts found in target directory.');
45
+ }
41
46
  return;
42
47
  }
43
48
 
44
49
  try {
45
50
  const results: GateCountResult[] = await asyncPool(MAX_CONCURRENT, artifacts, async artifact => ({
46
51
  name: artifact.name,
52
+ type: artifact.type,
47
53
  gateCount: await getGateCount(bb, artifact.filePath),
48
54
  }));
49
55
  results.sort((a, b) => a.name.localeCompare(b.name));
50
56
 
51
57
  if (results.length === 0) {
52
- log('No constrained circuits found.');
58
+ if (json) {
59
+ log('[]');
60
+ } else {
61
+ log('No constrained circuits found.');
62
+ }
63
+ return;
64
+ }
65
+
66
+ if (json) {
67
+ const entries = results.map(r => ({ name: r.name, type: r.type, gates: r.gateCount }));
68
+ log(JSON.stringify(entries, null, 2));
53
69
  return;
54
70
  }
55
71
 
@@ -67,7 +67,7 @@ export async function waitForCompatibleRollup(
67
67
  config: {
68
68
  l1RpcUrls: string[];
69
69
  l1ChainId: number;
70
- l1Contracts: { registryAddress: EthAddress };
70
+ registryAddress: EthAddress;
71
71
  rollupVersion?: number;
72
72
  },
73
73
  expected: { genesisArchiveRoot: Fr; vkTreeRoot: Fr; protocolContractsHash: Fr },
@@ -77,7 +77,7 @@ export async function waitForCompatibleRollup(
77
77
  const publicClient = getPublicClient(config);
78
78
  const rollupVersion: number | 'canonical' = config.rollupVersion ?? 'canonical';
79
79
 
80
- const registry = new RegistryContract(publicClient, config.l1Contracts.registryAddress);
80
+ const registry = new RegistryContract(publicClient, config.registryAddress);
81
81
  const rollupAddress = await registry.getRollupAddress(rollupVersion);
82
82
  const rollup = new RollupContract(publicClient, rollupAddress.toString());
83
83
 
@@ -21,11 +21,9 @@ export async function startBot(
21
21
  services: NamespacedApiHandlers,
22
22
  userLog: LogFn,
23
23
  ) {
24
- const { proverNode, archiver, sequencer, p2pBootstrap, txe, prover } = options;
25
- if (proverNode || archiver || sequencer || p2pBootstrap || txe || prover) {
26
- userLog(
27
- `Starting a bot with --prover-node, --prover, --archiver, --sequencer, --p2p-bootstrap, or --txe is not supported.`,
28
- );
24
+ const { proverNode, sequencer, p2pBootstrap, txe, prover } = options;
25
+ if (proverNode || sequencer || p2pBootstrap || txe || prover) {
26
+ userLog(`Starting a bot with --prover-node, --prover, --sequencer, --p2p-bootstrap, or --txe is not supported.`);
29
27
  process.exit(1);
30
28
  }
31
29
 
@@ -88,7 +88,7 @@ export async function startNode(
88
88
  const followsCanonicalRollup =
89
89
  typeof nodeConfig.rollupVersion !== 'number' || (nodeConfig.rollupVersion as unknown as string) === 'canonical';
90
90
 
91
- if (!nodeConfig.l1Contracts.registryAddress || nodeConfig.l1Contracts.registryAddress.isZero()) {
91
+ if (!nodeConfig.registryAddress || nodeConfig.registryAddress.isZero()) {
92
92
  throw new Error('L1 registry address is required to start Aztec Node');
93
93
  }
94
94
 
@@ -102,7 +102,7 @@ export async function startNode(
102
102
  );
103
103
 
104
104
  const { addresses, config } = await getL1Config(
105
- nodeConfig.l1Contracts.registryAddress,
105
+ nodeConfig.registryAddress,
106
106
  nodeConfig.l1RpcUrls,
107
107
  nodeConfig.l1ChainId,
108
108
  nodeConfig.rollupVersion,
@@ -118,9 +118,7 @@ export async function startNode(
118
118
 
119
119
  nodeConfig = {
120
120
  ...nodeConfig,
121
- l1Contracts: {
122
- ...addresses,
123
- },
121
+ ...addresses,
124
122
  ...config,
125
123
  };
126
124
 
@@ -24,8 +24,8 @@ export async function startProverAgent(
24
24
  services: NamespacedApiHandlers,
25
25
  userLog: LogFn,
26
26
  ) {
27
- if (options.node || options.sequencer || options.pxe || options.p2pBootstrap || options.txe) {
28
- userLog(`Starting a prover agent with --node, --sequencer, --pxe, --p2p-bootstrap, or --txe is not supported.`);
27
+ if (options.node || options.sequencer || options.p2pBootstrap || options.txe) {
28
+ userLog(`Starting a prover agent with --node, --sequencer, --p2p-bootstrap, or --txe is not supported.`);
29
29
  process.exit(1);
30
30
  }
31
31