@aztec/aztec 0.0.0-test.1 → 0.0.1-commit.001888fc

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 (194) hide show
  1. package/README.md +1 -1
  2. package/dest/bin/index.d.ts +1 -1
  3. package/dest/bin/index.js +28 -13
  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 +89 -44
  10. package/dest/cli/aztec_start_options.d.ts +5 -3
  11. package/dest/cli/aztec_start_options.d.ts.map +1 -1
  12. package/dest/cli/aztec_start_options.js +157 -220
  13. package/dest/cli/cli.d.ts +1 -1
  14. package/dest/cli/cli.d.ts.map +1 -1
  15. package/dest/cli/cli.js +11 -7
  16. package/dest/cli/cmds/compile.d.ts +4 -0
  17. package/dest/cli/cmds/compile.d.ts.map +1 -0
  18. package/dest/cli/cmds/compile.js +166 -0
  19. package/dest/cli/cmds/migrate_ha_db.d.ts +3 -0
  20. package/dest/cli/cmds/migrate_ha_db.d.ts.map +1 -0
  21. package/dest/cli/cmds/migrate_ha_db.js +27 -0
  22. package/dest/cli/cmds/profile.d.ts +4 -0
  23. package/dest/cli/cmds/profile.d.ts.map +1 -0
  24. package/dest/cli/cmds/profile.js +8 -0
  25. package/dest/cli/cmds/profile_flamegraph.d.ts +4 -0
  26. package/dest/cli/cmds/profile_flamegraph.d.ts.map +1 -0
  27. package/dest/cli/cmds/profile_flamegraph.js +52 -0
  28. package/dest/cli/cmds/profile_gates.d.ts +4 -0
  29. package/dest/cli/cmds/profile_gates.d.ts.map +1 -0
  30. package/dest/cli/cmds/profile_gates.js +58 -0
  31. package/dest/cli/cmds/profile_utils.d.ts +18 -0
  32. package/dest/cli/cmds/profile_utils.d.ts.map +1 -0
  33. package/dest/cli/cmds/profile_utils.js +50 -0
  34. package/dest/cli/cmds/standby.d.ts +32 -0
  35. package/dest/cli/cmds/standby.d.ts.map +1 -0
  36. package/dest/cli/cmds/standby.js +97 -0
  37. package/dest/cli/cmds/start_archiver.d.ts +2 -2
  38. package/dest/cli/cmds/start_archiver.d.ts.map +1 -1
  39. package/dest/cli/cmds/start_archiver.js +25 -19
  40. package/dest/cli/cmds/start_bot.d.ts +4 -7
  41. package/dest/cli/cmds/start_bot.d.ts.map +1 -1
  42. package/dest/cli/cmds/start_bot.js +29 -14
  43. package/dest/cli/cmds/start_node.d.ts +3 -2
  44. package/dest/cli/cmds/start_node.d.ts.map +1 -1
  45. package/dest/cli/cmds/start_node.js +128 -85
  46. package/dest/cli/cmds/start_p2p_bootstrap.d.ts +2 -2
  47. package/dest/cli/cmds/start_p2p_bootstrap.d.ts.map +1 -1
  48. package/dest/cli/cmds/start_p2p_bootstrap.js +10 -6
  49. package/dest/cli/cmds/start_prover_agent.d.ts +1 -1
  50. package/dest/cli/cmds/start_prover_agent.d.ts.map +1 -1
  51. package/dest/cli/cmds/start_prover_agent.js +35 -6
  52. package/dest/cli/cmds/start_prover_broker.d.ts +1 -1
  53. package/dest/cli/cmds/start_prover_broker.d.ts.map +1 -1
  54. package/dest/cli/cmds/start_prover_broker.js +17 -5
  55. package/dest/cli/cmds/start_txe.d.ts +1 -1
  56. package/dest/cli/cmds/utils/artifacts.d.ts +21 -0
  57. package/dest/cli/cmds/utils/artifacts.d.ts.map +1 -0
  58. package/dest/cli/cmds/utils/artifacts.js +24 -0
  59. package/dest/cli/cmds/utils/needs_recompile.d.ts +10 -0
  60. package/dest/cli/cmds/utils/needs_recompile.d.ts.map +1 -0
  61. package/dest/cli/cmds/utils/needs_recompile.js +134 -0
  62. package/dest/cli/cmds/utils/spawn.d.ts +3 -0
  63. package/dest/cli/cmds/utils/spawn.d.ts.map +1 -0
  64. package/dest/cli/cmds/utils/spawn.js +16 -0
  65. package/dest/cli/index.d.ts +1 -1
  66. package/dest/cli/preload_crs.d.ts +3 -0
  67. package/dest/cli/preload_crs.d.ts.map +1 -0
  68. package/dest/cli/preload_crs.js +6 -0
  69. package/dest/cli/util.d.ts +37 -17
  70. package/dest/cli/util.d.ts.map +1 -1
  71. package/dest/cli/util.js +165 -31
  72. package/dest/cli/versioning.d.ts +1 -1
  73. package/dest/cli/versioning.js +3 -3
  74. package/dest/examples/token.d.ts +1 -1
  75. package/dest/examples/token.js +31 -18
  76. package/dest/examples/util.d.ts +5 -6
  77. package/dest/examples/util.d.ts.map +1 -1
  78. package/dest/examples/util.js +5 -6
  79. package/dest/index.d.ts +2 -2
  80. package/dest/index.d.ts.map +1 -1
  81. package/dest/index.js +1 -1
  82. package/dest/local-network/banana_fpc.d.ts +10 -0
  83. package/dest/local-network/banana_fpc.d.ts.map +1 -0
  84. package/dest/{sandbox → local-network}/banana_fpc.js +23 -25
  85. package/dest/local-network/index.d.ts +4 -0
  86. package/dest/local-network/index.d.ts.map +1 -0
  87. package/dest/local-network/index.js +3 -0
  88. package/dest/local-network/local-network.d.ts +73 -0
  89. package/dest/local-network/local-network.d.ts.map +1 -0
  90. package/dest/local-network/local-network.js +226 -0
  91. package/dest/local-network/sponsored_fpc.d.ts +5 -0
  92. package/dest/local-network/sponsored_fpc.d.ts.map +1 -0
  93. package/dest/local-network/sponsored_fpc.js +18 -0
  94. package/dest/mnemonic.d.ts +1 -1
  95. package/dest/splash.d.ts +1 -1
  96. package/dest/testing/anvil_test_watcher.d.ts +42 -0
  97. package/dest/testing/anvil_test_watcher.d.ts.map +1 -0
  98. package/dest/testing/anvil_test_watcher.js +181 -0
  99. package/dest/testing/cheat_codes.d.ts +43 -0
  100. package/dest/testing/cheat_codes.d.ts.map +1 -0
  101. package/dest/testing/cheat_codes.js +62 -0
  102. package/dest/testing/epoch_test_settler.d.ts +19 -0
  103. package/dest/testing/epoch_test_settler.d.ts.map +1 -0
  104. package/dest/testing/epoch_test_settler.js +61 -0
  105. package/dest/testing/index.d.ts +6 -0
  106. package/dest/testing/index.d.ts.map +1 -0
  107. package/dest/testing/index.js +5 -0
  108. package/dest/testing/token_allowed_setup.d.ts +7 -0
  109. package/dest/testing/token_allowed_setup.d.ts.map +1 -0
  110. package/dest/testing/token_allowed_setup.js +20 -0
  111. package/package.json +55 -45
  112. package/scripts/add_crate.sh +102 -0
  113. package/scripts/aztec.sh +69 -0
  114. package/scripts/init.sh +39 -0
  115. package/scripts/new.sh +83 -0
  116. package/scripts/setup_workspace.sh +68 -0
  117. package/src/bin/index.ts +33 -13
  118. package/src/cli/admin_api_key_store.ts +128 -0
  119. package/src/cli/aztec_start_action.ts +87 -41
  120. package/src/cli/aztec_start_options.ts +176 -218
  121. package/src/cli/cli.ts +19 -11
  122. package/src/cli/cmds/compile.ts +191 -0
  123. package/src/cli/cmds/migrate_ha_db.ts +43 -0
  124. package/src/cli/cmds/profile.ts +25 -0
  125. package/src/cli/cmds/profile_flamegraph.ts +64 -0
  126. package/src/cli/cmds/profile_gates.ts +68 -0
  127. package/src/cli/cmds/profile_utils.ts +58 -0
  128. package/src/cli/cmds/standby.ts +132 -0
  129. package/src/cli/cmds/start_archiver.ts +16 -21
  130. package/src/cli/cmds/start_bot.ts +40 -14
  131. package/src/cli/cmds/start_node.ts +146 -91
  132. package/src/cli/cmds/start_p2p_bootstrap.ts +14 -6
  133. package/src/cli/cmds/start_prover_agent.ts +26 -14
  134. package/src/cli/cmds/start_prover_broker.ts +28 -4
  135. package/src/cli/cmds/utils/artifacts.ts +44 -0
  136. package/src/cli/cmds/utils/needs_recompile.ts +151 -0
  137. package/src/cli/cmds/utils/spawn.ts +16 -0
  138. package/src/cli/preload_crs.ts +7 -0
  139. package/src/cli/util.ts +186 -50
  140. package/src/cli/versioning.ts +3 -3
  141. package/src/examples/token.ts +23 -19
  142. package/src/examples/util.ts +6 -8
  143. package/src/index.ts +5 -6
  144. package/src/{sandbox → local-network}/banana_fpc.ts +28 -29
  145. package/src/local-network/index.ts +7 -0
  146. package/src/local-network/local-network.ts +277 -0
  147. package/src/local-network/sponsored_fpc.ts +26 -0
  148. package/src/testing/anvil_test_watcher.ts +210 -0
  149. package/src/testing/cheat_codes.ts +79 -0
  150. package/src/testing/epoch_test_settler.ts +70 -0
  151. package/src/testing/index.ts +5 -0
  152. package/src/testing/token_allowed_setup.ts +19 -0
  153. package/dest/cli/chain_l2_config.d.ts +0 -19
  154. package/dest/cli/chain_l2_config.d.ts.map +0 -1
  155. package/dest/cli/chain_l2_config.js +0 -56
  156. package/dest/cli/cmds/start_blob_sink.d.ts +0 -3
  157. package/dest/cli/cmds/start_blob_sink.d.ts.map +0 -1
  158. package/dest/cli/cmds/start_blob_sink.js +0 -17
  159. package/dest/cli/cmds/start_faucet.d.ts +0 -4
  160. package/dest/cli/cmds/start_faucet.d.ts.map +0 -1
  161. package/dest/cli/cmds/start_faucet.js +0 -20
  162. package/dest/cli/cmds/start_prover_node.d.ts +0 -7
  163. package/dest/cli/cmds/start_prover_node.d.ts.map +0 -1
  164. package/dest/cli/cmds/start_prover_node.js +0 -110
  165. package/dest/cli/cmds/start_pxe.d.ts +0 -16
  166. package/dest/cli/cmds/start_pxe.d.ts.map +0 -1
  167. package/dest/cli/cmds/start_pxe.js +0 -95
  168. package/dest/cli/get_l1_config.d.ts +0 -7
  169. package/dest/cli/get_l1_config.d.ts.map +0 -1
  170. package/dest/cli/get_l1_config.js +0 -13
  171. package/dest/sandbox/banana_fpc.d.ts +0 -11
  172. package/dest/sandbox/banana_fpc.d.ts.map +0 -1
  173. package/dest/sandbox/index.d.ts +0 -5
  174. package/dest/sandbox/index.d.ts.map +0 -1
  175. package/dest/sandbox/index.js +0 -4
  176. package/dest/sandbox/sandbox.d.ts +0 -76
  177. package/dest/sandbox/sandbox.d.ts.map +0 -1
  178. package/dest/sandbox/sandbox.js +0 -181
  179. package/dest/sandbox/sponsored_fee_payment_method.d.ts +0 -23
  180. package/dest/sandbox/sponsored_fee_payment_method.d.ts.map +0 -1
  181. package/dest/sandbox/sponsored_fee_payment_method.js +0 -36
  182. package/dest/sandbox/sponsored_fpc.d.ts +0 -6
  183. package/dest/sandbox/sponsored_fpc.d.ts.map +0 -1
  184. package/dest/sandbox/sponsored_fpc.js +0 -26
  185. package/src/cli/chain_l2_config.ts +0 -74
  186. package/src/cli/cmds/start_blob_sink.ts +0 -31
  187. package/src/cli/cmds/start_faucet.ts +0 -34
  188. package/src/cli/cmds/start_prover_node.ts +0 -121
  189. package/src/cli/cmds/start_pxe.ts +0 -129
  190. package/src/cli/get_l1_config.ts +0 -18
  191. package/src/sandbox/index.ts +0 -5
  192. package/src/sandbox/sandbox.ts +0 -229
  193. package/src/sandbox/sponsored_fee_payment_method.ts +0 -46
  194. package/src/sandbox/sponsored_fpc.ts +0 -38
@@ -1,12 +1,11 @@
1
- import { type InitialAccountData, getInitialTestAccounts } from '@aztec/accounts/testing';
2
- import type { Wallet } from '@aztec/aztec.js';
3
- import { Fr } from '@aztec/foundation/fields';
1
+ import { type InitialAccountData, getInitialTestAccountsData } from '@aztec/accounts/testing';
2
+ import type { Wallet } from '@aztec/aztec.js/wallet';
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';
7
7
  import { AztecAddress } from '@aztec/stdlib/aztec-address';
8
- import { type ContractInstanceWithAddress, getContractInstanceFromDeployParams } from '@aztec/stdlib/contract';
9
- import type { PXE } from '@aztec/stdlib/interfaces/client';
8
+ import { type ContractInstanceWithAddress, getContractInstanceFromInstantiationParams } from '@aztec/stdlib/contract';
10
9
 
11
10
  const BANANA_COIN_SALT = new Fr(0);
12
11
  const bananaCoinArgs = {
@@ -23,7 +22,7 @@ function getBananaAdmin(initialAccounts: InitialAccountData[]): AztecAddress {
23
22
 
24
23
  async function getBananaCoinInstance(initialAccounts: InitialAccountData[]): Promise<ContractInstanceWithAddress> {
25
24
  const admin = getBananaAdmin(initialAccounts);
26
- return await getContractInstanceFromDeployParams(TokenContract.artifact, {
25
+ return await getContractInstanceFromInstantiationParams(TokenContract.artifact, {
27
26
  constructorArgs: [admin, bananaCoinArgs.name, bananaCoinArgs.symbol, bananaCoinArgs.decimal],
28
27
  salt: BANANA_COIN_SALT,
29
28
  });
@@ -36,7 +35,7 @@ export async function getBananaCoinAddress(initialAccounts: InitialAccountData[]
36
35
  async function getBananaFPCInstance(initialAccounts: InitialAccountData[]): Promise<ContractInstanceWithAddress> {
37
36
  const bananaCoin = await getBananaCoinAddress(initialAccounts);
38
37
  const admin = getBananaAdmin(initialAccounts);
39
- return await getContractInstanceFromDeployParams(FPCContract.artifact, {
38
+ return await getContractInstanceFromInstantiationParams(FPCContract.artifact, {
40
39
  constructorArgs: [bananaCoin, admin],
41
40
  salt: BANANA_FPC_SALT,
42
41
  });
@@ -46,38 +45,38 @@ export async function getBananaFPCAddress(initialAccounts: InitialAccountData[])
46
45
  return (await getBananaFPCInstance(initialAccounts)).address;
47
46
  }
48
47
 
49
- export async function setupBananaFPC(initialAccounts: InitialAccountData[], deployer: Wallet, log: LogFn) {
48
+ export async function setupBananaFPC(initialAccounts: InitialAccountData[], wallet: Wallet, log: LogFn) {
50
49
  const bananaCoinAddress = await getBananaCoinAddress(initialAccounts);
51
50
  const admin = getBananaAdmin(initialAccounts);
52
- const [bananaCoin, fpc] = await Promise.all([
53
- TokenContract.deploy(deployer, admin, bananaCoinArgs.name, bananaCoinArgs.symbol, bananaCoinArgs.decimal)
54
- .send({ contractAddressSalt: BANANA_COIN_SALT, universalDeploy: true })
55
- .deployed(),
56
- FPCContract.deploy(deployer, bananaCoinAddress, admin)
57
- .send({ contractAddressSalt: BANANA_FPC_SALT, universalDeploy: true })
58
- .deployed(),
51
+ const [{ contract: bananaCoin }, { contract: fpc }] = await Promise.all([
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
+ }),
59
62
  ]);
60
63
 
61
64
  log(`BananaCoin: ${bananaCoin.address}`);
62
65
  log(`FPC: ${fpc.address}`);
63
66
  }
64
67
 
65
- export async function getDeployedBananaCoinAddress(pxe: PXE) {
66
- const initialAccounts = await getInitialTestAccounts();
67
- const bananaCoin = await getBananaCoinAddress(initialAccounts);
68
- const contracts = await pxe.getContracts();
69
- if (!contracts.find(c => c.equals(bananaCoin))) {
70
- throw new Error('BananaCoin not deployed.');
71
- }
72
- return bananaCoin;
68
+ export async function registerDeployedBananaCoinInWalletAndGetAddress(wallet: Wallet) {
69
+ const initialAccounts = await getInitialTestAccountsData();
70
+ const bananaCoin = await getBananaCoinInstance(initialAccounts);
71
+ // The following is no-op if the contract is already registered
72
+ await wallet.registerContract(bananaCoin, TokenContract.artifact);
73
+ return bananaCoin.address;
73
74
  }
74
75
 
75
- export async function getDeployedBananaFPCAddress(pxe: PXE) {
76
- const initialAccounts = await getInitialTestAccounts();
76
+ export async function registerDeployedBananaFPCInWalletAndGetAddress(wallet: Wallet) {
77
+ const initialAccounts = await getInitialTestAccountsData();
77
78
  const fpc = await getBananaFPCInstance(initialAccounts);
78
- const contracts = await pxe.getContracts();
79
- if (!contracts.find(c => c.equals(fpc.address))) {
80
- throw new Error('BananaFPC not deployed.');
81
- }
79
+ // The following is no-op if the contract is already registered
80
+ await wallet.registerContract(fpc, FPCContract.artifact);
82
81
  return fpc.address;
83
82
  }
@@ -0,0 +1,7 @@
1
+ export * from './local-network.js';
2
+
3
+ export {
4
+ registerDeployedBananaCoinInWalletAndGetAddress,
5
+ registerDeployedBananaFPCInWalletAndGetAddress,
6
+ } from './banana_fpc.js';
7
+ export { registerDeployedSponsoredFPCInWalletAndGetAddress } from './sponsored_fpc.js';
@@ -0,0 +1,277 @@
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 { AztecAddress } from '@aztec/stdlib/aztec-address';
23
+ import type { ProvingJobBroker } from '@aztec/stdlib/interfaces/server';
24
+ import type { PublicDataTreeLeaf } from '@aztec/stdlib/trees';
25
+ import {
26
+ type TelemetryClient,
27
+ getConfigEnvVars as getTelemetryClientConfig,
28
+ initTelemetryClient,
29
+ } from '@aztec/telemetry-client';
30
+ import { EmbeddedWallet } from '@aztec/wallets/embedded';
31
+ import { deployFundedSchnorrAccounts } from '@aztec/wallets/testing';
32
+ import { getGenesisValues } from '@aztec/world-state/testing';
33
+
34
+ import { type Hex, createPublicClient, fallback, http as httpViemTransport } from 'viem';
35
+ import { mnemonicToAccount, privateKeyToAddress } from 'viem/accounts';
36
+ import { foundry } from 'viem/chains';
37
+
38
+ import { createAccountLogs } from '../cli/util.js';
39
+ import { DefaultMnemonic } from '../mnemonic.js';
40
+ import { AnvilTestWatcher } from '../testing/anvil_test_watcher.js';
41
+ import { EpochTestSettler } from '../testing/epoch_test_settler.js';
42
+ import { getTokenAllowedSetupFunctions } from '../testing/token_allowed_setup.js';
43
+ import { getBananaFPCAddress, setupBananaFPC } from './banana_fpc.js';
44
+ import { getSponsoredFPCAddress } from './sponsored_fpc.js';
45
+
46
+ const logger = createLogger('local-network');
47
+
48
+ const localAnvil = foundry;
49
+
50
+ /**
51
+ * Function to deploy our L1 contracts to the local network L1
52
+ * @param aztecNodeConfig - The Aztec Node Config
53
+ * @param hdAccount - Account for publishing L1 contracts
54
+ */
55
+ export async function deployContractsToL1(
56
+ aztecNodeConfig: AztecNodeConfig,
57
+ privateKey: Hex,
58
+ opts: {
59
+ genesisArchiveRoot?: Fr;
60
+ feeJuicePortalInitialBalance?: bigint;
61
+ } = {},
62
+ ) {
63
+ await waitForPublicClient(aztecNodeConfig);
64
+
65
+ const l1Contracts = await deployAztecL1Contracts(aztecNodeConfig.l1RpcUrls[0], privateKey, foundry.id, {
66
+ ...getL1ContractsConfigEnvVars(), // TODO: We should not need to be loading config from env again, caller should handle this
67
+ ...aztecNodeConfig,
68
+ vkTreeRoot: getVKTreeRoot(),
69
+ protocolContractsHash,
70
+ genesisArchiveRoot: opts.genesisArchiveRoot ?? new Fr(GENESIS_ARCHIVE_ROOT),
71
+ feeJuicePortalInitialBalance: opts.feeJuicePortalInitialBalance,
72
+ aztecTargetCommitteeSize: 0, // no committee in local network
73
+ slasherFlavor: 'none', // no slashing in local network
74
+ realVerifier: false,
75
+ });
76
+
77
+ aztecNodeConfig.l1Contracts = l1Contracts.l1ContractAddresses;
78
+ aztecNodeConfig.rollupVersion = l1Contracts.rollupVersion;
79
+
80
+ return aztecNodeConfig.l1Contracts;
81
+ }
82
+
83
+ /** Local network settings. */
84
+ export type LocalNetworkConfig = AztecNodeConfig & {
85
+ /** Mnemonic used to derive the L1 deployer private key.*/
86
+ l1Mnemonic: string;
87
+ /** Whether to deploy test accounts on local network start.*/
88
+ testAccounts: boolean;
89
+ };
90
+
91
+ /**
92
+ * Create and start a new Aztec Node and PXE. Deploys L1 contracts.
93
+ * Does not start any HTTP services nor populate any initial accounts.
94
+ * @param config - Optional local network settings.
95
+ */
96
+ export async function createLocalNetwork(config: Partial<LocalNetworkConfig> = {}, userLog: LogFn) {
97
+ // local network is meant for test envs. We should only need one l1RpcUrl
98
+ const l1RpcUrl = config.l1RpcUrls?.[0];
99
+ if (!l1RpcUrl) {
100
+ throw new Error('An L1 RPC URL is required');
101
+ }
102
+ if ((config.l1RpcUrls?.length || 0) > 1) {
103
+ logger.warn(`Multiple L1 RPC URLs provided. Local networks will only use the first one: ${l1RpcUrl}`);
104
+ }
105
+
106
+ // The local network deploys a banana FPC with Token contracts, so include Token entries
107
+ // in the setup allowlist so FPC-based fee payments work out of the box.
108
+ const tokenAllowList = await getTokenAllowedSetupFunctions();
109
+
110
+ const aztecNodeConfig: AztecNodeConfig = {
111
+ ...getConfigEnvVars(),
112
+ ...config,
113
+ txPublicSetupAllowListExtend: [...tokenAllowList, ...(config.txPublicSetupAllowListExtend ?? [])],
114
+ };
115
+ const hdAccount = mnemonicToAccount(config.l1Mnemonic || DefaultMnemonic);
116
+ if (
117
+ aztecNodeConfig.sequencerPublisherPrivateKeys == undefined ||
118
+ !aztecNodeConfig.sequencerPublisherPrivateKeys.length ||
119
+ aztecNodeConfig.sequencerPublisherPrivateKeys[0].getValue() === NULL_KEY
120
+ ) {
121
+ const privKey = hdAccount.getHdKey().privateKey;
122
+ aztecNodeConfig.sequencerPublisherPrivateKeys = [
123
+ new SecretValue(`0x${Buffer.from(privKey!).toString('hex')}` as const),
124
+ ];
125
+ }
126
+ if (!aztecNodeConfig.validatorPrivateKeys?.getValue().length) {
127
+ const privKey = hdAccount.getHdKey().privateKey;
128
+ aztecNodeConfig.validatorPrivateKeys = new SecretValue([`0x${Buffer.from(privKey!).toString('hex')}`]);
129
+ }
130
+ aztecNodeConfig.coinbase = EthAddress.fromString(
131
+ privateKeyToAddress(aztecNodeConfig.validatorPrivateKeys.getValue()[0]),
132
+ );
133
+
134
+ const initialAccounts = await (async () => {
135
+ if (config.testAccounts === true || config.testAccounts === undefined) {
136
+ if (aztecNodeConfig.p2pEnabled) {
137
+ userLog(`Not setting up test accounts as we are connecting to a network`);
138
+ } else {
139
+ userLog(`Setting up test accounts`);
140
+ return await getInitialTestAccountsData();
141
+ }
142
+ }
143
+ return [];
144
+ })();
145
+
146
+ const bananaFPC = await getBananaFPCAddress(initialAccounts);
147
+ const sponsoredFPC = await getSponsoredFPCAddress();
148
+ const prefundAddresses = (aztecNodeConfig.prefundAddresses ?? []).map(a => AztecAddress.fromString(a));
149
+ const fundedAddresses = [
150
+ ...initialAccounts.map(a => a.address),
151
+ ...(initialAccounts.length ? [bananaFPC, sponsoredFPC] : []),
152
+ ...prefundAddresses,
153
+ ];
154
+ const { genesisArchiveRoot, prefilledPublicData, fundingNeeded } = await getGenesisValues(fundedAddresses);
155
+
156
+ const dateProvider = new TestDateProvider();
157
+
158
+ let cheatcodes: EthCheatCodes | undefined;
159
+ let rollupAddress: EthAddress | undefined;
160
+ let watcher: AnvilTestWatcher | undefined;
161
+ if (!aztecNodeConfig.p2pEnabled) {
162
+ ({ rollupAddress } = await deployContractsToL1(
163
+ aztecNodeConfig,
164
+ aztecNodeConfig.validatorPrivateKeys.getValue()[0],
165
+ {
166
+ genesisArchiveRoot,
167
+ feeJuicePortalInitialBalance: fundingNeeded,
168
+ },
169
+ ));
170
+
171
+ const chain =
172
+ aztecNodeConfig.l1RpcUrls.length > 0
173
+ ? createEthereumChain([l1RpcUrl], aztecNodeConfig.l1ChainId)
174
+ : { chainInfo: localAnvil };
175
+
176
+ const publicClient = createPublicClient({
177
+ chain: chain.chainInfo,
178
+ transport: fallback([httpViemTransport(l1RpcUrl)]) as any,
179
+ });
180
+
181
+ cheatcodes = new EthCheatCodes([l1RpcUrl], dateProvider);
182
+
183
+ watcher = new AnvilTestWatcher(cheatcodes, rollupAddress, publicClient, dateProvider);
184
+ watcher.setisLocalNetwork(true);
185
+ watcher.setIsMarkingAsProven(false); // Do not mark as proven in the watcher. It's marked in the epochTestSettler after the out hash is set.
186
+
187
+ await watcher.start();
188
+ }
189
+
190
+ const telemetry = await initTelemetryClient(getTelemetryClientConfig());
191
+ // Create a local blob client client inside the local network, no http connectivity
192
+ const blobClient = createBlobClient();
193
+ const node = await createAztecNode(aztecNodeConfig, { telemetry, blobClient, dateProvider }, { prefilledPublicData });
194
+
195
+ // Now that the node is up, let the watcher check for pending txs so it can skip unfilled slots faster when
196
+ // transactions are waiting in the mempool. Also let it check if the sequencer is actively building, to avoid
197
+ // warping time out from under an in-progress block.
198
+ watcher?.setGetPendingTxCount(() => node.getPendingTxCount());
199
+ const sequencer = node.getSequencer()?.getSequencer();
200
+ if (sequencer) {
201
+ const idleStates: Set<string> = new Set([
202
+ SequencerState.STOPPED,
203
+ SequencerState.STOPPING,
204
+ SequencerState.IDLE,
205
+ SequencerState.SYNCHRONIZING,
206
+ ]);
207
+ watcher?.setIsSequencerBuilding(() => !idleStates.has(sequencer.getState()));
208
+ }
209
+
210
+ let epochTestSettler: EpochTestSettler | undefined;
211
+ if (!aztecNodeConfig.p2pEnabled) {
212
+ epochTestSettler = new EpochTestSettler(
213
+ cheatcodes!,
214
+ rollupAddress!,
215
+ node.getBlockSource(),
216
+ logger.createChild('epoch-settler'),
217
+ { pollingIntervalMs: 200 },
218
+ );
219
+ await epochTestSettler.start();
220
+ }
221
+
222
+ if (initialAccounts.length) {
223
+ const wallet = await EmbeddedWallet.create(node, {
224
+ pxeConfig: { proverEnabled: aztecNodeConfig.realProofs },
225
+ ephemeral: true,
226
+ });
227
+
228
+ userLog('Setting up funded test accounts...');
229
+ const accountManagers = await deployFundedSchnorrAccounts(wallet, initialAccounts);
230
+ const accLogs = await createAccountLogs(accountManagers, wallet);
231
+ userLog(accLogs.join(''));
232
+
233
+ await setupBananaFPC(initialAccounts, wallet, userLog);
234
+
235
+ userLog(`SponsoredFPC: ${await getSponsoredFPCAddress()}`);
236
+
237
+ // We no longer need the wallet once we've setup the accounts so we stop the underlying PXE job queue
238
+ await wallet.stop();
239
+ }
240
+
241
+ const stop = async () => {
242
+ await node.stop();
243
+ await watcher?.stop();
244
+ await epochTestSettler?.stop();
245
+ };
246
+
247
+ return { node, stop };
248
+ }
249
+
250
+ /**
251
+ * Create and start a new Aztec RPC HTTP Server
252
+ * @param config - Optional Aztec node settings.
253
+ */
254
+ export async function createAztecNode(
255
+ config: Partial<AztecNodeConfig> = {},
256
+ deps: {
257
+ telemetry?: TelemetryClient;
258
+ blobClient?: BlobClientInterface;
259
+ dateProvider?: DateProvider;
260
+ proverBroker?: ProvingJobBroker;
261
+ } = {},
262
+ options: { prefilledPublicData?: PublicDataTreeLeaf[] } = {},
263
+ ) {
264
+ // TODO(#12272): will clean this up. This is criminal.
265
+ const { l1Contracts, ...rest } = getConfigEnvVars();
266
+ const aztecNodeConfig: AztecNodeConfig = {
267
+ ...rest,
268
+ ...config,
269
+ l1Contracts: { ...l1Contracts, ...config.l1Contracts },
270
+ };
271
+ const node = await AztecNodeService.createAndSync(
272
+ aztecNodeConfig,
273
+ { ...deps, proverNodeDeps: { broker: deps.proverBroker } },
274
+ options,
275
+ );
276
+ return node;
277
+ }
@@ -0,0 +1,26 @@
1
+ import type { AztecAddress } from '@aztec/aztec.js/addresses';
2
+ import {
3
+ type ContractInstanceWithAddress,
4
+ getContractInstanceFromInstantiationParams,
5
+ } from '@aztec/aztec.js/contracts';
6
+ import { Fr } from '@aztec/aztec.js/fields';
7
+ import type { Wallet } from '@aztec/aztec.js/wallet';
8
+ import { SPONSORED_FPC_SALT } from '@aztec/constants';
9
+ import { SponsoredFPCContract } from '@aztec/noir-contracts.js/SponsoredFPC';
10
+
11
+ async function getSponsoredFPCInstance(): Promise<ContractInstanceWithAddress> {
12
+ return await getContractInstanceFromInstantiationParams(SponsoredFPCContract.artifact, {
13
+ salt: new Fr(SPONSORED_FPC_SALT),
14
+ });
15
+ }
16
+
17
+ export async function getSponsoredFPCAddress(): Promise<AztecAddress> {
18
+ return (await getSponsoredFPCInstance()).address;
19
+ }
20
+
21
+ export async function registerDeployedSponsoredFPCInWalletAndGetAddress(wallet: Wallet): Promise<AztecAddress> {
22
+ const fpc = await getSponsoredFPCInstance();
23
+ // The following is no-op if the contract is already registered
24
+ await wallet.registerContract(fpc, SponsoredFPCContract.artifact);
25
+ return fpc.address;
26
+ }
@@ -0,0 +1,210 @@
1
+ import { EthCheatCodes, RollupCheatCodes } from '@aztec/ethereum/test';
2
+ import type { ViemClient } from '@aztec/ethereum/types';
3
+ import { SlotNumber } from '@aztec/foundation/branded-types';
4
+ import type { EthAddress } from '@aztec/foundation/eth-address';
5
+ import { type Logger, createLogger } from '@aztec/foundation/log';
6
+ import { RunningPromise } from '@aztec/foundation/running-promise';
7
+ import type { TestDateProvider } from '@aztec/foundation/timer';
8
+ import { RollupAbi } from '@aztec/l1-artifacts/RollupAbi';
9
+
10
+ import { type GetContractReturnType, getAddress, getContract } from 'viem';
11
+
12
+ /**
13
+ * Represents a watcher for a rollup contract.
14
+ *
15
+ * It started on a network like anvil where time traveling is allowed, and auto-mine is turned on
16
+ * it will periodically check if the current slot have already been filled, e.g., there was an L2
17
+ * block within the slot. And if so, it will time travel into the next slot.
18
+ */
19
+ export class AnvilTestWatcher {
20
+ private isLocalNetwork: boolean = false;
21
+
22
+ private rollup: GetContractReturnType<typeof RollupAbi, ViemClient>;
23
+ private rollupCheatCodes: RollupCheatCodes;
24
+ private l2SlotDuration!: number;
25
+
26
+ private filledRunningPromise?: RunningPromise;
27
+ private syncDateProviderPromise?: RunningPromise;
28
+ private markingAsProvenRunningPromise?: RunningPromise;
29
+
30
+ private logger: Logger = createLogger(`aztecjs:utils:watcher`);
31
+
32
+ private isMarkingAsProven = true;
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
+
43
+ constructor(
44
+ private cheatcodes: EthCheatCodes,
45
+ rollupAddress: EthAddress,
46
+ l1Client: ViemClient,
47
+ private dateProvider?: TestDateProvider,
48
+ ) {
49
+ this.rollup = getContract({
50
+ address: getAddress(rollupAddress.toString()),
51
+ abi: RollupAbi,
52
+ client: l1Client,
53
+ });
54
+
55
+ this.rollupCheatCodes = new RollupCheatCodes(this.cheatcodes, {
56
+ rollupAddress,
57
+ });
58
+
59
+ this.logger.debug(`Watcher created for rollup at ${rollupAddress}`);
60
+ }
61
+
62
+ setIsMarkingAsProven(isMarkingAsProven: boolean) {
63
+ this.logger.warn(`Watcher is now ${isMarkingAsProven ? 'marking' : 'not marking'} blocks as proven`);
64
+ this.isMarkingAsProven = isMarkingAsProven;
65
+ }
66
+
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;
79
+ }
80
+
81
+ async start() {
82
+ if (this.filledRunningPromise) {
83
+ throw new Error('Watcher already watching for filled slot');
84
+ }
85
+
86
+ const config = await this.rollupCheatCodes.getConfig();
87
+ this.l2SlotDuration = config.slotDuration;
88
+
89
+ // If auto mining is not supported (e.g., we are on a real network), then we
90
+ // will simple do nothing. But if on an anvil or the like, this make sure that
91
+ // the local network and tests don't break because time is frozen and we never get to
92
+ // the next slot.
93
+ const isAutoMining = await this.cheatcodes.isAutoMining();
94
+
95
+ if (isAutoMining) {
96
+ this.filledRunningPromise = new RunningPromise(() => this.warpTimeIfNeeded(), this.logger, 200);
97
+ this.filledRunningPromise.start();
98
+ this.syncDateProviderPromise = new RunningPromise(() => this.syncDateProviderToL1IfBehind(), this.logger, 200);
99
+ this.syncDateProviderPromise.start();
100
+ this.markingAsProvenRunningPromise = new RunningPromise(() => this.markAsProven(), this.logger, 200);
101
+ this.markingAsProvenRunningPromise.start();
102
+ this.logger.info(`Watcher started for rollup at ${this.rollup.address}`);
103
+ } else {
104
+ this.logger.info(`Watcher not started because not auto mining`);
105
+ }
106
+ }
107
+
108
+ async stop() {
109
+ await this.filledRunningPromise?.stop();
110
+ await this.syncDateProviderPromise?.stop();
111
+ await this.markingAsProvenRunningPromise?.stop();
112
+ }
113
+
114
+ async trigger() {
115
+ await this.filledRunningPromise?.trigger();
116
+ await this.syncDateProviderPromise?.trigger();
117
+ await this.markingAsProvenRunningPromise?.trigger();
118
+ }
119
+
120
+ async markAsProven() {
121
+ if (!this.isMarkingAsProven) {
122
+ return;
123
+ }
124
+ await this.rollupCheatCodes.markAsProven();
125
+ }
126
+
127
+ async syncDateProviderToL1IfBehind() {
128
+ // this doesn't apply to the local network, because we don't have a date provider in the local network
129
+ if (!this.dateProvider) {
130
+ return;
131
+ }
132
+
133
+ const l1Time = (await this.cheatcodes.timestamp()) * 1000;
134
+ const wallTime = this.dateProvider.now();
135
+ if (l1Time > wallTime) {
136
+ this.logger.warn(`L1 is ahead of wall time. Syncing wall time to L1 time`);
137
+ this.dateProvider.setTime(l1Time);
138
+ } else if (l1Time + Number(this.l2SlotDuration) * 1000 < wallTime) {
139
+ this.logger.warn(`L1 is more than 1 L2 slot behind wall time. Warping to wall time`);
140
+ await this.cheatcodes.warp(Math.ceil(wallTime / 1000));
141
+ }
142
+ }
143
+
144
+ async warpTimeIfNeeded() {
145
+ try {
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);
155
+ this.logger.info(`Slot ${currentSlot} was filled, jumped to next slot`);
156
+ return;
157
+ }
158
+
159
+ // If we are not in local network, we don't need to warp time
160
+ if (!this.isLocalNetwork) {
161
+ return;
162
+ }
163
+
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;
189
+ }
190
+ }
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);
196
+ this.logger.info(`Slot ${currentSlot} was missed, jumped to next slot`);
197
+ }
198
+ } catch {
199
+ this.logger.error('mineIfSlotFilled failed');
200
+ }
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
+ }
210
+ }