@aztec/aztec 0.0.1-commit.b655e406 → 0.0.1-commit.c0b82b2

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 (149) hide show
  1. package/README.md +1 -1
  2. package/dest/bin/index.d.ts +1 -1
  3. package/dest/bin/index.js +11 -4
  4. package/dest/cli/admin_api_key_store.d.ts +45 -0
  5. package/dest/cli/admin_api_key_store.d.ts.map +1 -0
  6. package/dest/cli/admin_api_key_store.js +98 -0
  7. package/dest/cli/aztec_start_action.d.ts +1 -1
  8. package/dest/cli/aztec_start_action.d.ts.map +1 -1
  9. package/dest/cli/aztec_start_action.js +58 -21
  10. package/dest/cli/aztec_start_options.d.ts +1 -1
  11. package/dest/cli/aztec_start_options.d.ts.map +1 -1
  12. package/dest/cli/aztec_start_options.js +46 -38
  13. package/dest/cli/cli.d.ts +1 -1
  14. package/dest/cli/cli.js +7 -7
  15. package/dest/cli/cmds/compile.d.ts +4 -0
  16. package/dest/cli/cmds/compile.d.ts.map +1 -0
  17. package/dest/cli/cmds/compile.js +160 -0
  18. package/dest/cli/cmds/migrate_ha_db.d.ts +3 -0
  19. package/dest/cli/cmds/migrate_ha_db.d.ts.map +1 -0
  20. package/dest/cli/cmds/migrate_ha_db.js +27 -0
  21. package/dest/cli/cmds/profile.d.ts +4 -0
  22. package/dest/cli/cmds/profile.d.ts.map +1 -0
  23. package/dest/cli/cmds/profile.js +8 -0
  24. package/dest/cli/cmds/profile_flamegraph.d.ts +4 -0
  25. package/dest/cli/cmds/profile_flamegraph.d.ts.map +1 -0
  26. package/dest/cli/cmds/profile_flamegraph.js +51 -0
  27. package/dest/cli/cmds/profile_gates.d.ts +4 -0
  28. package/dest/cli/cmds/profile_gates.d.ts.map +1 -0
  29. package/dest/cli/cmds/profile_gates.js +57 -0
  30. package/dest/cli/cmds/profile_utils.d.ts +18 -0
  31. package/dest/cli/cmds/profile_utils.d.ts.map +1 -0
  32. package/dest/cli/cmds/profile_utils.js +50 -0
  33. package/dest/cli/cmds/start_archiver.d.ts +1 -1
  34. package/dest/cli/cmds/start_archiver.d.ts.map +1 -1
  35. package/dest/cli/cmds/start_archiver.js +11 -13
  36. package/dest/cli/cmds/start_bot.d.ts +3 -3
  37. package/dest/cli/cmds/start_bot.d.ts.map +1 -1
  38. package/dest/cli/cmds/start_bot.js +10 -6
  39. package/dest/cli/cmds/start_node.d.ts +1 -1
  40. package/dest/cli/cmds/start_node.d.ts.map +1 -1
  41. package/dest/cli/cmds/start_node.js +66 -14
  42. package/dest/cli/cmds/start_p2p_bootstrap.d.ts +2 -2
  43. package/dest/cli/cmds/start_p2p_bootstrap.d.ts.map +1 -1
  44. package/dest/cli/cmds/start_p2p_bootstrap.js +2 -3
  45. package/dest/cli/cmds/start_prover_agent.d.ts +1 -1
  46. package/dest/cli/cmds/start_prover_agent.d.ts.map +1 -1
  47. package/dest/cli/cmds/start_prover_agent.js +4 -4
  48. package/dest/cli/cmds/start_prover_broker.d.ts +1 -1
  49. package/dest/cli/cmds/start_prover_broker.d.ts.map +1 -1
  50. package/dest/cli/cmds/start_prover_broker.js +4 -4
  51. package/dest/cli/cmds/start_txe.d.ts +1 -1
  52. package/dest/cli/cmds/utils/artifacts.d.ts +21 -0
  53. package/dest/cli/cmds/utils/artifacts.d.ts.map +1 -0
  54. package/dest/cli/cmds/utils/artifacts.js +24 -0
  55. package/dest/cli/cmds/utils/spawn.d.ts +3 -0
  56. package/dest/cli/cmds/utils/spawn.d.ts.map +1 -0
  57. package/dest/cli/cmds/utils/spawn.js +16 -0
  58. package/dest/cli/index.d.ts +1 -1
  59. package/dest/cli/preload_crs.d.ts +1 -1
  60. package/dest/cli/release_version.d.ts +1 -1
  61. package/dest/cli/util.d.ts +11 -20
  62. package/dest/cli/util.d.ts.map +1 -1
  63. package/dest/cli/util.js +16 -11
  64. package/dest/cli/versioning.d.ts +1 -1
  65. package/dest/examples/token.d.ts +1 -1
  66. package/dest/examples/token.js +6 -6
  67. package/dest/examples/util.d.ts +2 -2
  68. package/dest/examples/util.d.ts.map +1 -1
  69. package/dest/index.d.ts +2 -2
  70. package/dest/index.d.ts.map +1 -1
  71. package/dest/index.js +1 -1
  72. package/dest/local-network/banana_fpc.d.ts +10 -0
  73. package/dest/local-network/banana_fpc.d.ts.map +1 -0
  74. package/dest/{sandbox → local-network}/banana_fpc.js +3 -3
  75. package/dest/local-network/index.d.ts +4 -0
  76. package/dest/local-network/index.d.ts.map +1 -0
  77. package/dest/{sandbox → local-network}/index.js +1 -1
  78. package/dest/local-network/local-network.d.ts +73 -0
  79. package/dest/local-network/local-network.d.ts.map +1 -0
  80. package/dest/{sandbox/sandbox.js → local-network/local-network.js} +75 -45
  81. package/dest/local-network/sponsored_fpc.d.ts +5 -0
  82. package/dest/local-network/sponsored_fpc.d.ts.map +1 -0
  83. package/dest/mnemonic.d.ts +1 -1
  84. package/dest/splash.d.ts +1 -1
  85. package/dest/testing/anvil_test_watcher.d.ts +12 -4
  86. package/dest/testing/anvil_test_watcher.d.ts.map +1 -1
  87. package/dest/testing/anvil_test_watcher.js +68 -29
  88. package/dest/testing/cheat_codes.d.ts +1 -1
  89. package/dest/testing/cheat_codes.d.ts.map +1 -1
  90. package/dest/testing/epoch_test_settler.d.ts +19 -0
  91. package/dest/testing/epoch_test_settler.d.ts.map +1 -0
  92. package/dest/testing/epoch_test_settler.js +62 -0
  93. package/dest/testing/index.d.ts +2 -1
  94. package/dest/testing/index.d.ts.map +1 -1
  95. package/dest/testing/index.js +1 -0
  96. package/package.json +41 -37
  97. package/scripts/aztec.sh +66 -0
  98. package/scripts/init.sh +45 -0
  99. package/scripts/new.sh +60 -0
  100. package/scripts/setup_workspace.sh +124 -0
  101. package/src/bin/index.ts +12 -4
  102. package/src/cli/admin_api_key_store.ts +128 -0
  103. package/src/cli/aztec_start_action.ts +61 -16
  104. package/src/cli/aztec_start_options.ts +47 -36
  105. package/src/cli/cli.ts +11 -11
  106. package/src/cli/cmds/compile.ts +184 -0
  107. package/src/cli/cmds/migrate_ha_db.ts +43 -0
  108. package/src/cli/cmds/profile.ts +25 -0
  109. package/src/cli/cmds/profile_flamegraph.ts +63 -0
  110. package/src/cli/cmds/profile_gates.ts +67 -0
  111. package/src/cli/cmds/profile_utils.ts +58 -0
  112. package/src/cli/cmds/start_archiver.ts +7 -18
  113. package/src/cli/cmds/start_bot.ts +9 -6
  114. package/src/cli/cmds/start_node.ts +55 -13
  115. package/src/cli/cmds/start_p2p_bootstrap.ts +3 -3
  116. package/src/cli/cmds/start_prover_agent.ts +4 -12
  117. package/src/cli/cmds/start_prover_broker.ts +7 -3
  118. package/src/cli/cmds/utils/artifacts.ts +44 -0
  119. package/src/cli/cmds/utils/spawn.ts +16 -0
  120. package/src/cli/util.ts +22 -27
  121. package/src/examples/token.ts +6 -8
  122. package/src/examples/util.ts +1 -1
  123. package/src/index.ts +2 -2
  124. package/src/{sandbox → local-network}/banana_fpc.ts +11 -7
  125. package/src/{sandbox → local-network}/index.ts +1 -1
  126. package/src/local-network/local-network.ts +267 -0
  127. package/src/{sandbox → local-network}/sponsored_fpc.ts +3 -2
  128. package/src/testing/anvil_test_watcher.ts +76 -30
  129. package/src/testing/cheat_codes.ts +3 -2
  130. package/src/testing/epoch_test_settler.ts +71 -0
  131. package/src/testing/index.ts +1 -0
  132. package/dest/cli/cmds/start_blob_sink.d.ts +0 -3
  133. package/dest/cli/cmds/start_blob_sink.d.ts.map +0 -1
  134. package/dest/cli/cmds/start_blob_sink.js +0 -33
  135. package/dest/cli/cmds/start_prover_node.d.ts +0 -7
  136. package/dest/cli/cmds/start_prover_node.d.ts.map +0 -1
  137. package/dest/cli/cmds/start_prover_node.js +0 -108
  138. package/dest/sandbox/banana_fpc.d.ts +0 -10
  139. package/dest/sandbox/banana_fpc.d.ts.map +0 -1
  140. package/dest/sandbox/index.d.ts +0 -4
  141. package/dest/sandbox/index.d.ts.map +0 -1
  142. package/dest/sandbox/sandbox.d.ts +0 -74
  143. package/dest/sandbox/sandbox.d.ts.map +0 -1
  144. package/dest/sandbox/sponsored_fpc.d.ts +0 -4
  145. package/dest/sandbox/sponsored_fpc.d.ts.map +0 -1
  146. package/src/cli/cmds/start_blob_sink.ts +0 -57
  147. package/src/cli/cmds/start_prover_node.ts +0 -124
  148. package/src/sandbox/sandbox.ts +0 -242
  149. /package/dest/{sandbox → local-network}/sponsored_fpc.js +0 -0
package/src/cli/util.ts CHANGED
@@ -1,15 +1,14 @@
1
1
  import type { AztecNodeConfig } from '@aztec/aztec-node';
2
- import { EthAddress } from '@aztec/aztec.js/addresses';
3
- import { Fr } from '@aztec/aztec.js/fields';
4
- import { AccountManager } from '@aztec/aztec.js/wallet';
5
- import type { ViemClient } from '@aztec/ethereum';
2
+ import type { AccountManager } from '@aztec/aztec.js/wallet';
3
+ import type { ViemClient } from '@aztec/ethereum/types';
6
4
  import type { ConfigMappingsType } from '@aztec/foundation/config';
5
+ import { EthAddress } from '@aztec/foundation/eth-address';
6
+ import { jsonStringify } from '@aztec/foundation/json-rpc';
7
7
  import { type LogFn, createLogger } from '@aztec/foundation/log';
8
8
  import type { SharedNodeConfig } from '@aztec/node-lib/config';
9
9
  import type { ProverConfig } from '@aztec/stdlib/interfaces/server';
10
- import { UpdateChecker } from '@aztec/stdlib/update-checker';
11
- import { getTelemetryClient } from '@aztec/telemetry-client';
12
- import type { TestWallet } from '@aztec/test-wallet/server';
10
+ import { getTelemetryClient } from '@aztec/telemetry-client/start';
11
+ import type { EmbeddedWallet } from '@aztec/wallets/embedded';
13
12
 
14
13
  import chalk from 'chalk';
15
14
  import type { Command } from 'commander';
@@ -37,7 +36,7 @@ export function shutdown(logFn: LogFn, exitCode: ExitCode, cb?: Array<() => Prom
37
36
 
38
37
  logFn('Shutting down...', { exitCode });
39
38
  if (cb) {
40
- shutdownPromise = Promise.allSettled(cb).then(() => process.exit(exitCode));
39
+ shutdownPromise = Promise.allSettled(cb.map(fn => fn())).then(() => process.exit(exitCode));
41
40
  } else {
42
41
  // synchronously shuts down the process
43
42
  // no need to set shutdownPromise on this branch of the if statement because no more code will be executed
@@ -69,30 +68,19 @@ export const installSignalHandlers = (logFn: LogFn, cb?: Array<() => Promise<voi
69
68
  /**
70
69
  * Creates logs for the initial accounts
71
70
  * @param accounts - The initial accounts
72
- * @param wallet - A TestWallet instance to get the registered accounts
71
+ * @param wallet - A EmbeddedWallet instance to get the registered accounts
73
72
  * @returns A string array containing the initial accounts details
74
73
  */
75
- export async function createAccountLogs(
76
- accountsWithSecretKeys: {
77
- /**
78
- * The account object
79
- */
80
- account: AccountManager;
81
- /**
82
- * The secret key of the account
83
- */
84
- secretKey: Fr;
85
- }[],
86
- wallet: TestWallet,
87
- ) {
74
+ export async function createAccountLogs(accountManagers: AccountManager[], wallet: EmbeddedWallet) {
88
75
  const registeredAccounts = await wallet.getAccounts();
89
76
  const accountLogStrings = [`Initial Accounts:\n\n`];
90
- for (const accountWithSecretKey of accountsWithSecretKeys) {
91
- const completeAddress = await accountWithSecretKey.account.getCompleteAddress();
77
+ for (const accountManager of accountManagers) {
78
+ const account = await accountManager.getAccount();
79
+ const completeAddress = account.getCompleteAddress();
92
80
  if (registeredAccounts.find(a => a.item.equals(completeAddress.address))) {
93
81
  accountLogStrings.push(` Address: ${completeAddress.address.toString()}\n`);
94
82
  accountLogStrings.push(` Partial Address: ${completeAddress.partialAddress.toString()}\n`);
95
- accountLogStrings.push(` Secret Key: ${accountWithSecretKey.secretKey.toString()}\n`);
83
+ accountLogStrings.push(` Secret Key: ${account.getSecretKey().toString()}\n`);
96
84
  accountLogStrings.push(
97
85
  ` Master nullifier public key: ${completeAddress.publicKeys.masterNullifierPublicKey.toString()}\n`,
98
86
  );
@@ -283,7 +271,7 @@ export async function preloadCrsDataForVerifying(
283
271
  ): Promise<void> {
284
272
  if (realProofs) {
285
273
  const { Crs, GrumpkinCrs } = await import('@aztec/bb.js');
286
- await Promise.all([Crs.new(2 ** 1, undefined, log), GrumpkinCrs.new(2 ** 16 + 1, undefined, log)]);
274
+ await Promise.all([Crs.new(2 ** 1, undefined, log), GrumpkinCrs.new(2 ** 16, undefined, log)]);
287
275
  }
288
276
  }
289
277
 
@@ -298,7 +286,7 @@ export async function preloadCrsDataForServerSideProving(
298
286
  ): Promise<void> {
299
287
  if (realProofs) {
300
288
  const { Crs, GrumpkinCrs } = await import('@aztec/bb.js');
301
- await Promise.all([Crs.new(2 ** 25 + 1, undefined, log), GrumpkinCrs.new(2 ** 18 + 1, undefined, log)]);
289
+ await Promise.all([Crs.new(2 ** 25, undefined, log), GrumpkinCrs.new(2 ** 18, undefined, log)]);
302
290
  }
303
291
  }
304
292
 
@@ -312,6 +300,7 @@ export async function setupUpdateMonitor(
312
300
  updateNodeConfig?: (config: object) => Promise<void>,
313
301
  ) {
314
302
  const logger = createLogger('update-check');
303
+ const { UpdateChecker } = await import('@aztec/stdlib/update-checker');
315
304
  const checker = await UpdateChecker.new({
316
305
  baseURL: updatesLocation,
317
306
  publicClient,
@@ -388,3 +377,9 @@ export async function setupUpdateMonitor(
388
377
 
389
378
  checker.start();
390
379
  }
380
+
381
+ export function stringifyConfig(config: object): string {
382
+ return Object.entries(config)
383
+ .map(([key, value]) => `${key}=${jsonStringify(value)}`)
384
+ .join(' ');
385
+ }
@@ -2,7 +2,7 @@ import { getInitialTestAccountsData } from '@aztec/accounts/testing';
2
2
  import { createAztecNodeClient } from '@aztec/aztec.js/node';
3
3
  import { createLogger } from '@aztec/foundation/log';
4
4
  import { TokenContract } from '@aztec/noir-contracts.js/Token';
5
- import { TestWallet } from '@aztec/test-wallet/server';
5
+ import { EmbeddedWallet } from '@aztec/wallets/embedded';
6
6
 
7
7
  const logger = createLogger('example:token');
8
8
 
@@ -19,9 +19,9 @@ const TRANSFER_AMOUNT = 33n;
19
19
  async function main() {
20
20
  logger.info('Running token contract test on HTTP interface.');
21
21
 
22
- const wallet = await TestWallet.create(node);
22
+ const wallet = await EmbeddedWallet.create(node);
23
23
 
24
- // During sandbox setup we deploy a few accounts. Below we add them to our wallet.
24
+ // During local network setup we deploy a few accounts. Below we add them to our wallet.
25
25
  const [aliceInitialAccountData, bobInitialAccountData] = await getInitialTestAccountsData();
26
26
  await wallet.createSchnorrAccount(aliceInitialAccountData.secret, aliceInitialAccountData.salt);
27
27
  await wallet.createSchnorrAccount(bobInitialAccountData.secret, bobInitialAccountData.salt);
@@ -32,14 +32,12 @@ async function main() {
32
32
  logger.info(`Fetched Alice and Bob accounts: ${alice.toString()}, ${bob.toString()}`);
33
33
 
34
34
  logger.info('Deploying Token...');
35
- const token = await TokenContract.deploy(wallet, alice, 'TokenName', 'TokenSymbol', 18)
36
- .send({ from: alice })
37
- .deployed();
35
+ const token = await TokenContract.deploy(wallet, alice, 'TokenName', 'TokenSymbol', 18).send({ from: alice });
38
36
  logger.info('Token deployed');
39
37
 
40
38
  // Mint tokens to Alice
41
39
  logger.info(`Minting ${ALICE_MINT_BALANCE} more coins to Alice...`);
42
- await token.methods.mint_to_private(alice, ALICE_MINT_BALANCE).send({ from: alice }).wait();
40
+ await token.methods.mint_to_private(alice, ALICE_MINT_BALANCE).send({ from: alice });
43
41
 
44
42
  logger.info(`${ALICE_MINT_BALANCE} tokens were successfully minted by Alice and transferred to private`);
45
43
 
@@ -48,7 +46,7 @@ async function main() {
48
46
 
49
47
  // We will now transfer tokens from Alice to Bob
50
48
  logger.info(`Transferring ${TRANSFER_AMOUNT} tokens from Alice to Bob...`);
51
- await token.methods.transfer(bob, TRANSFER_AMOUNT).send({ from: alice }).wait();
49
+ await token.methods.transfer(bob, TRANSFER_AMOUNT).send({ from: alice });
52
50
 
53
51
  // Check the new balances
54
52
  const aliceBalance = await token.methods.balance_of_private(alice).simulate({ from: alice });
@@ -1,5 +1,5 @@
1
1
  import { EthAddress } from '@aztec/aztec.js/addresses';
2
- import type { ExtendedViemWalletClient } from '@aztec/ethereum';
2
+ import type { ExtendedViemWalletClient } from '@aztec/ethereum/types';
3
3
  import { jsonStringify } from '@aztec/foundation/json-rpc';
4
4
 
5
5
  import type { Abi, Narrow } from 'abitype';
package/src/index.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  export {
2
- createSandbox,
2
+ createLocalNetwork,
3
3
  registerDeployedBananaCoinInWalletAndGetAddress,
4
4
  registerDeployedBananaFPCInWalletAndGetAddress,
5
5
  registerDeployedSponsoredFPCInWalletAndGetAddress,
6
- } from './sandbox/index.js';
6
+ } from './local-network/index.js';
@@ -1,6 +1,6 @@
1
1
  import { type InitialAccountData, getInitialTestAccountsData } from '@aztec/accounts/testing';
2
2
  import type { Wallet } from '@aztec/aztec.js/wallet';
3
- import { Fr } from '@aztec/foundation/fields';
3
+ import { Fr } from '@aztec/foundation/curves/bn254';
4
4
  import type { LogFn } from '@aztec/foundation/log';
5
5
  import { FPCContract } from '@aztec/noir-contracts.js/FPC';
6
6
  import { TokenContract } from '@aztec/noir-contracts.js/Token';
@@ -49,12 +49,16 @@ export async function setupBananaFPC(initialAccounts: InitialAccountData[], wall
49
49
  const bananaCoinAddress = await getBananaCoinAddress(initialAccounts);
50
50
  const admin = getBananaAdmin(initialAccounts);
51
51
  const [bananaCoin, fpc] = await Promise.all([
52
- TokenContract.deploy(wallet, admin, bananaCoinArgs.name, bananaCoinArgs.symbol, bananaCoinArgs.decimal)
53
- .send({ from: admin, contractAddressSalt: BANANA_COIN_SALT, universalDeploy: true })
54
- .deployed(),
55
- FPCContract.deploy(wallet, bananaCoinAddress, admin)
56
- .send({ from: admin, contractAddressSalt: BANANA_FPC_SALT, universalDeploy: true })
57
- .deployed(),
52
+ TokenContract.deploy(wallet, admin, bananaCoinArgs.name, bananaCoinArgs.symbol, bananaCoinArgs.decimal).send({
53
+ from: admin,
54
+ contractAddressSalt: BANANA_COIN_SALT,
55
+ universalDeploy: true,
56
+ }),
57
+ FPCContract.deploy(wallet, bananaCoinAddress, admin).send({
58
+ from: admin,
59
+ contractAddressSalt: BANANA_FPC_SALT,
60
+ universalDeploy: true,
61
+ }),
58
62
  ]);
59
63
 
60
64
  log(`BananaCoin: ${bananaCoin.address}`);
@@ -1,4 +1,4 @@
1
- export * from './sandbox.js';
1
+ export * from './local-network.js';
2
2
 
3
3
  export {
4
4
  registerDeployedBananaCoinInWalletAndGetAddress,
@@ -0,0 +1,267 @@
1
+ #!/usr/bin/env -S node --no-warnings
2
+ import { getInitialTestAccountsData } from '@aztec/accounts/testing';
3
+ import { AztecNodeService } from '@aztec/aztec-node';
4
+ import { type AztecNodeConfig, getConfigEnvVars } from '@aztec/aztec-node/config';
5
+ import { Fr } from '@aztec/aztec.js/fields';
6
+ import { createLogger } from '@aztec/aztec.js/log';
7
+ import { type BlobClientInterface, createBlobClient } from '@aztec/blob-client/client';
8
+ import { GENESIS_ARCHIVE_ROOT } from '@aztec/constants';
9
+ import { createEthereumChain } from '@aztec/ethereum/chain';
10
+ import { waitForPublicClient } from '@aztec/ethereum/client';
11
+ import { getL1ContractsConfigEnvVars } from '@aztec/ethereum/config';
12
+ import { NULL_KEY } from '@aztec/ethereum/constants';
13
+ import { deployAztecL1Contracts } from '@aztec/ethereum/deploy-aztec-l1-contracts';
14
+ import { EthCheatCodes } from '@aztec/ethereum/test';
15
+ import { SecretValue } from '@aztec/foundation/config';
16
+ import { EthAddress } from '@aztec/foundation/eth-address';
17
+ import type { LogFn } from '@aztec/foundation/log';
18
+ import { DateProvider, TestDateProvider } from '@aztec/foundation/timer';
19
+ import { getVKTreeRoot } from '@aztec/noir-protocol-circuits-types/vk-tree';
20
+ import { protocolContractsHash } from '@aztec/protocol-contracts';
21
+ import { SequencerState } from '@aztec/sequencer-client';
22
+ import type { ProvingJobBroker } from '@aztec/stdlib/interfaces/server';
23
+ import type { PublicDataTreeLeaf } from '@aztec/stdlib/trees';
24
+ import {
25
+ type TelemetryClient,
26
+ getConfigEnvVars as getTelemetryClientConfig,
27
+ initTelemetryClient,
28
+ } from '@aztec/telemetry-client';
29
+ import { EmbeddedWallet } from '@aztec/wallets/embedded';
30
+ import { deployFundedSchnorrAccounts } from '@aztec/wallets/testing';
31
+ import { getGenesisValues } from '@aztec/world-state/testing';
32
+
33
+ import { type Hex, createPublicClient, fallback, http as httpViemTransport } from 'viem';
34
+ import { mnemonicToAccount, privateKeyToAddress } from 'viem/accounts';
35
+ import { foundry } from 'viem/chains';
36
+
37
+ import { createAccountLogs } from '../cli/util.js';
38
+ import { DefaultMnemonic } from '../mnemonic.js';
39
+ import { AnvilTestWatcher } from '../testing/anvil_test_watcher.js';
40
+ import { EpochTestSettler } from '../testing/epoch_test_settler.js';
41
+ import { getBananaFPCAddress, setupBananaFPC } from './banana_fpc.js';
42
+ import { getSponsoredFPCAddress } from './sponsored_fpc.js';
43
+
44
+ const logger = createLogger('local-network');
45
+
46
+ const localAnvil = foundry;
47
+
48
+ /**
49
+ * Function to deploy our L1 contracts to the local network L1
50
+ * @param aztecNodeConfig - The Aztec Node Config
51
+ * @param hdAccount - Account for publishing L1 contracts
52
+ */
53
+ export async function deployContractsToL1(
54
+ aztecNodeConfig: AztecNodeConfig,
55
+ privateKey: Hex,
56
+ opts: {
57
+ genesisArchiveRoot?: Fr;
58
+ feeJuicePortalInitialBalance?: bigint;
59
+ } = {},
60
+ ) {
61
+ await waitForPublicClient(aztecNodeConfig);
62
+
63
+ const l1Contracts = await deployAztecL1Contracts(aztecNodeConfig.l1RpcUrls[0], privateKey, foundry.id, {
64
+ ...getL1ContractsConfigEnvVars(), // TODO: We should not need to be loading config from env again, caller should handle this
65
+ ...aztecNodeConfig,
66
+ vkTreeRoot: getVKTreeRoot(),
67
+ protocolContractsHash,
68
+ genesisArchiveRoot: opts.genesisArchiveRoot ?? new Fr(GENESIS_ARCHIVE_ROOT),
69
+ feeJuicePortalInitialBalance: opts.feeJuicePortalInitialBalance,
70
+ aztecTargetCommitteeSize: 0, // no committee in local network
71
+ slasherFlavor: 'none', // no slashing in local network
72
+ realVerifier: false,
73
+ });
74
+
75
+ aztecNodeConfig.l1Contracts = l1Contracts.l1ContractAddresses;
76
+ aztecNodeConfig.rollupVersion = l1Contracts.rollupVersion;
77
+
78
+ return aztecNodeConfig.l1Contracts;
79
+ }
80
+
81
+ /** Local network settings. */
82
+ export type LocalNetworkConfig = AztecNodeConfig & {
83
+ /** Mnemonic used to derive the L1 deployer private key.*/
84
+ l1Mnemonic: string;
85
+ /** Whether to deploy test accounts on local network start.*/
86
+ testAccounts: boolean;
87
+ };
88
+
89
+ /**
90
+ * Create and start a new Aztec Node and PXE. Deploys L1 contracts.
91
+ * Does not start any HTTP services nor populate any initial accounts.
92
+ * @param config - Optional local network settings.
93
+ */
94
+ export async function createLocalNetwork(config: Partial<LocalNetworkConfig> = {}, userLog: LogFn) {
95
+ // local network is meant for test envs. We should only need one l1RpcUrl
96
+ const l1RpcUrl = config.l1RpcUrls?.[0];
97
+ if (!l1RpcUrl) {
98
+ throw new Error('An L1 RPC URL is required');
99
+ }
100
+ if ((config.l1RpcUrls?.length || 0) > 1) {
101
+ logger.warn(`Multiple L1 RPC URLs provided. Local networks will only use the first one: ${l1RpcUrl}`);
102
+ }
103
+
104
+ const aztecNodeConfig: AztecNodeConfig = {
105
+ ...getConfigEnvVars(),
106
+ ...config,
107
+ };
108
+ const hdAccount = mnemonicToAccount(config.l1Mnemonic || DefaultMnemonic);
109
+ if (
110
+ aztecNodeConfig.sequencerPublisherPrivateKeys == undefined ||
111
+ !aztecNodeConfig.sequencerPublisherPrivateKeys.length ||
112
+ aztecNodeConfig.sequencerPublisherPrivateKeys[0].getValue() === NULL_KEY
113
+ ) {
114
+ const privKey = hdAccount.getHdKey().privateKey;
115
+ aztecNodeConfig.sequencerPublisherPrivateKeys = [
116
+ new SecretValue(`0x${Buffer.from(privKey!).toString('hex')}` as const),
117
+ ];
118
+ }
119
+ if (!aztecNodeConfig.validatorPrivateKeys?.getValue().length) {
120
+ const privKey = hdAccount.getHdKey().privateKey;
121
+ aztecNodeConfig.validatorPrivateKeys = new SecretValue([`0x${Buffer.from(privKey!).toString('hex')}`]);
122
+ }
123
+ aztecNodeConfig.coinbase = EthAddress.fromString(
124
+ privateKeyToAddress(aztecNodeConfig.validatorPrivateKeys.getValue()[0]),
125
+ );
126
+
127
+ const initialAccounts = await (async () => {
128
+ if (config.testAccounts === true || config.testAccounts === undefined) {
129
+ if (aztecNodeConfig.p2pEnabled) {
130
+ userLog(`Not setting up test accounts as we are connecting to a network`);
131
+ } else {
132
+ userLog(`Setting up test accounts`);
133
+ return await getInitialTestAccountsData();
134
+ }
135
+ }
136
+ return [];
137
+ })();
138
+
139
+ const bananaFPC = await getBananaFPCAddress(initialAccounts);
140
+ const sponsoredFPC = await getSponsoredFPCAddress();
141
+ const fundedAddresses = initialAccounts.length
142
+ ? [...initialAccounts.map(a => a.address), bananaFPC, sponsoredFPC]
143
+ : [];
144
+ const { genesisArchiveRoot, prefilledPublicData, fundingNeeded } = await getGenesisValues(fundedAddresses);
145
+
146
+ const dateProvider = new TestDateProvider();
147
+
148
+ let cheatcodes: EthCheatCodes | undefined;
149
+ let rollupAddress: EthAddress | undefined;
150
+ let watcher: AnvilTestWatcher | undefined;
151
+ if (!aztecNodeConfig.p2pEnabled) {
152
+ ({ rollupAddress } = await deployContractsToL1(
153
+ aztecNodeConfig,
154
+ aztecNodeConfig.validatorPrivateKeys.getValue()[0],
155
+ {
156
+ genesisArchiveRoot,
157
+ feeJuicePortalInitialBalance: fundingNeeded,
158
+ },
159
+ ));
160
+
161
+ const chain =
162
+ aztecNodeConfig.l1RpcUrls.length > 0
163
+ ? createEthereumChain([l1RpcUrl], aztecNodeConfig.l1ChainId)
164
+ : { chainInfo: localAnvil };
165
+
166
+ const publicClient = createPublicClient({
167
+ chain: chain.chainInfo,
168
+ transport: fallback([httpViemTransport(l1RpcUrl)]) as any,
169
+ });
170
+
171
+ cheatcodes = new EthCheatCodes([l1RpcUrl], dateProvider);
172
+
173
+ watcher = new AnvilTestWatcher(cheatcodes, rollupAddress, publicClient, dateProvider);
174
+ watcher.setisLocalNetwork(true);
175
+ watcher.setIsMarkingAsProven(false); // Do not mark as proven in the watcher. It's marked in the epochTestSettler after the out hash is set.
176
+
177
+ await watcher.start();
178
+ }
179
+
180
+ const telemetry = await initTelemetryClient(getTelemetryClientConfig());
181
+ // Create a local blob client client inside the local network, no http connectivity
182
+ const blobClient = createBlobClient();
183
+ const node = await createAztecNode(aztecNodeConfig, { telemetry, blobClient, dateProvider }, { prefilledPublicData });
184
+
185
+ // Now that the node is up, let the watcher check for pending txs so it can skip unfilled slots faster when
186
+ // transactions are waiting in the mempool. Also let it check if the sequencer is actively building, to avoid
187
+ // warping time out from under an in-progress block.
188
+ watcher?.setGetPendingTxCount(() => node.getPendingTxCount());
189
+ const sequencer = node.getSequencer()?.getSequencer();
190
+ if (sequencer) {
191
+ const idleStates: Set<string> = new Set([
192
+ SequencerState.STOPPED,
193
+ SequencerState.STOPPING,
194
+ SequencerState.IDLE,
195
+ SequencerState.SYNCHRONIZING,
196
+ ]);
197
+ watcher?.setIsSequencerBuilding(() => !idleStates.has(sequencer.getState()));
198
+ }
199
+
200
+ let epochTestSettler: EpochTestSettler | undefined;
201
+ if (!aztecNodeConfig.p2pEnabled) {
202
+ epochTestSettler = new EpochTestSettler(
203
+ cheatcodes!,
204
+ rollupAddress!,
205
+ node.getBlockSource(),
206
+ logger.createChild('epoch-settler'),
207
+ { pollingIntervalMs: 200 },
208
+ );
209
+ await epochTestSettler.start();
210
+ }
211
+
212
+ if (initialAccounts.length) {
213
+ const wallet = await EmbeddedWallet.create(node, {
214
+ pxeConfig: { proverEnabled: aztecNodeConfig.realProofs },
215
+ ephemeral: true,
216
+ });
217
+
218
+ userLog('Setting up funded test accounts...');
219
+ const accountManagers = await deployFundedSchnorrAccounts(wallet, initialAccounts);
220
+ const accLogs = await createAccountLogs(accountManagers, wallet);
221
+ userLog(accLogs.join(''));
222
+
223
+ await setupBananaFPC(initialAccounts, wallet, userLog);
224
+
225
+ userLog(`SponsoredFPC: ${await getSponsoredFPCAddress()}`);
226
+
227
+ // We no longer need the wallet once we've setup the accounts so we stop the underlying PXE job queue
228
+ await wallet.stop();
229
+ }
230
+
231
+ const stop = async () => {
232
+ await node.stop();
233
+ await watcher?.stop();
234
+ await epochTestSettler?.stop();
235
+ };
236
+
237
+ return { node, stop };
238
+ }
239
+
240
+ /**
241
+ * Create and start a new Aztec RPC HTTP Server
242
+ * @param config - Optional Aztec node settings.
243
+ */
244
+ export async function createAztecNode(
245
+ config: Partial<AztecNodeConfig> = {},
246
+ deps: {
247
+ telemetry?: TelemetryClient;
248
+ blobClient?: BlobClientInterface;
249
+ dateProvider?: DateProvider;
250
+ proverBroker?: ProvingJobBroker;
251
+ } = {},
252
+ options: { prefilledPublicData?: PublicDataTreeLeaf[] } = {},
253
+ ) {
254
+ // TODO(#12272): will clean this up. This is criminal.
255
+ const { l1Contracts, ...rest } = getConfigEnvVars();
256
+ const aztecNodeConfig: AztecNodeConfig = {
257
+ ...rest,
258
+ ...config,
259
+ l1Contracts: { ...l1Contracts, ...config.l1Contracts },
260
+ };
261
+ const node = await AztecNodeService.createAndSync(
262
+ aztecNodeConfig,
263
+ { ...deps, proverNodeDeps: { broker: deps.proverBroker } },
264
+ options,
265
+ );
266
+ return node;
267
+ }
@@ -1,3 +1,4 @@
1
+ import type { AztecAddress } from '@aztec/aztec.js/addresses';
1
2
  import {
2
3
  type ContractInstanceWithAddress,
3
4
  getContractInstanceFromInstantiationParams,
@@ -13,11 +14,11 @@ async function getSponsoredFPCInstance(): Promise<ContractInstanceWithAddress> {
13
14
  });
14
15
  }
15
16
 
16
- export async function getSponsoredFPCAddress() {
17
+ export async function getSponsoredFPCAddress(): Promise<AztecAddress> {
17
18
  return (await getSponsoredFPCInstance()).address;
18
19
  }
19
20
 
20
- export async function registerDeployedSponsoredFPCInWalletAndGetAddress(wallet: Wallet) {
21
+ export async function registerDeployedSponsoredFPCInWalletAndGetAddress(wallet: Wallet): Promise<AztecAddress> {
21
22
  const fpc = await getSponsoredFPCInstance();
22
23
  // The following is no-op if the contract is already registered
23
24
  await wallet.registerContract(fpc, SponsoredFPCContract.artifact);
@@ -1,5 +1,6 @@
1
- import type { ViemClient } from '@aztec/ethereum';
2
1
  import { EthCheatCodes, RollupCheatCodes } from '@aztec/ethereum/test';
2
+ import type { ViemClient } from '@aztec/ethereum/types';
3
+ import { SlotNumber } from '@aztec/foundation/branded-types';
3
4
  import type { EthAddress } from '@aztec/foundation/eth-address';
4
5
  import { type Logger, createLogger } from '@aztec/foundation/log';
5
6
  import { RunningPromise } from '@aztec/foundation/running-promise';
@@ -16,11 +17,11 @@ import { type GetContractReturnType, getAddress, getContract } from 'viem';
16
17
  * block within the slot. And if so, it will time travel into the next slot.
17
18
  */
18
19
  export class AnvilTestWatcher {
19
- private isSandbox: boolean = false;
20
+ private isLocalNetwork: boolean = false;
20
21
 
21
22
  private rollup: GetContractReturnType<typeof RollupAbi, ViemClient>;
22
23
  private rollupCheatCodes: RollupCheatCodes;
23
- private l2SlotDuration!: bigint;
24
+ private l2SlotDuration!: number;
24
25
 
25
26
  private filledRunningPromise?: RunningPromise;
26
27
  private syncDateProviderPromise?: RunningPromise;
@@ -30,6 +31,15 @@ export class AnvilTestWatcher {
30
31
 
31
32
  private isMarkingAsProven = true;
32
33
 
34
+ // Optional callback to check if there are pending txs in the mempool.
35
+ private getPendingTxCount?: () => Promise<number>;
36
+
37
+ // Optional callback to check if the sequencer is actively building a block.
38
+ private isSequencerBuilding?: () => boolean;
39
+
40
+ // Tracks when we first observed the current unfilled slot with pending txs (real wall time).
41
+ private unfilledSlotFirstSeen?: { slot: number; realTime: number };
42
+
33
43
  constructor(
34
44
  private cheatcodes: EthCheatCodes,
35
45
  rollupAddress: EthAddress,
@@ -54,8 +64,18 @@ export class AnvilTestWatcher {
54
64
  this.isMarkingAsProven = isMarkingAsProven;
55
65
  }
56
66
 
57
- setIsSandbox(isSandbox: boolean) {
58
- this.isSandbox = isSandbox;
67
+ setisLocalNetwork(isLocalNetwork: boolean) {
68
+ this.isLocalNetwork = isLocalNetwork;
69
+ }
70
+
71
+ /** Sets a callback to check for pending txs, used to skip unfilled slots faster when txs are waiting. */
72
+ setGetPendingTxCount(fn: () => Promise<number>) {
73
+ this.getPendingTxCount = fn;
74
+ }
75
+
76
+ /** Sets a callback to check if the sequencer is actively building, to avoid warping while it works. */
77
+ setIsSequencerBuilding(fn: () => boolean) {
78
+ this.isSequencerBuilding = fn;
59
79
  }
60
80
 
61
81
  async start() {
@@ -68,7 +88,7 @@ export class AnvilTestWatcher {
68
88
 
69
89
  // If auto mining is not supported (e.g., we are on a real network), then we
70
90
  // will simple do nothing. But if on an anvil or the like, this make sure that
71
- // the sandbox and tests don't break because time is frozen and we never get to
91
+ // the local network and tests don't break because time is frozen and we never get to
72
92
  // the next slot.
73
93
  const isAutoMining = await this.cheatcodes.isAutoMining();
74
94
 
@@ -105,7 +125,7 @@ export class AnvilTestWatcher {
105
125
  }
106
126
 
107
127
  async syncDateProviderToL1IfBehind() {
108
- // this doesn't apply to the sandbox, because we don't have a date provider in the sandbox
128
+ // this doesn't apply to the local network, because we don't have a date provider in the local network
109
129
  if (!this.dateProvider) {
110
130
  return;
111
131
  }
@@ -123,42 +143,68 @@ export class AnvilTestWatcher {
123
143
 
124
144
  async warpTimeIfNeeded() {
125
145
  try {
126
- const currentSlot = await this.rollup.read.getCurrentSlot();
127
- const pendingBlockNumber = BigInt(await this.rollup.read.getPendingBlockNumber());
128
- const blockLog = await this.rollup.read.getBlock([pendingBlockNumber]);
129
- const nextSlotTimestamp = Number(await this.rollup.read.getTimestampForSlot([currentSlot + 1n]));
130
-
131
- if (currentSlot === blockLog.slotNumber) {
132
- // We should jump to the next slot
133
- try {
134
- await this.cheatcodes.warp(nextSlotTimestamp, {
135
- resetBlockInterval: true,
136
- });
137
- } catch (e) {
138
- this.logger.error(`Failed to warp to timestamp ${nextSlotTimestamp}: ${e}`);
139
- }
140
-
146
+ const currentSlot = SlotNumber.fromBigInt(await this.rollup.read.getCurrentSlot());
147
+ const pendingCheckpointNumber = await this.rollup.read.getPendingCheckpointNumber();
148
+ const checkpointLog = await this.rollup.read.getCheckpoint([pendingCheckpointNumber]);
149
+ const nextSlot = SlotNumber(currentSlot + 1);
150
+ const nextSlotTimestamp = Number(await this.rollup.read.getTimestampForSlot([BigInt(nextSlot)]));
151
+
152
+ if (BigInt(currentSlot) === checkpointLog.slotNumber) {
153
+ // The current slot has been filled, we should jump to the next slot.
154
+ await this.warpToTimestamp(nextSlotTimestamp);
141
155
  this.logger.info(`Slot ${currentSlot} was filled, jumped to next slot`);
142
156
  return;
143
157
  }
144
158
 
145
- // If we are not in sandbox, we don't need to warp time
146
- if (!this.isSandbox) {
159
+ // If we are not in local network, we don't need to warp time
160
+ if (!this.isLocalNetwork) {
147
161
  return;
148
162
  }
149
163
 
150
- const currentTimestamp = this.dateProvider?.now() ?? Date.now();
151
- if (currentTimestamp > nextSlotTimestamp * 1000) {
152
- try {
153
- await this.cheatcodes.warp(nextSlotTimestamp, { resetBlockInterval: true });
154
- } catch (e) {
155
- this.logger.error(`Failed to warp to timestamp ${nextSlotTimestamp}: ${e}`);
164
+ // If there are pending txs and the sequencer missed them, warp quickly (after a 2s real-time debounce) so the
165
+ // sequencer can retry in the next slot. Without this, we'd have to wait a full real-time slot duration (~36s) for
166
+ // the dateProvider to catch up to the next slot timestamp. We skip the warp if the sequencer is actively building
167
+ // to avoid invalidating its in-progress work.
168
+ if (this.getPendingTxCount) {
169
+ const pendingTxs = await this.getPendingTxCount();
170
+ if (pendingTxs > 0) {
171
+ if (this.isSequencerBuilding?.()) {
172
+ this.unfilledSlotFirstSeen = undefined;
173
+ return;
174
+ }
175
+
176
+ const realNow = Date.now();
177
+ if (!this.unfilledSlotFirstSeen || this.unfilledSlotFirstSeen.slot !== currentSlot) {
178
+ this.unfilledSlotFirstSeen = { slot: currentSlot, realTime: realNow };
179
+ return;
180
+ }
181
+
182
+ if (realNow - this.unfilledSlotFirstSeen.realTime > 2000) {
183
+ await this.warpToTimestamp(nextSlotTimestamp);
184
+ this.unfilledSlotFirstSeen = undefined;
185
+ this.logger.info(`Slot ${currentSlot} was missed with pending txs, jumped to next slot`);
186
+ }
187
+
188
+ return;
156
189
  }
190
+ }
157
191
 
192
+ // Fallback: warp when the dateProvider time has passed the next slot timestamp.
193
+ const currentTimestamp = this.dateProvider?.now() ?? Date.now();
194
+ if (currentTimestamp > nextSlotTimestamp * 1000) {
195
+ await this.warpToTimestamp(nextSlotTimestamp);
158
196
  this.logger.info(`Slot ${currentSlot} was missed, jumped to next slot`);
159
197
  }
160
198
  } catch {
161
199
  this.logger.error('mineIfSlotFilled failed');
162
200
  }
163
201
  }
202
+
203
+ private async warpToTimestamp(timestamp: number) {
204
+ try {
205
+ await this.cheatcodes.warp(timestamp, { resetBlockInterval: true });
206
+ } catch (e) {
207
+ this.logger.error(`Failed to warp to timestamp ${timestamp}: ${e}`);
208
+ }
209
+ }
164
210
  }