@aztec/aztec 0.0.1-commit.0208eb9 → 0.0.1-commit.031e54b

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 (150) hide show
  1. package/dest/bin/index.js +7 -3
  2. package/dest/cli/admin_api_key_store.d.ts +45 -0
  3. package/dest/cli/admin_api_key_store.d.ts.map +1 -0
  4. package/dest/cli/admin_api_key_store.js +98 -0
  5. package/dest/cli/aztec_start_action.d.ts +1 -1
  6. package/dest/cli/aztec_start_action.d.ts.map +1 -1
  7. package/dest/cli/aztec_start_action.js +81 -23
  8. package/dest/cli/aztec_start_options.d.ts +2 -2
  9. package/dest/cli/aztec_start_options.d.ts.map +1 -1
  10. package/dest/cli/aztec_start_options.js +39 -23
  11. package/dest/cli/cli.d.ts +1 -1
  12. package/dest/cli/cli.d.ts.map +1 -1
  13. package/dest/cli/cli.js +3 -4
  14. package/dest/cli/cmds/compile.d.ts +4 -0
  15. package/dest/cli/cmds/compile.d.ts.map +1 -0
  16. package/dest/cli/cmds/compile.js +166 -0
  17. package/dest/cli/cmds/profile.d.ts +4 -0
  18. package/dest/cli/cmds/profile.d.ts.map +1 -0
  19. package/dest/cli/cmds/profile.js +8 -0
  20. package/dest/cli/cmds/profile_flamegraph.d.ts +4 -0
  21. package/dest/cli/cmds/profile_flamegraph.d.ts.map +1 -0
  22. package/dest/cli/cmds/profile_flamegraph.js +52 -0
  23. package/dest/cli/cmds/profile_gates.d.ts +4 -0
  24. package/dest/cli/cmds/profile_gates.d.ts.map +1 -0
  25. package/dest/cli/cmds/profile_gates.js +76 -0
  26. package/dest/cli/cmds/profile_utils.d.ts +18 -0
  27. package/dest/cli/cmds/profile_utils.d.ts.map +1 -0
  28. package/dest/cli/cmds/profile_utils.js +50 -0
  29. package/dest/cli/cmds/standby.d.ts +30 -0
  30. package/dest/cli/cmds/standby.d.ts.map +1 -0
  31. package/dest/cli/cmds/standby.js +97 -0
  32. package/dest/cli/cmds/start_bot.d.ts +3 -3
  33. package/dest/cli/cmds/start_bot.d.ts.map +1 -1
  34. package/dest/cli/cmds/start_bot.js +12 -8
  35. package/dest/cli/cmds/start_node.d.ts +3 -2
  36. package/dest/cli/cmds/start_node.d.ts.map +1 -1
  37. package/dest/cli/cmds/start_node.js +75 -35
  38. package/dest/cli/cmds/start_prover_agent.d.ts +1 -1
  39. package/dest/cli/cmds/start_prover_agent.d.ts.map +1 -1
  40. package/dest/cli/cmds/start_prover_agent.js +5 -17
  41. package/dest/cli/cmds/start_prover_broker.d.ts +1 -1
  42. package/dest/cli/cmds/start_prover_broker.d.ts.map +1 -1
  43. package/dest/cli/cmds/start_prover_broker.js +22 -13
  44. package/dest/cli/cmds/start_txe.d.ts +2 -2
  45. package/dest/cli/cmds/start_txe.d.ts.map +1 -1
  46. package/dest/cli/cmds/start_txe.js +6 -5
  47. package/dest/cli/cmds/utils/artifacts.d.ts +21 -0
  48. package/dest/cli/cmds/utils/artifacts.d.ts.map +1 -0
  49. package/dest/cli/cmds/utils/artifacts.js +24 -0
  50. package/dest/cli/cmds/utils/collect_crate_dirs.d.ts +21 -0
  51. package/dest/cli/cmds/utils/collect_crate_dirs.d.ts.map +1 -0
  52. package/dest/cli/cmds/utils/collect_crate_dirs.js +114 -0
  53. package/dest/cli/cmds/utils/needs_recompile.d.ts +10 -0
  54. package/dest/cli/cmds/utils/needs_recompile.d.ts.map +1 -0
  55. package/dest/cli/cmds/utils/needs_recompile.js +90 -0
  56. package/dest/cli/cmds/utils/spawn.d.ts +3 -0
  57. package/dest/cli/cmds/utils/spawn.d.ts.map +1 -0
  58. package/dest/cli/cmds/utils/spawn.js +16 -0
  59. package/dest/cli/cmds/utils/warn_if_aztec_version_mismatch.d.ts +4 -0
  60. package/dest/cli/cmds/utils/warn_if_aztec_version_mismatch.d.ts.map +1 -0
  61. package/dest/cli/cmds/utils/warn_if_aztec_version_mismatch.js +61 -0
  62. package/dest/cli/util.d.ts +7 -18
  63. package/dest/cli/util.d.ts.map +1 -1
  64. package/dest/cli/util.js +56 -90
  65. package/dest/examples/token.js +6 -6
  66. package/dest/local-network/auth_registry.d.ts +5 -0
  67. package/dest/local-network/auth_registry.d.ts.map +1 -0
  68. package/dest/local-network/auth_registry.js +17 -0
  69. package/dest/local-network/banana_fpc.d.ts +3 -2
  70. package/dest/local-network/banana_fpc.d.ts.map +1 -1
  71. package/dest/local-network/banana_fpc.js +12 -8
  72. package/dest/local-network/local-network.d.ts +7 -28
  73. package/dest/local-network/local-network.d.ts.map +1 -1
  74. package/dest/local-network/local-network.js +86 -32
  75. package/dest/testing/anvil_test_watcher.d.ts +23 -3
  76. package/dest/testing/anvil_test_watcher.d.ts.map +1 -1
  77. package/dest/testing/anvil_test_watcher.js +113 -22
  78. package/dest/testing/cheat_codes.d.ts +18 -17
  79. package/dest/testing/cheat_codes.d.ts.map +1 -1
  80. package/dest/testing/cheat_codes.js +72 -36
  81. package/dest/testing/epoch_test_settler.d.ts +1 -1
  82. package/dest/testing/epoch_test_settler.d.ts.map +1 -1
  83. package/dest/testing/epoch_test_settler.js +9 -8
  84. package/dest/testing/index.d.ts +3 -2
  85. package/dest/testing/index.d.ts.map +1 -1
  86. package/dest/testing/index.js +1 -0
  87. package/dest/testing/token_allowed_setup.d.ts +7 -0
  88. package/dest/testing/token_allowed_setup.d.ts.map +1 -0
  89. package/dest/testing/token_allowed_setup.js +20 -0
  90. package/package.json +35 -34
  91. package/scripts/add_crate.sh +53 -0
  92. package/scripts/aztec.sh +15 -5
  93. package/scripts/init.sh +23 -19
  94. package/scripts/new.sh +48 -24
  95. package/scripts/setup_workspace.sh +69 -0
  96. package/scripts/templates/blank/contract/Nargo.toml +6 -0
  97. package/scripts/templates/blank/contract/src/main.nr +10 -0
  98. package/scripts/templates/blank/test/Nargo.toml +7 -0
  99. package/scripts/templates/blank/test/src/lib.nr +11 -0
  100. package/scripts/templates/counter/contract/Nargo.toml +7 -0
  101. package/scripts/templates/counter/contract/src/main.nr +48 -0
  102. package/scripts/templates/counter/test/Nargo.toml +7 -0
  103. package/scripts/templates/counter/test/src/lib.nr +32 -0
  104. package/src/bin/index.ts +7 -3
  105. package/src/cli/admin_api_key_store.ts +128 -0
  106. package/src/cli/aztec_start_action.ts +75 -19
  107. package/src/cli/aztec_start_options.ts +48 -30
  108. package/src/cli/cli.ts +3 -4
  109. package/src/cli/cmds/compile.ts +192 -0
  110. package/src/cli/cmds/profile.ts +26 -0
  111. package/src/cli/cmds/profile_flamegraph.ts +64 -0
  112. package/src/cli/cmds/profile_gates.ts +84 -0
  113. package/src/cli/cmds/profile_utils.ts +58 -0
  114. package/src/cli/cmds/standby.ts +132 -0
  115. package/src/cli/cmds/start_bot.ts +11 -10
  116. package/src/cli/cmds/start_node.ts +86 -40
  117. package/src/cli/cmds/start_prover_agent.ts +5 -8
  118. package/src/cli/cmds/start_prover_broker.ts +23 -24
  119. package/src/cli/cmds/start_txe.ts +7 -5
  120. package/src/cli/cmds/utils/artifacts.ts +44 -0
  121. package/src/cli/cmds/utils/collect_crate_dirs.ts +118 -0
  122. package/src/cli/cmds/utils/needs_recompile.ts +98 -0
  123. package/src/cli/cmds/utils/spawn.ts +16 -0
  124. package/src/cli/cmds/utils/warn_if_aztec_version_mismatch.ts +76 -0
  125. package/src/cli/util.ts +63 -101
  126. package/src/examples/token.ts +8 -6
  127. package/src/local-network/auth_registry.ts +19 -0
  128. package/src/local-network/banana_fpc.ts +13 -9
  129. package/src/local-network/local-network.ts +93 -30
  130. package/src/testing/anvil_test_watcher.ts +127 -20
  131. package/src/testing/cheat_codes.ts +92 -39
  132. package/src/testing/epoch_test_settler.ts +6 -8
  133. package/src/testing/index.ts +2 -1
  134. package/src/testing/token_allowed_setup.ts +19 -0
  135. package/dest/cli/cmds/start_archiver.d.ts +0 -9
  136. package/dest/cli/cmds/start_archiver.d.ts.map +0 -1
  137. package/dest/cli/cmds/start_archiver.js +0 -48
  138. package/dest/cli/cmds/start_prover_node.d.ts +0 -7
  139. package/dest/cli/cmds/start_prover_node.d.ts.map +0 -1
  140. package/dest/cli/cmds/start_prover_node.js +0 -108
  141. package/dest/cli/release_version.d.ts +0 -2
  142. package/dest/cli/release_version.d.ts.map +0 -1
  143. package/dest/cli/release_version.js +0 -14
  144. package/scripts/compile.sh +0 -44
  145. package/scripts/extract_function.js +0 -47
  146. package/scripts/flamegraph.sh +0 -59
  147. package/scripts/setup_project.sh +0 -31
  148. package/src/cli/cmds/start_archiver.ts +0 -50
  149. package/src/cli/cmds/start_prover_node.ts +0 -124
  150. package/src/cli/release_version.ts +0 -21
@@ -12,7 +12,6 @@ import {
12
12
  isBooleanConfigValue,
13
13
  omitConfigMappings,
14
14
  } from '@aztec/foundation/config';
15
- import { dataConfigMappings } from '@aztec/kv-store/config';
16
15
  import { sharedNodeConfigMappings } from '@aztec/node-lib/config';
17
16
  import { bootnodeConfigMappings, p2pConfigMappings } from '@aztec/p2p/config';
18
17
  import { proverAgentConfigMappings, proverBrokerConfigMappings } from '@aztec/prover-client/broker/config';
@@ -20,6 +19,7 @@ import { proverNodeConfigMappings } from '@aztec/prover-node/config';
20
19
  import { allPxeConfigMappings } from '@aztec/pxe/config';
21
20
  import { sequencerClientConfigMappings } from '@aztec/sequencer-client/config';
22
21
  import { chainConfigMappings, nodeRpcConfigMappings } from '@aztec/stdlib/config';
22
+ import { dataConfigMappings } from '@aztec/stdlib/kv-store';
23
23
  import { telemetryClientConfigMappings } from '@aztec/telemetry-client/config';
24
24
  import { worldStateConfigMappings } from '@aztec/world-state/config';
25
25
 
@@ -36,7 +36,7 @@ export interface AztecStartOption {
36
36
  parseVal?: (val: string) => any;
37
37
  }
38
38
 
39
- export const getOptions = (namespace: string, configMappings: Record<string, ConfigMapping>) => {
39
+ export const getOptions = (namespace: string, configMappings: Record<string, ConfigMapping<unknown>>) => {
40
40
  const options: AztecStartOption[] = [];
41
41
  for (const [key, { env, defaultValue: def, parseEnv, description, printDefault, fallback }] of Object.entries(
42
42
  configMappings,
@@ -58,7 +58,11 @@ export const getOptions = (namespace: string, configMappings: Record<string, Con
58
58
  return options;
59
59
  };
60
60
 
61
- const configToFlag = (flag: string, configMapping: ConfigMapping, overrideDefaultValue?: any): AztecStartOption => {
61
+ const configToFlag = (
62
+ flag: string,
63
+ configMapping: ConfigMapping<unknown>,
64
+ overrideDefaultValue?: any,
65
+ ): AztecStartOption => {
62
66
  if (!configMapping.isBoolean) {
63
67
  flag += ' <value>';
64
68
  }
@@ -105,8 +109,7 @@ export const aztecStartOptions: { [key: string]: AztecStartOption[] } = {
105
109
  env: 'NETWORK',
106
110
  },
107
111
 
108
- configToFlag('--auto-update', sharedNodeConfigMappings.autoUpdate),
109
- configToFlag('--auto-update-url', sharedNodeConfigMappings.autoUpdateUrl),
112
+ configToFlag('--enable-version-check', sharedNodeConfigMappings.enableVersionCheck),
110
113
 
111
114
  configToFlag('--sync-mode', sharedNodeConfigMappings.syncMode),
112
115
  configToFlag('--snapshots-urls', sharedNodeConfigMappings.snapshotsUrls),
@@ -126,6 +129,12 @@ export const aztecStartOptions: { [key: string]: AztecStartOption[] } = {
126
129
  defaultValue: DefaultMnemonic,
127
130
  env: 'MNEMONIC',
128
131
  },
132
+ {
133
+ flag: '--local-network.testAccounts',
134
+ description: 'Deploy test accounts on local network start',
135
+ env: 'TEST_ACCOUNTS',
136
+ ...booleanConfigHelper(true),
137
+ },
129
138
  ],
130
139
  API: [
131
140
  {
@@ -142,6 +151,37 @@ export const aztecStartOptions: { [key: string]: AztecStartOption[] } = {
142
151
  env: 'AZTEC_ADMIN_PORT',
143
152
  parseVal: val => parseInt(val, 10),
144
153
  },
154
+ {
155
+ flag: '--admin-api-key-hash <value>',
156
+ description:
157
+ 'SHA-256 hex hash of a pre-generated admin API key. When set, the node uses this hash for authentication instead of auto-generating a key.',
158
+ defaultValue: undefined,
159
+ env: 'AZTEC_ADMIN_API_KEY_HASH',
160
+ },
161
+ {
162
+ flag: '--disable-admin-api-key',
163
+ description:
164
+ 'Disable API key authentication on the admin RPC endpoint. By default, a key is auto-generated, displayed once, and its hash is persisted.',
165
+ defaultValue: false,
166
+ env: 'AZTEC_DISABLE_ADMIN_API_KEY',
167
+ // undefined means the flag was passed without a value (boolean toggle), treat as true.
168
+ parseVal: val => val === undefined || val === 'true' || val === '1',
169
+ },
170
+ {
171
+ flag: '--reset-admin-api-key',
172
+ description:
173
+ 'Force-generate a new admin API key, replacing any previously persisted key hash. The new key is displayed once at startup.',
174
+ defaultValue: false,
175
+ env: 'AZTEC_RESET_ADMIN_API_KEY',
176
+ parseVal: val => val === 'true' || val === '1',
177
+ },
178
+ {
179
+ flag: '--node-debug',
180
+ description: 'Expose debug endpoints (e.g. mineBlock) on the main RPC port',
181
+ defaultValue: false,
182
+ env: 'AZTEC_NODE_DEBUG',
183
+ parseVal: val => val === undefined || val === 'true' || val === '1',
184
+ },
145
185
  {
146
186
  flag: '--api-prefix <value>',
147
187
  description: 'Prefix for API routes on any service that is started',
@@ -170,7 +210,7 @@ export const aztecStartOptions: { [key: string]: AztecStartOption[] } = {
170
210
  'WORLD STATE': [
171
211
  configToFlag('--world-state-data-directory', worldStateConfigMappings.worldStateDataDirectory),
172
212
  configToFlag('--world-state-db-map-size-kb', worldStateConfigMappings.worldStateDbMapSizeKb),
173
- configToFlag('--world-state-block-history', worldStateConfigMappings.worldStateBlockHistory),
213
+ configToFlag('--world-state-checkpoint-history', worldStateConfigMappings.worldStateCheckpointHistory),
174
214
  ],
175
215
  // We can't easily auto-generate node options as they're parts of modules defined below
176
216
  'AZTEC NODE': [
@@ -182,12 +222,6 @@ export const aztecStartOptions: { [key: string]: AztecStartOption[] } = {
182
222
  },
183
223
  ],
184
224
  ARCHIVER: [
185
- {
186
- flag: '--archiver',
187
- description: 'Starts Aztec Archiver with options',
188
- defaultValue: undefined,
189
- env: undefined,
190
- },
191
225
  ...getOptions(
192
226
  'archiver',
193
227
  omitConfigMappings(archiverConfigMappings, Object.keys(l1ContractsConfigMappings) as (keyof ArchiverConfig)[]),
@@ -222,12 +256,8 @@ export const aztecStartOptions: { [key: string]: AztecStartOption[] } = {
222
256
  'proverNode',
223
257
  omitConfigMappings(proverNodeConfigMappings, [
224
258
  // filter out options passed separately
225
- ...getKeys(archiverConfigMappings),
226
259
  ...getKeys(proverBrokerConfigMappings),
227
260
  ...getKeys(proverAgentConfigMappings),
228
- ...getKeys(p2pConfigMappings),
229
- ...getKeys(worldStateConfigMappings),
230
- ...getKeys(sharedNodeConfigMappings),
231
261
  ]),
232
262
  ),
233
263
  ],
@@ -238,11 +268,7 @@ export const aztecStartOptions: { [key: string]: AztecStartOption[] } = {
238
268
  defaultValue: undefined,
239
269
  env: undefined,
240
270
  },
241
- ...getOptions(
242
- 'proverBroker',
243
- // filter out archiver options from prover node options as they're passed separately in --archiver
244
- proverBrokerConfigMappings,
245
- ),
271
+ ...getOptions('proverBroker', proverBrokerConfigMappings),
246
272
  ],
247
273
  'PROVER AGENT': [
248
274
  {
@@ -290,15 +316,7 @@ export const aztecStartOptions: { [key: string]: AztecStartOption[] } = {
290
316
  },
291
317
  ...getOptions('bot', botConfigMappings),
292
318
  ],
293
- PXE: [
294
- {
295
- flag: '--pxe',
296
- description: 'Starts Aztec PXE with options',
297
- defaultValue: undefined,
298
- env: undefined,
299
- },
300
- ...getOptions('pxe', allPxeConfigMappings),
301
- ],
319
+ PXE: [...getOptions('pxe', allPxeConfigMappings)],
302
320
  TXE: [
303
321
  {
304
322
  flag: '--txe',
package/src/cli/cli.ts CHANGED
@@ -37,10 +37,9 @@ export function injectAztecCommands(program: Command, userLog: LogFn, debugLogge
37
37
  `
38
38
  Additional commands:
39
39
 
40
- init [folder] [options] creates a new Aztec Noir project.
41
- new <path> [options] creates a new Aztec Noir project in a new directory.
42
- compile [options] compiles Aztec Noir contracts.
43
- test [options] starts a TXE and runs "nargo test" using it as the oracle resolver.
40
+ init creates a new Aztec Noir workspace in the current directory.
41
+ new <name> creates a new Aztec Noir workspace in its own directory (or creates a new contract-test crates pair and adds it to the current workspace if run in workspace).
42
+ test [options] starts a TXE and runs "nargo test" using it as the oracle resolver.
44
43
  `,
45
44
  );
46
45
  }
@@ -0,0 +1,192 @@
1
+ import { findBbBinary } from '@aztec/bb.js';
2
+ import type { LogFn } from '@aztec/foundation/log';
3
+ import { getPackageVersion } from '@aztec/stdlib/update-checker';
4
+
5
+ import { execFileSync } from 'child_process';
6
+ import type { Command } from 'commander';
7
+ import { readFile, writeFile } from 'fs/promises';
8
+ import { join } from 'path';
9
+
10
+ import { readArtifactFiles } from './utils/artifacts.js';
11
+ import { needsRecompile } from './utils/needs_recompile.js';
12
+ import { run } from './utils/spawn.js';
13
+ import { warnIfAztecVersionMismatch } from './utils/warn_if_aztec_version_mismatch.js';
14
+
15
+ /** Returns paths to contract artifacts in the target directory. */
16
+ async function collectContractArtifacts(): Promise<string[]> {
17
+ let files;
18
+ try {
19
+ files = await readArtifactFiles('target');
20
+ } catch (err: any) {
21
+ if (err?.message?.includes('does not exist')) {
22
+ return [];
23
+ }
24
+ throw err;
25
+ }
26
+ return files.filter(f => Array.isArray(f.content.functions)).map(f => f.filePath);
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
+
40
+ /** Returns the set of package names that are contract crates in the current workspace. */
41
+ async function getContractPackageNames(): Promise<Set<string>> {
42
+ const contractNames = new Set<string>();
43
+
44
+ let rootToml: string;
45
+ try {
46
+ rootToml = await readFile('Nargo.toml', 'utf-8');
47
+ } catch {
48
+ return contractNames;
49
+ }
50
+
51
+ const membersMatch = rootToml.match(/members\s*=\s*\[([^\]]*)\]/);
52
+ if (membersMatch) {
53
+ const members = membersMatch[1]
54
+ .split(',')
55
+ .map(m => m.trim().replace(/^"|"$/g, ''))
56
+ .filter(m => m.length > 0);
57
+
58
+ for (const member of members) {
59
+ try {
60
+ const memberToml = await readFile(join(member, 'Nargo.toml'), 'utf-8');
61
+ if (/type\s*=\s*"contract"/.test(memberToml)) {
62
+ const nameMatch = memberToml.match(/name\s*=\s*"([^"]+)"/);
63
+ if (nameMatch) {
64
+ contractNames.add(nameMatch[1]);
65
+ }
66
+ }
67
+ } catch {
68
+ // Member directory might not exist or have no Nargo.toml; skip.
69
+ }
70
+ }
71
+ } else {
72
+ // Single-crate project (no workspace): check if the root Nargo.toml itself is a contract.
73
+ if (/type\s*=\s*"contract"/.test(rootToml)) {
74
+ const nameMatch = rootToml.match(/name\s*=\s*"([^"]+)"/);
75
+ if (nameMatch) {
76
+ contractNames.add(nameMatch[1]);
77
+ }
78
+ }
79
+ }
80
+
81
+ return contractNames;
82
+ }
83
+
84
+ /** Checks that no tests exist in contract crates and fails with a helpful message if they do. */
85
+ async function checkNoTestsInContracts(nargo: string, log: LogFn): Promise<void> {
86
+ const contractPackages = await getContractPackageNames();
87
+ if (contractPackages.size === 0) {
88
+ return;
89
+ }
90
+
91
+ let output: string;
92
+ try {
93
+ // We list tests for all the crates in the workspace
94
+ output = execFileSync(nargo, ['test', '--list-tests', '--silence-warnings'], {
95
+ encoding: 'utf-8',
96
+ stdio: ['pipe', 'pipe', 'inherit'],
97
+ });
98
+ } catch {
99
+ // If listing tests fails (e.g. test crate has compile errors), skip the check.
100
+ return;
101
+ }
102
+
103
+ // The output of the `nargo test --list-tests` command is as follows:
104
+ // ```
105
+ // crate_name_1 test_name_1
106
+ // crate_name_2 test_name_2
107
+ // ...
108
+ // crate_name_n test_name_n
109
+ // ```
110
+ //
111
+ // We parse the individual lines and then we check if any contract crate appeared in the parsed output.
112
+ const lines = output
113
+ .trim()
114
+ .split('\n')
115
+ .filter(line => line.length > 0);
116
+ const testsInContracts: { packageName: string; testName: string }[] = [];
117
+
118
+ for (const line of lines) {
119
+ const spaceIndex = line.indexOf(' ');
120
+ if (spaceIndex === -1) {
121
+ continue;
122
+ }
123
+ const packageName = line.substring(0, spaceIndex);
124
+ const testName = line.substring(spaceIndex + 1);
125
+ if (contractPackages.has(packageName)) {
126
+ testsInContracts.push({ packageName, testName });
127
+ }
128
+ }
129
+
130
+ if (testsInContracts.length > 0) {
131
+ const details = testsInContracts.map(t => ` ${t.packageName}::${t.testName}`).join('\n');
132
+ log(
133
+ `WARNING: Found tests in contract crate(s):\n${details}\n\n` +
134
+ `Tests should be in a dedicated test crate, not in the contract crate.\n` +
135
+ `Learn more: https://docs.aztec.network/errors/1`,
136
+ );
137
+ }
138
+ }
139
+
140
+ /** Compiles Aztec Noir contracts and postprocesses artifacts. */
141
+ async function compileAztecContract(nargoArgs: string[], log: LogFn): Promise<void> {
142
+ await warnIfAztecVersionMismatch(log);
143
+
144
+ if (!(await needsRecompile())) {
145
+ log('No source changes detected, skipping compilation.');
146
+ return;
147
+ }
148
+
149
+ const nargo = process.env.NARGO ?? 'nargo';
150
+ const bb = process.env.BB ?? findBbBinary() ?? 'bb';
151
+
152
+ await run(nargo, ['compile', ...nargoArgs]);
153
+
154
+ // Ensure contract crates contain no tests (tests belong in the test crate).
155
+ await checkNoTestsInContracts(nargo, log);
156
+
157
+ const artifacts = await collectContractArtifacts();
158
+
159
+ if (artifacts.length > 0) {
160
+ log('Postprocessing contracts...');
161
+ const bbArgs = artifacts.flatMap(a => ['-i', a]);
162
+ await run(bb, ['aztec_process', ...bbArgs]);
163
+
164
+ await stampAztecVersion(artifacts);
165
+ }
166
+
167
+ log('Compilation complete!');
168
+ }
169
+
170
+ export function injectCompileCommand(program: Command, log: LogFn): Command {
171
+ program
172
+ .command('compile')
173
+ .argument('[nargo-args...]')
174
+ .passThroughOptions()
175
+ .allowUnknownOption()
176
+ .description(
177
+ 'Compile Aztec Noir contracts using nargo and postprocess them to generate transpiled artifacts and verification keys. All options are forwarded to nargo compile.',
178
+ )
179
+ .addHelpText('after', () => {
180
+ // Show nargo's own compile options so users see all available flags in one place.
181
+ const nargo = process.env.NARGO ?? 'nargo';
182
+ try {
183
+ const output = execFileSync(nargo, ['compile', '--help'], { encoding: 'utf-8' });
184
+ return `\nUnderlying nargo compile options:\n\n${output}`;
185
+ } catch {
186
+ return '\n(Run "nargo compile --help" to see available nargo options)';
187
+ }
188
+ })
189
+ .action((nargoArgs: string[]) => compileAztecContract(nargoArgs, log));
190
+
191
+ return program;
192
+ }
@@ -0,0 +1,26 @@
1
+ import type { LogFn } from '@aztec/foundation/log';
2
+
3
+ import type { Command } from 'commander';
4
+
5
+ import { profileFlamegraph } from './profile_flamegraph.js';
6
+ import { profileGates } from './profile_gates.js';
7
+
8
+ export function injectProfileCommand(program: Command, log: LogFn): Command {
9
+ const profile = program.command('profile').description('Profile compiled Aztec artifacts.');
10
+
11
+ profile
12
+ .command('gates')
13
+ .argument('[target-dir]', 'Path to the compiled artifacts directory', './target')
14
+ .option('--json', 'Output gate counts as JSON instead of a table', false)
15
+ .description('Display gate counts for all compiled Aztec artifacts in a target directory.')
16
+ .action((targetDir: string, options: { json: boolean }) => profileGates(targetDir, options.json, log));
17
+
18
+ profile
19
+ .command('flamegraph')
20
+ .argument('<contract-artifact>', 'Path to the compiled contract artifact JSON')
21
+ .argument('<function>', 'Name of the contract function to profile')
22
+ .description('Generate a gate count flamegraph SVG for a contract function.')
23
+ .action((artifactPath: string, functionName: string) => profileFlamegraph(artifactPath, functionName, log));
24
+
25
+ return program;
26
+ }
@@ -0,0 +1,64 @@
1
+ import { findBbBinary } from '@aztec/bb.js';
2
+ import type { LogFn } from '@aztec/foundation/log';
3
+
4
+ import { readFile, rename, rm, writeFile } from 'fs/promises';
5
+ import { basename, dirname, join } from 'path';
6
+
7
+ import { makeFunctionArtifact } from './profile_utils.js';
8
+ import type { CompiledArtifact } from './utils/artifacts.js';
9
+ import { run } from './utils/spawn.js';
10
+
11
+ /** Generates a gate count flamegraph SVG for a single contract function. */
12
+ export async function profileFlamegraph(artifactPath: string, functionName: string, log: LogFn): Promise<void> {
13
+ const raw = await readFile(artifactPath, 'utf-8');
14
+ const artifact: CompiledArtifact = JSON.parse(raw);
15
+
16
+ if (!Array.isArray(artifact.functions)) {
17
+ throw new Error(`${artifactPath} does not appear to be a contract artifact (no functions array)`);
18
+ }
19
+
20
+ const func = artifact.functions.find(f => f.name === functionName);
21
+ if (!func) {
22
+ const available = artifact.functions.map(f => f.name).join(', ');
23
+ throw new Error(`Function "${functionName}" not found in artifact. Available: ${available}`);
24
+ }
25
+ if (func.is_unconstrained) {
26
+ throw new Error(`Function "${functionName}" is unconstrained and cannot be profiled`);
27
+ }
28
+
29
+ const outputDir = dirname(artifactPath);
30
+ const contractName = basename(artifactPath, '.json');
31
+ const functionArtifact = join(outputDir, `${contractName}-${functionName}.json`);
32
+
33
+ try {
34
+ await writeFile(functionArtifact, makeFunctionArtifact(artifact, func));
35
+
36
+ const profiler = process.env.PROFILER_PATH ?? 'noir-profiler';
37
+ const bb = process.env.BB ?? findBbBinary() ?? 'bb';
38
+
39
+ await run(profiler, [
40
+ 'gates',
41
+ '--artifact-path',
42
+ functionArtifact,
43
+ '--backend-path',
44
+ bb,
45
+ '--backend-gates-command',
46
+ 'gates',
47
+ '--output',
48
+ outputDir,
49
+ '--scheme',
50
+ 'chonk',
51
+ '--include_gates_per_opcode',
52
+ ]);
53
+
54
+ // noir-profiler names the SVG using the internal function name which
55
+ // retains the __aztec_nr_internals__ prefix in the bytecode metadata.
56
+ const srcSvg = join(outputDir, `__aztec_nr_internals__${functionName}_gates.svg`);
57
+ const destSvg = join(outputDir, `${contractName}-${functionName}-flamegraph.svg`);
58
+ await rename(srcSvg, destSvg);
59
+
60
+ log(`Flamegraph written to ${destSvg}`);
61
+ } finally {
62
+ await rm(functionArtifact, { force: true });
63
+ }
64
+ }
@@ -0,0 +1,84 @@
1
+ import { findBbBinary } from '@aztec/bb.js';
2
+ import { asyncPool } from '@aztec/foundation/async-pool';
3
+ import type { LogFn } from '@aztec/foundation/log';
4
+
5
+ import { execFile as execFileCb } from 'child_process';
6
+ import { rm } from 'fs/promises';
7
+ import { promisify } from 'util';
8
+
9
+ import { type DiscoveredArtifact, MAX_CONCURRENT, discoverArtifacts } from './profile_utils.js';
10
+
11
+ const execFile = promisify(execFileCb);
12
+
13
+ interface GateCountResult {
14
+ name: string;
15
+ type: DiscoveredArtifact['type'];
16
+ gateCount: number;
17
+ }
18
+
19
+ /** Parses circuit_size from bb gates JSON output: { "functions": [{ "circuit_size": N }] } */
20
+ function parseGateCount(stdout: string): number {
21
+ const parsed = JSON.parse(stdout);
22
+ const size = parsed?.functions?.[0]?.circuit_size;
23
+ if (typeof size !== 'number') {
24
+ throw new Error('Failed to parse circuit_size from bb gates output');
25
+ }
26
+ return size;
27
+ }
28
+
29
+ /** Runs bb gates on a single artifact file and returns the gate count. */
30
+ async function getGateCount(bb: string, artifactPath: string): Promise<number> {
31
+ const { stdout } = await execFile(bb, ['gates', '--scheme', 'chonk', '-b', artifactPath]);
32
+ return parseGateCount(stdout);
33
+ }
34
+
35
+ /** Profiles all compiled artifacts in a target directory and prints gate counts. */
36
+ export async function profileGates(targetDir: string, json: boolean, log: LogFn): Promise<void> {
37
+ const bb = process.env.BB ?? findBbBinary() ?? 'bb';
38
+ const { artifacts, tmpDir } = await discoverArtifacts(targetDir);
39
+
40
+ if (artifacts.length === 0) {
41
+ if (json) {
42
+ log('[]');
43
+ } else {
44
+ log('No artifacts found in target directory.');
45
+ }
46
+ return;
47
+ }
48
+
49
+ try {
50
+ const results: GateCountResult[] = await asyncPool(MAX_CONCURRENT, artifacts, async artifact => ({
51
+ name: artifact.name,
52
+ type: artifact.type,
53
+ gateCount: await getGateCount(bb, artifact.filePath),
54
+ }));
55
+ results.sort((a, b) => a.name.localeCompare(b.name));
56
+
57
+ if (results.length === 0) {
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));
69
+ return;
70
+ }
71
+
72
+ const maxNameLen = Math.max(...results.map(r => r.name.length));
73
+ log('');
74
+ log('Gate counts:');
75
+ log('-'.repeat(maxNameLen + 16));
76
+ for (const { name, gateCount } of results) {
77
+ log(`${name.padEnd(maxNameLen)} ${gateCount.toLocaleString().padStart(12)}`);
78
+ }
79
+ log('-'.repeat(maxNameLen + 16));
80
+ log(`Total: ${results.length} circuit(s)`);
81
+ } finally {
82
+ await rm(tmpDir, { recursive: true, force: true });
83
+ }
84
+ }
@@ -0,0 +1,58 @@
1
+ import { mkdtemp, writeFile } from 'fs/promises';
2
+ import { tmpdir } from 'os';
3
+ import { join } from 'path';
4
+
5
+ import type { CompiledArtifact, ContractFunction } from './utils/artifacts.js';
6
+ import { readArtifactFiles } from './utils/artifacts.js';
7
+
8
+ export const MAX_CONCURRENT = 4;
9
+
10
+ export interface DiscoveredArtifact {
11
+ name: string;
12
+ filePath: string;
13
+ type: 'contract-function' | 'program';
14
+ }
15
+
16
+ /**
17
+ * Reads a target directory and returns a list of discovered artifacts with temp files
18
+ * created for contract functions. Caller must clean up tmpDir when done.
19
+ */
20
+ export async function discoverArtifacts(
21
+ targetDir: string,
22
+ ): Promise<{ artifacts: DiscoveredArtifact[]; tmpDir: string }> {
23
+ const files = await readArtifactFiles(targetDir);
24
+ const tmpDir = await mkdtemp(join(tmpdir(), 'aztec-profile-'));
25
+ const artifacts: DiscoveredArtifact[] = [];
26
+
27
+ for (const file of files) {
28
+ if (Array.isArray(file.content.functions)) {
29
+ for (const func of file.content.functions) {
30
+ if (!func.bytecode || func.is_unconstrained) {
31
+ continue;
32
+ }
33
+ const name = `${file.name}::${func.name}`;
34
+ const tmpPath = join(tmpDir, `${file.name}-${func.name}.json`);
35
+ await writeFile(tmpPath, makeFunctionArtifact(file.content, func));
36
+ artifacts.push({ name, filePath: tmpPath, type: 'contract-function' });
37
+ }
38
+ } else if (file.content.bytecode) {
39
+ artifacts.push({ name: file.name, filePath: file.filePath, type: 'program' });
40
+ }
41
+ }
42
+
43
+ return { artifacts, tmpDir };
44
+ }
45
+
46
+ /** Extracts a contract function as a standalone program artifact JSON string. */
47
+ export function makeFunctionArtifact(artifact: CompiledArtifact, func: ContractFunction) {
48
+ /* eslint-disable camelcase */
49
+ return JSON.stringify({
50
+ noir_version: artifact.noir_version,
51
+ hash: 0,
52
+ abi: func.abi,
53
+ bytecode: func.bytecode,
54
+ debug_symbols: func.debug_symbols,
55
+ file_map: artifact.file_map,
56
+ });
57
+ /* eslint-enable camelcase */
58
+ }