@aztec/end-to-end 0.0.1-commit.993d240 → 0.0.1-commit.9a89641

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 (282) hide show
  1. package/README.md +215 -27
  2. package/dest/automine/automine_test_context.d.ts +85 -0
  3. package/dest/automine/automine_test_context.d.ts.map +1 -0
  4. package/dest/automine/automine_test_context.js +98 -0
  5. package/dest/automine/contracts/fixtures/storage_proof_fetcher.d.ts +2 -0
  6. package/dest/automine/contracts/fixtures/storage_proof_fetcher.d.ts.map +1 -0
  7. package/dest/{e2e_storage_proof → automine/contracts}/fixtures/storage_proof_fixture.d.ts +1 -1
  8. package/dest/automine/contracts/fixtures/storage_proof_fixture.d.ts.map +1 -0
  9. package/dest/automine/delivery/interactive_handshake_responder.d.ts +48 -0
  10. package/dest/automine/delivery/interactive_handshake_responder.d.ts.map +1 -0
  11. package/dest/automine/delivery/interactive_handshake_responder.js +76 -0
  12. package/dest/automine/delivery/onchain_delivery_harness.d.ts +19 -0
  13. package/dest/automine/delivery/onchain_delivery_harness.d.ts.map +1 -0
  14. package/dest/automine/delivery/onchain_delivery_harness.js +141 -0
  15. package/dest/automine/token/blacklist_token_contract_test.d.ts +49 -0
  16. package/dest/automine/token/blacklist_token_contract_test.d.ts.map +1 -0
  17. package/dest/{e2e_blacklist_token_contract → automine/token}/blacklist_token_contract_test.js +18 -40
  18. package/dest/automine/token/token_contract_test.d.ts +40 -0
  19. package/dest/automine/token/token_contract_test.d.ts.map +1 -0
  20. package/dest/{e2e_token_contract → automine/token}/token_contract_test.js +22 -39
  21. package/dest/automine/token/token_test_helpers.d.ts +73 -0
  22. package/dest/automine/token/token_test_helpers.d.ts.map +1 -0
  23. package/dest/automine/token/token_test_helpers.js +97 -0
  24. package/dest/bench/client_flows/benchmark.d.ts +1 -1
  25. package/dest/bench/client_flows/benchmark.d.ts.map +1 -1
  26. package/dest/bench/client_flows/benchmark.js +3 -1
  27. package/dest/bench/client_flows/client_flows_benchmark.d.ts +5 -5
  28. package/dest/bench/client_flows/client_flows_benchmark.d.ts.map +1 -1
  29. package/dest/bench/client_flows/client_flows_benchmark.js +34 -25
  30. package/dest/bench/client_flows/data_extractor.js +1 -0
  31. package/dest/bench/utils.d.ts +3 -3
  32. package/dest/bench/utils.d.ts.map +1 -1
  33. package/dest/bench/utils.js +95 -6
  34. package/dest/composed/ha/ha_full_setup.d.ts +77 -0
  35. package/dest/composed/ha/ha_full_setup.d.ts.map +1 -0
  36. package/dest/composed/ha/ha_full_setup.js +383 -0
  37. package/dest/composed/web3signer/multi_validator_keystore_utils.d.ts +12 -0
  38. package/dest/composed/web3signer/multi_validator_keystore_utils.d.ts.map +1 -0
  39. package/dest/fixtures/e2e_prover_test.d.ts +12 -9
  40. package/dest/fixtures/e2e_prover_test.d.ts.map +1 -1
  41. package/dest/fixtures/e2e_prover_test.js +48 -28
  42. package/dest/fixtures/fixtures.d.ts +20 -14
  43. package/dest/fixtures/fixtures.d.ts.map +1 -1
  44. package/dest/fixtures/fixtures.js +27 -15
  45. package/dest/fixtures/get_acvm_config.d.ts +1 -1
  46. package/dest/fixtures/get_acvm_config.d.ts.map +1 -1
  47. package/dest/fixtures/get_acvm_config.js +2 -2
  48. package/dest/fixtures/get_bb_config.d.ts +1 -1
  49. package/dest/fixtures/get_bb_config.d.ts.map +1 -1
  50. package/dest/fixtures/get_bb_config.js +2 -2
  51. package/dest/fixtures/ha_setup.d.ts +3 -3
  52. package/dest/fixtures/ha_setup.d.ts.map +1 -1
  53. package/dest/fixtures/ha_setup.js +4 -1
  54. package/dest/fixtures/index.d.ts +2 -1
  55. package/dest/fixtures/index.d.ts.map +1 -1
  56. package/dest/fixtures/index.js +1 -0
  57. package/dest/fixtures/setup.d.ts +52 -40
  58. package/dest/fixtures/setup.d.ts.map +1 -1
  59. package/dest/fixtures/setup.js +207 -221
  60. package/dest/fixtures/setup_p2p_test.d.ts +1 -1
  61. package/dest/fixtures/setup_p2p_test.d.ts.map +1 -1
  62. package/dest/fixtures/setup_p2p_test.js +3 -3
  63. package/dest/fixtures/standard_contracts_genesis.d.ts +16 -0
  64. package/dest/fixtures/standard_contracts_genesis.d.ts.map +1 -0
  65. package/dest/fixtures/standard_contracts_genesis.js +25 -0
  66. package/dest/fixtures/timing.d.ts +42 -0
  67. package/dest/fixtures/timing.d.ts.map +1 -0
  68. package/dest/fixtures/timing.js +72 -0
  69. package/dest/fixtures/token_utils.d.ts +22 -4
  70. package/dest/fixtures/token_utils.d.ts.map +1 -1
  71. package/dest/fixtures/token_utils.js +21 -1
  72. package/dest/fixtures/utils.d.ts +2 -2
  73. package/dest/fixtures/utils.d.ts.map +1 -1
  74. package/dest/fixtures/utils.js +1 -1
  75. package/dest/fixtures/wait_helpers.d.ts +135 -0
  76. package/dest/fixtures/wait_helpers.d.ts.map +1 -0
  77. package/dest/fixtures/wait_helpers.js +154 -0
  78. package/dest/forward-compatibility/wallet_service.js +3 -3
  79. package/dest/multi-node/block-production/setup.d.ts +97 -0
  80. package/dest/multi-node/block-production/setup.d.ts.map +1 -0
  81. package/dest/multi-node/block-production/setup.js +158 -0
  82. package/dest/multi-node/governance/setup.d.ts +67 -0
  83. package/dest/multi-node/governance/setup.d.ts.map +1 -0
  84. package/dest/multi-node/governance/setup.js +126 -0
  85. package/dest/multi-node/multi_node_test_context.d.ts +212 -0
  86. package/dest/multi-node/multi_node_test_context.d.ts.map +1 -0
  87. package/dest/multi-node/multi_node_test_context.js +347 -0
  88. package/dest/multi-node/slashing/inactivity_setup.d.ts +27 -0
  89. package/dest/multi-node/slashing/inactivity_setup.d.ts.map +1 -0
  90. package/dest/multi-node/slashing/inactivity_setup.js +111 -0
  91. package/dest/multi-node/slashing/setup.d.ts +167 -0
  92. package/dest/multi-node/slashing/setup.d.ts.map +1 -0
  93. package/dest/multi-node/slashing/setup.js +275 -0
  94. package/dest/{e2e_p2p → p2p}/p2p_network.d.ts +10 -2
  95. package/dest/p2p/p2p_network.d.ts.map +1 -0
  96. package/dest/{e2e_p2p → p2p}/p2p_network.js +41 -16
  97. package/dest/p2p/reqresp/utils.d.ts +19 -0
  98. package/dest/p2p/reqresp/utils.d.ts.map +1 -0
  99. package/dest/{e2e_p2p → p2p}/reqresp/utils.js +6 -19
  100. package/dest/p2p/shared.d.ts +72 -0
  101. package/dest/p2p/shared.d.ts.map +1 -0
  102. package/dest/p2p/shared.js +212 -0
  103. package/dest/shared/cross_chain_test_harness.d.ts +3 -3
  104. package/dest/shared/cross_chain_test_harness.d.ts.map +1 -1
  105. package/dest/shared/cross_chain_test_harness.js +24 -16
  106. package/dest/shared/gas_portal_test_harness.d.ts +2 -2
  107. package/dest/shared/gas_portal_test_harness.d.ts.map +1 -1
  108. package/dest/shared/gas_portal_test_harness.js +10 -8
  109. package/dest/shared/submit-transactions.d.ts +1 -1
  110. package/dest/shared/submit-transactions.d.ts.map +1 -1
  111. package/dest/shared/submit-transactions.js +12 -5
  112. package/dest/shared/timing_env.d.js +5 -0
  113. package/dest/shared/timing_env.js +365 -0
  114. package/dest/shared/uniswap_l1_l2.d.ts +1 -1
  115. package/dest/shared/uniswap_l1_l2.d.ts.map +1 -1
  116. package/dest/shared/uniswap_l1_l2.js +8 -19
  117. package/dest/shared/wait_for_l1_to_l2_message.js +1 -1
  118. package/dest/simulators/lending_simulator.js +1 -1
  119. package/dest/single-node/cross-chain/cross_chain_messaging_test.d.ts +75 -0
  120. package/dest/single-node/cross-chain/cross_chain_messaging_test.d.ts.map +1 -0
  121. package/dest/single-node/cross-chain/cross_chain_messaging_test.js +209 -0
  122. package/dest/single-node/cross-chain/message_test_helpers.d.ts +38 -0
  123. package/dest/single-node/cross-chain/message_test_helpers.d.ts.map +1 -0
  124. package/dest/single-node/cross-chain/message_test_helpers.js +70 -0
  125. package/dest/{e2e_fees → single-node/fees}/bridging_race.notest.d.ts +1 -1
  126. package/dest/single-node/fees/bridging_race.notest.d.ts.map +1 -0
  127. package/dest/{e2e_fees → single-node/fees}/bridging_race.notest.js +17 -4
  128. package/dest/single-node/fees/fees_test.d.ts +95 -0
  129. package/dest/single-node/fees/fees_test.d.ts.map +1 -0
  130. package/dest/{e2e_fees → single-node/fees}/fees_test.js +129 -66
  131. package/dest/single-node/l1-reorgs/setup.d.ts +42 -0
  132. package/dest/single-node/l1-reorgs/setup.d.ts.map +1 -0
  133. package/dest/single-node/l1-reorgs/setup.js +57 -0
  134. package/dest/single-node/partial-proofs/setup.d.ts +5 -0
  135. package/dest/single-node/partial-proofs/setup.d.ts.map +1 -0
  136. package/dest/single-node/partial-proofs/setup.js +5 -0
  137. package/dest/single-node/proving/setup.d.ts +5 -0
  138. package/dest/single-node/proving/setup.d.ts.map +1 -0
  139. package/dest/single-node/proving/setup.js +5 -0
  140. package/dest/single-node/recovery/setup.d.ts +5 -0
  141. package/dest/single-node/recovery/setup.d.ts.map +1 -0
  142. package/dest/single-node/recovery/setup.js +5 -0
  143. package/dest/single-node/setup.d.ts +49 -0
  144. package/dest/single-node/setup.d.ts.map +1 -0
  145. package/dest/single-node/setup.js +56 -0
  146. package/dest/single-node/single_node_test_context.d.ts +374 -0
  147. package/dest/single-node/single_node_test_context.d.ts.map +1 -0
  148. package/dest/single-node/single_node_test_context.js +847 -0
  149. package/dest/spartan/setup_test_wallets.d.ts +1 -1
  150. package/dest/spartan/setup_test_wallets.d.ts.map +1 -1
  151. package/dest/spartan/setup_test_wallets.js +24 -10
  152. package/dest/spartan/tx_metrics.d.ts +10 -1
  153. package/dest/spartan/tx_metrics.d.ts.map +1 -1
  154. package/dest/spartan/tx_metrics.js +32 -0
  155. package/dest/test-wallet/test_wallet.d.ts +23 -3
  156. package/dest/test-wallet/test_wallet.d.ts.map +1 -1
  157. package/dest/test-wallet/test_wallet.js +56 -9
  158. package/dest/test-wallet/utils.d.ts +36 -1
  159. package/dest/test-wallet/utils.d.ts.map +1 -1
  160. package/dest/test-wallet/utils.js +64 -4
  161. package/dest/test-wallet/wallet_worker_script.js +10 -2
  162. package/dest/test-wallet/worker_wallet.d.ts +5 -5
  163. package/dest/test-wallet/worker_wallet.d.ts.map +1 -1
  164. package/dest/test-wallet/worker_wallet.js +6 -4
  165. package/dest/test-wallet/worker_wallet_schema.d.ts +3 -159
  166. package/dest/test-wallet/worker_wallet_schema.d.ts.map +1 -1
  167. package/dest/test-wallet/worker_wallet_schema.js +2 -1
  168. package/package.json +41 -41
  169. package/src/automine/README.md +60 -0
  170. package/src/automine/automine_test_context.ts +153 -0
  171. package/src/automine/delivery/interactive_handshake_responder.ts +125 -0
  172. package/src/automine/delivery/onchain_delivery_harness.ts +213 -0
  173. package/src/{e2e_blacklist_token_contract → automine/token}/blacklist_token_contract_test.ts +20 -57
  174. package/src/{e2e_token_contract → automine/token}/token_contract_test.ts +24 -57
  175. package/src/automine/token/token_test_helpers.ts +138 -0
  176. package/src/bench/client_flows/benchmark.ts +3 -1
  177. package/src/bench/client_flows/client_flows_benchmark.ts +48 -32
  178. package/src/bench/client_flows/data_extractor.ts +1 -0
  179. package/src/bench/utils.ts +109 -6
  180. package/src/composed/ha/ha_full_setup.ts +466 -0
  181. package/src/fixtures/e2e_prover_test.ts +60 -47
  182. package/src/fixtures/fixtures.ts +29 -15
  183. package/src/fixtures/get_acvm_config.ts +2 -8
  184. package/src/fixtures/get_bb_config.ts +1 -2
  185. package/src/fixtures/ha_setup.ts +7 -3
  186. package/src/fixtures/index.ts +1 -0
  187. package/src/fixtures/setup.ts +255 -281
  188. package/src/fixtures/setup_p2p_test.ts +3 -3
  189. package/src/fixtures/standard_contracts_genesis.ts +28 -0
  190. package/src/fixtures/timing.ts +97 -0
  191. package/src/fixtures/token_utils.ts +39 -4
  192. package/src/fixtures/utils.ts +0 -3
  193. package/src/fixtures/wait_helpers.ts +333 -0
  194. package/src/forward-compatibility/wallet_service.ts +6 -4
  195. package/src/guides/up_quick_start.sh +5 -0
  196. package/src/infra/README.md +12 -0
  197. package/src/multi-node/README.md +96 -0
  198. package/src/multi-node/block-production/setup.ts +272 -0
  199. package/src/multi-node/governance/setup.ts +172 -0
  200. package/src/multi-node/multi_node_test_context.ts +447 -0
  201. package/src/multi-node/slashing/inactivity_setup.ts +139 -0
  202. package/src/multi-node/slashing/setup.ts +433 -0
  203. package/src/p2p/README.md +78 -0
  204. package/src/{e2e_p2p → p2p}/p2p_network.ts +40 -13
  205. package/src/{e2e_p2p → p2p}/reqresp/utils.ts +7 -18
  206. package/src/p2p/shared.ts +329 -0
  207. package/src/shared/cross_chain_test_harness.ts +22 -13
  208. package/src/shared/gas_portal_test_harness.ts +15 -8
  209. package/src/shared/submit-transactions.ts +13 -5
  210. package/src/shared/timing_env.d.mts +39 -0
  211. package/src/shared/timing_env.mjs +363 -0
  212. package/src/shared/uniswap_l1_l2.ts +38 -21
  213. package/src/shared/wait_for_l1_to_l2_message.ts +1 -1
  214. package/src/simulators/lending_simulator.ts +1 -1
  215. package/src/single-node/README.md +66 -0
  216. package/src/single-node/cross-chain/cross_chain_messaging_test.ts +302 -0
  217. package/src/single-node/cross-chain/message_test_helpers.ts +125 -0
  218. package/src/{e2e_fees → single-node/fees}/bridging_race.notest.ts +19 -5
  219. package/src/{e2e_fees → single-node/fees}/fees_test.ts +146 -76
  220. package/src/single-node/l1-reorgs/setup.ts +93 -0
  221. package/src/single-node/partial-proofs/setup.ts +8 -0
  222. package/src/single-node/proving/setup.ts +15 -0
  223. package/src/single-node/recovery/setup.ts +8 -0
  224. package/src/single-node/setup.ts +63 -0
  225. package/src/single-node/single_node_test_context.ts +1058 -0
  226. package/src/spartan/setup_test_wallets.ts +28 -10
  227. package/src/spartan/tx_metrics.ts +26 -0
  228. package/src/test-wallet/test_wallet.ts +60 -10
  229. package/src/test-wallet/utils.ts +102 -5
  230. package/src/test-wallet/wallet_worker_script.ts +9 -3
  231. package/src/test-wallet/worker_wallet.ts +11 -13
  232. package/src/test-wallet/worker_wallet_schema.ts +3 -2
  233. package/dest/e2e_blacklist_token_contract/blacklist_token_contract_test.d.ts +0 -56
  234. package/dest/e2e_blacklist_token_contract/blacklist_token_contract_test.d.ts.map +0 -1
  235. package/dest/e2e_cross_chain_messaging/cross_chain_messaging_test.d.ts +0 -58
  236. package/dest/e2e_cross_chain_messaging/cross_chain_messaging_test.d.ts.map +0 -1
  237. package/dest/e2e_cross_chain_messaging/cross_chain_messaging_test.js +0 -161
  238. package/dest/e2e_deploy_contract/deploy_test.d.ts +0 -37
  239. package/dest/e2e_deploy_contract/deploy_test.d.ts.map +0 -1
  240. package/dest/e2e_deploy_contract/deploy_test.js +0 -51
  241. package/dest/e2e_epochs/epochs_test.d.ts +0 -125
  242. package/dest/e2e_epochs/epochs_test.d.ts.map +0 -1
  243. package/dest/e2e_epochs/epochs_test.js +0 -460
  244. package/dest/e2e_fees/bridging_race.notest.d.ts.map +0 -1
  245. package/dest/e2e_fees/fees_test.d.ts +0 -91
  246. package/dest/e2e_fees/fees_test.d.ts.map +0 -1
  247. package/dest/e2e_l1_publisher/write_json.d.ts +0 -11
  248. package/dest/e2e_l1_publisher/write_json.d.ts.map +0 -1
  249. package/dest/e2e_l1_publisher/write_json.js +0 -56
  250. package/dest/e2e_multi_validator/utils.d.ts +0 -12
  251. package/dest/e2e_multi_validator/utils.d.ts.map +0 -1
  252. package/dest/e2e_nested_contract/nested_contract_test.d.ts +0 -26
  253. package/dest/e2e_nested_contract/nested_contract_test.d.ts.map +0 -1
  254. package/dest/e2e_nested_contract/nested_contract_test.js +0 -55
  255. package/dest/e2e_p2p/inactivity_slash_test.d.ts +0 -31
  256. package/dest/e2e_p2p/inactivity_slash_test.d.ts.map +0 -1
  257. package/dest/e2e_p2p/inactivity_slash_test.js +0 -138
  258. package/dest/e2e_p2p/p2p_network.d.ts.map +0 -1
  259. package/dest/e2e_p2p/reqresp/utils.d.ts +0 -22
  260. package/dest/e2e_p2p/reqresp/utils.d.ts.map +0 -1
  261. package/dest/e2e_p2p/shared.d.ts +0 -64
  262. package/dest/e2e_p2p/shared.d.ts.map +0 -1
  263. package/dest/e2e_p2p/shared.js +0 -204
  264. package/dest/e2e_storage_proof/fixtures/storage_proof_fetcher.d.ts +0 -2
  265. package/dest/e2e_storage_proof/fixtures/storage_proof_fetcher.d.ts.map +0 -1
  266. package/dest/e2e_storage_proof/fixtures/storage_proof_fixture.d.ts.map +0 -1
  267. package/dest/e2e_token_contract/token_contract_test.d.ts +0 -44
  268. package/dest/e2e_token_contract/token_contract_test.d.ts.map +0 -1
  269. package/src/e2e_cross_chain_messaging/cross_chain_messaging_test.ts +0 -231
  270. package/src/e2e_deploy_contract/deploy_test.ts +0 -86
  271. package/src/e2e_epochs/epochs_test.ts +0 -575
  272. package/src/e2e_l1_publisher/write_json.ts +0 -77
  273. package/src/e2e_nested_contract/nested_contract_test.ts +0 -77
  274. package/src/e2e_p2p/inactivity_slash_test.ts +0 -181
  275. package/src/e2e_p2p/shared.ts +0 -318
  276. /package/dest/{e2e_storage_proof → automine/contracts}/fixtures/storage_proof_fetcher.js +0 -0
  277. /package/dest/{e2e_storage_proof → automine/contracts}/fixtures/storage_proof_fixture.js +0 -0
  278. /package/dest/{e2e_multi_validator/utils.js → composed/web3signer/multi_validator_keystore_utils.js} +0 -0
  279. /package/src/{e2e_storage_proof → automine/contracts}/fixtures/storage_proof.json +0 -0
  280. /package/src/{e2e_storage_proof → automine/contracts}/fixtures/storage_proof_fetcher.ts +0 -0
  281. /package/src/{e2e_storage_proof → automine/contracts}/fixtures/storage_proof_fixture.ts +0 -0
  282. /package/src/{e2e_multi_validator/utils.ts → composed/web3signer/multi_validator_keystore_utils.ts} +0 -0
@@ -1,58 +1,86 @@
1
1
  import type { AztecAddress } from '@aztec/aztec.js/addresses';
2
- import { type Logger, createLogger } from '@aztec/aztec.js/log';
2
+ import { BatchCall } from '@aztec/aztec.js/contracts';
3
+ import { Fr } from '@aztec/aztec.js/fields';
4
+ import { createLogger } from '@aztec/aztec.js/log';
3
5
  import type { AztecNode } from '@aztec/aztec.js/node';
6
+ import { FeeJuiceContract } from '@aztec/aztec.js/protocol';
4
7
  import { CheatCodes, getTokenAllowedSetupFunctions } from '@aztec/aztec/testing';
5
8
  import { createExtendedL1Client } from '@aztec/ethereum/client';
6
- import { RollupContract } from '@aztec/ethereum/contracts';
9
+ import type { RollupContract } from '@aztec/ethereum/contracts';
7
10
  import type { DeployAztecL1ContractsArgs } from '@aztec/ethereum/deploy-aztec-l1-contracts';
8
- import { ChainMonitor } from '@aztec/ethereum/test';
9
11
  import { BlockNumber } from '@aztec/foundation/branded-types';
10
12
  import { EthAddress } from '@aztec/foundation/eth-address';
11
13
  import { sleep } from '@aztec/foundation/sleep';
12
14
  import { TestERC20Abi } from '@aztec/l1-artifacts';
13
15
  import { AppSubscriptionContract } from '@aztec/noir-contracts.js/AppSubscription';
14
16
  import { FPCContract } from '@aztec/noir-contracts.js/FPC';
15
- import { FeeJuiceContract } from '@aztec/noir-contracts.js/FeeJuice';
16
17
  import { SponsoredFPCContract } from '@aztec/noir-contracts.js/SponsoredFPC';
17
18
  import { TokenContract as BananaCoin } from '@aztec/noir-contracts.js/Token';
18
19
  import { CounterContract } from '@aztec/noir-test-contracts.js/Counter';
19
- import { ProtocolContractAddress } from '@aztec/protocol-contracts';
20
- import { getCanonicalFeeJuice } from '@aztec/protocol-contracts/fee-juice';
21
- import { GasSettings } from '@aztec/stdlib/gas';
20
+ import { getContractInstanceFromInstantiationParams } from '@aztec/stdlib/contract';
21
+ import { Gas, GasSettings } from '@aztec/stdlib/gas';
22
22
  import type { AztecNodeAdmin } from '@aztec/stdlib/interfaces/client';
23
23
 
24
24
  import { getContract } from 'viem';
25
25
 
26
- import { MNEMONIC, getPaddedMaxFeesPerGas } from '../fixtures/fixtures.js';
26
+ import { L1_DIRECT_WRITE_ACCOUNT_INDEX, MNEMONIC, getPaddedMaxFeesPerGas } from '../../fixtures/fixtures.js';
27
+ import { type SetupOptions, ensureAuthRegistryPublished, setup } from '../../fixtures/setup.js';
28
+ import { testSpan } from '../../fixtures/timing.js';
29
+ import { mintTokensToPrivate } from '../../fixtures/token_utils.js';
30
+ import { type BalancesFn, getBalancesFn, setupSponsoredFPC } from '../../fixtures/utils.js';
27
31
  import {
28
- type EndToEndContext,
29
- type SetupOptions,
30
- deployAccounts,
31
- ensureAuthRegistryPublished,
32
- publicDeployAccounts,
33
- setup,
34
- teardown,
35
- } from '../fixtures/setup.js';
36
- import { mintTokensToPrivate } from '../fixtures/token_utils.js';
37
- import { type BalancesFn, getBalancesFn, setupSponsoredFPC } from '../fixtures/utils.js';
38
- import { FeeJuicePortalTestingHarnessFactory, type GasBridgingTestHarness } from '../shared/gas_portal_test_harness.js';
39
- import { TestWallet } from '../test-wallet/test_wallet.js';
32
+ FeeJuicePortalTestingHarnessFactory,
33
+ type GasBridgingTestHarness,
34
+ } from '../../shared/gas_portal_test_harness.js';
35
+ import { TestWallet } from '../../test-wallet/test_wallet.js';
36
+ import { SingleNodeTestContext, type SingleNodeTestOpts } from '../single_node_test_context.js';
37
+
38
+ // Fixed deploy salts so BananaCoin and its BananaFPC land at deterministic addresses given the FPC
39
+ // admin. This lets the BananaFPC's fee-juice balance be seeded at genesis (see `FeesTest.setup`)
40
+ // instead of bridged from L1 during setup — the address must be known before genesis is computed.
41
+ const BANANA_COIN_SALT = new Fr(0xba4a4a);
42
+ const BANANA_FPC_SALT = new Fr(0xfacade);
43
+
44
+ const BANANA_COIN_CONSTRUCTOR_ARGS = ['BC', 'BC', 18n] as const;
45
+
46
+ /**
47
+ * Computes the deterministic BananaCoin and BananaFPC instances for the given admin/deployer, matching
48
+ * what {@link FeesTest.applyDeployBananaToken} and {@link FeesTest.applyFPCSetup} deploy with the fixed
49
+ * salts above. Used both to seed the BananaFPC's fee juice at genesis and to assert the deployed
50
+ * addresses match the seeded one.
51
+ */
52
+ async function computeBananaContractAddresses(admin: AztecAddress) {
53
+ const bananaCoin = await getContractInstanceFromInstantiationParams(BananaCoin.artifact, {
54
+ salt: BANANA_COIN_SALT,
55
+ constructorArgs: [admin, ...BANANA_COIN_CONSTRUCTOR_ARGS],
56
+ deployer: admin,
57
+ });
58
+ const bananaFPC = await getContractInstanceFromInstantiationParams(FPCContract.artifact, {
59
+ salt: BANANA_FPC_SALT,
60
+ constructorArgs: [bananaCoin.address, admin],
61
+ deployer: admin,
62
+ });
63
+ return { bananaCoinAddress: bananaCoin.address, bananaFPCAddress: bananaFPC.address };
64
+ }
40
65
 
41
66
  /**
42
67
  * Test fixture for testing fees. Provides the following setup steps:
43
68
  * InitialAccounts: Initializes 3 Schnorr account contracts.
44
69
  * PublicDeployAccounts: Deploys the accounts publicly.
45
70
  * DeployFeeJuice: Deploys the Fee Juice contract.
46
- * FPCSetup: Deploys BananaCoin and FPC contracts, and bridges gas from L1.
47
- * SponsoredFPCSetup: Deploys Sponsored FPC contract, and bridges gas from L1.
71
+ * FPCSetup: Deploys BananaCoin and FPC contracts; the FPC's fee juice is seeded at genesis.
72
+ * SponsoredFPCSetup: Registers the Sponsored FPC contract, whose fee juice is seeded at genesis.
48
73
  * FundAlice: Mints private and public bananas to Alice.
49
74
  * SetupSubscription: Deploys a counter contract and a subscription contract, and mints Fee Juice to the subscription contract.
75
+ *
76
+ * The fee-domain harness over the single-node topology: extends {@link SingleNodeTestContext} so it
77
+ * reuses the base node tracking / chain monitor / teardown machinery, but builds its environment with
78
+ * the bespoke fee opts below (prover node, sponsored-FPC funding, token allowlist) rather than the
79
+ * base's default node config, and layers the fee-domain setup (FPC, fee juice, banana token) on top.
50
80
  */
51
- export class FeesTest {
81
+ export class FeesTest extends SingleNodeTestContext {
52
82
  private accounts: AztecAddress[] = [];
53
- public context!: EndToEndContext;
54
83
 
55
- public logger: Logger;
56
84
  public aztecNode!: AztecNode;
57
85
  public aztecNodeAdmin!: AztecNodeAdmin;
58
86
  public cheatCodes!: CheatCodes;
@@ -67,6 +95,7 @@ export class FeesTest {
67
95
 
68
96
  public gasSettings!: GasSettings;
69
97
 
98
+ /** The base's {@link SingleNodeTestContext.rollup}, exposed under the fee suite's historical name. */
70
99
  public rollupContract!: RollupContract;
71
100
 
72
101
  public feeJuiceContract!: FeeJuiceContract;
@@ -77,8 +106,6 @@ export class FeesTest {
77
106
  public subscriptionContract!: AppSubscriptionContract;
78
107
  public feeJuiceBridgeTestHarness!: GasBridgingTestHarness;
79
108
 
80
- public chainMonitor!: ChainMonitor;
81
-
82
109
  public getCoinbaseBalance!: () => Promise<bigint>;
83
110
  public getCoinbaseSequencerRewards!: () => Promise<bigint>;
84
111
  public getGasBalanceFn!: BalancesFn;
@@ -92,55 +119,69 @@ export class FeesTest {
92
119
  public readonly SUBSCRIPTION_AMOUNT = BigInt(1e19);
93
120
  public readonly APP_SPONSORED_TX_GAS_LIMIT = BigInt(10e9);
94
121
 
122
+ private testName: string;
123
+
95
124
  constructor(
96
125
  testName: string,
97
126
  private numberOfAccounts = 3,
98
127
  private setupOptions: Partial<SetupOptions & DeployAztecL1ContractsArgs> = {},
99
128
  ) {
129
+ super();
100
130
  if (!numberOfAccounts) {
101
131
  throw new Error('There must be at least 1 initial account.');
102
132
  }
103
133
  setupOptions.coinbase ??= EthAddress.random();
104
134
  this.coinbase = setupOptions.coinbase!;
135
+ this.testName = testName;
105
136
  this.logger = createLogger(`e2e:e2e_fees:${testName}`);
106
137
  }
107
138
 
108
- async setup(opts: Partial<SetupOptions> = {}) {
139
+ override async setup(opts: SingleNodeTestOpts = {}) {
109
140
  this.logger.verbose('Setting up fresh context...');
110
141
  // Token allowlist entries are test-only: FPC-based fee payment with custom tokens won't work on mainnet alpha.
111
142
  const tokenAllowList = await getTokenAllowedSetupFunctions();
112
- this.context = await setup(0, {
143
+ const context = await setup(this.numberOfAccounts, {
113
144
  startProverNode: true,
114
145
  ...this.setupOptions,
115
146
  ...opts,
116
147
  fundSponsoredFPC: true,
117
- skipAccountDeployment: true,
148
+ // Seed the BananaFPC's fee juice at genesis instead of bridging it from L1 in applyFPCSetup. The
149
+ // FPC admin is the first account, so its address is deterministic once the accounts are generated.
150
+ computeExtraGenesisFundedAddresses: async defaultAccounts => [
151
+ (await computeBananaContractAddresses(defaultAccounts[0].address)).bananaFPCAddress,
152
+ ],
118
153
  l1ContractsArgs: { ...this.setupOptions },
119
154
  txPublicSetupAllowListExtend: [...(this.setupOptions.txPublicSetupAllowListExtend ?? []), ...tokenAllowList],
120
155
  });
121
156
 
122
- this.rollupContract = RollupContract.getFromConfig(this.context.config);
123
- this.chainMonitor = new ChainMonitor(this.rollupContract, this.context.dateProvider, this.logger, 200).start();
157
+ // Reuse the base context machinery (rollup, epoch cache, chain monitor, node tracking, teardown)
158
+ // over the environment built above. Restore the FeesTest-named logger afterwards, since
159
+ // hydrateFromContext repoints `this.logger` at the context logger.
160
+ await this.hydrateFromContext(context);
161
+ this.logger = createLogger(`e2e:e2e_fees:${this.testName}`);
162
+ this.rollupContract = this.rollup;
124
163
 
125
164
  await this.applyBaseSetup();
126
-
127
- return this;
128
165
  }
129
166
 
130
- async teardown() {
131
- await this.chainMonitor.stop();
132
- await teardown(this.context);
167
+ async catchUpProvenChain() {
168
+ await testSpan('wait:proven-checkpoint', async () => {
169
+ const bn = await this.aztecNode.getBlockNumber();
170
+ while ((await this.aztecNode.getBlockNumber('proven')) < bn) {
171
+ await sleep(1000);
172
+ }
173
+ });
133
174
  }
134
175
 
135
- setIsMarkingAsProven(b: boolean) {
136
- this.context.watcher.setIsMarkingAsProven(b);
176
+ /** Warps L1 to the next epoch boundary so the current epoch closes and can be proven. */
177
+ async advanceToNextEpoch() {
178
+ await testSpan('warp:proven-checkpoint-epoch', () => this.cheatCodes.rollup.advanceToNextEpoch());
137
179
  }
138
180
 
139
- async catchUpProvenChain() {
140
- const bn = await this.aztecNode.getBlockNumber();
141
- while ((await this.aztecNode.getBlockNumber('proven')) < bn) {
142
- await sleep(1000);
143
- }
181
+ /** Advances to the next epoch and waits for the proven chain to catch up, so all prior fees are paid out. */
182
+ async waitForEpochProven() {
183
+ await this.advanceToNextEpoch();
184
+ await this.catchUpProvenChain();
144
185
  }
145
186
 
146
187
  async getBlockRewards() {
@@ -159,7 +200,9 @@ export class FeesTest {
159
200
  async mintAndBridgeFeeJuice(minter: AztecAddress, recipient: AztecAddress) {
160
201
  const claim = await this.feeJuiceBridgeTestHarness.prepareTokensOnL1(recipient);
161
202
  const { claimSecret: secret, messageLeafIndex: index } = claim;
162
- await this.feeJuiceContract.methods.claim(recipient, claim.claimAmount, secret, index).send({ from: minter });
203
+ await testSpan('setup:bridge', () =>
204
+ this.feeJuiceContract.methods.claim(recipient, claim.claimAmount, secret, index).send({ from: minter }),
205
+ );
163
206
  }
164
207
 
165
208
  /** Alice mints bananaCoin tokens privately to the target address and redeems them. */
@@ -168,7 +211,7 @@ export class FeesTest {
168
211
  .balance_of_private(address)
169
212
  .simulate({ from: address });
170
213
 
171
- await mintTokensToPrivate(this.bananaCoin, this.aliceAddress, address, amount);
214
+ await testSpan('tx:mint', () => mintTokensToPrivate(this.bananaCoin, this.aliceAddress, address, amount));
172
215
 
173
216
  const { result: balanceAfter } = await this.bananaCoin.methods
174
217
  .balance_of_private(address)
@@ -179,7 +222,6 @@ export class FeesTest {
179
222
  public async applyBaseSetup() {
180
223
  await this.applyInitialAccounts();
181
224
  await this.applyEnsureAuthRegistryPublished();
182
- await this.applyPublicDeployAccounts();
183
225
  await this.applySetupFeeJuice();
184
226
  await this.applyDeployBananaToken();
185
227
  }
@@ -192,48 +234,43 @@ export class FeesTest {
192
234
  async applyInitialAccounts() {
193
235
  this.logger.info('Applying initial accounts setup');
194
236
 
195
- const { deployedAccounts } = await deployAccounts(
196
- this.numberOfAccounts,
197
- this.logger,
198
- )({
199
- wallet: this.context.wallet,
200
- initialFundedAccounts: this.context.initialFundedAccounts,
201
- });
202
-
203
237
  this.wallet = this.context.wallet;
204
238
  this.aztecNode = this.context.aztecNodeService;
205
239
  this.aztecNodeAdmin = this.context.aztecNodeService;
206
240
  this.gasSettings = GasSettings.fallback({
241
+ gasLimits: Gas.from((await this.aztecNode.getNodeInfo()).txsLimits.gas),
207
242
  maxFeesPerGas: await getPaddedMaxFeesPerGas(this.aztecNode),
208
243
  });
209
244
  this.cheatCodes = this.context.cheatCodes;
210
- this.accounts = deployedAccounts.map(a => a.address);
245
+ this.accounts = this.context.accounts;
211
246
  this.accounts.forEach((a, i) => this.logger.verbose(`Account ${i} address: ${a}`));
212
247
  [this.aliceAddress, this.bobAddress, this.sequencerAddress] = this.accounts.slice(0, 3);
213
248
 
214
249
  // We set Alice as the FPC admin to avoid the need for deployment of another account.
215
250
  this.fpcAdmin = this.aliceAddress;
216
251
 
217
- const canonicalFeeJuice = await getCanonicalFeeJuice();
218
- this.feeJuiceContract = FeeJuiceContract.at(canonicalFeeJuice.address, this.wallet);
219
- }
220
-
221
- async applyPublicDeployAccounts() {
222
- this.logger.info('Applying public deploy accounts setup');
223
- await publicDeployAccounts(this.wallet, this.accounts);
252
+ this.feeJuiceContract = FeeJuiceContract.withWallet(this.wallet);
224
253
  }
225
254
 
226
255
  async applySetupFeeJuice() {
227
256
  this.logger.info('Applying fee juice setup');
228
257
 
229
- this.feeJuiceContract = FeeJuiceContract.at(ProtocolContractAddress.FeeJuice, this.wallet);
258
+ this.feeJuiceContract = FeeJuiceContract.withWallet(this.wallet);
230
259
 
231
260
  this.getGasBalanceFn = getBalancesFn('⛽', this.feeJuiceContract.methods.balance_of_public, this.logger);
232
261
 
233
262
  this.feeJuiceBridgeTestHarness = await FeeJuicePortalTestingHarnessFactory.create({
234
263
  aztecNode: this.context.aztecNodeService,
235
264
  aztecNodeAdmin: this.context.aztecNodeService,
236
- l1Client: this.context.deployL1ContractsValues.l1Client,
265
+ // Bridge from a dedicated L1 account so its direct writes don't race the sequencer publisher's
266
+ // txs on the deployer account (see L1_DIRECT_WRITE_ACCOUNT_INDEX).
267
+ l1Client: createExtendedL1Client(
268
+ this.context.config.l1RpcUrls,
269
+ MNEMONIC,
270
+ undefined,
271
+ undefined,
272
+ L1_DIRECT_WRITE_ACCOUNT_INDEX,
273
+ ),
237
274
  wallet: this.wallet,
238
275
  logger: this.logger,
239
276
  });
@@ -242,9 +279,14 @@ export class FeesTest {
242
279
  async applyDeployBananaToken() {
243
280
  this.logger.info('Applying deploy banana token setup');
244
281
 
245
- const { contract: bananaCoin } = await BananaCoin.deploy(this.wallet, this.aliceAddress, 'BC', 'BC', 18n).send({
246
- from: this.aliceAddress,
247
- });
282
+ const { contract: bananaCoin } = await testSpan('deploy:token', () =>
283
+ BananaCoin.deploy(this.wallet, this.aliceAddress, ...BANANA_COIN_CONSTRUCTOR_ARGS, {
284
+ salt: BANANA_COIN_SALT,
285
+ deployer: this.aliceAddress,
286
+ }).send({
287
+ from: this.aliceAddress,
288
+ }),
289
+ );
248
290
  this.logger.info(`BananaCoin deployed at ${bananaCoin.address}`);
249
291
 
250
292
  this.bananaCoin = bananaCoin;
@@ -263,13 +305,27 @@ export class FeesTest {
263
305
  expect((await this.wallet.getContractMetadata(feeJuiceContract.address)).isContractPublished).toBe(true);
264
306
 
265
307
  const bananaCoin = this.bananaCoin;
266
- const { contract: bananaFPC } = await FPCContract.deploy(this.wallet, bananaCoin.address, this.fpcAdmin).send({
267
- from: this.aliceAddress,
268
- });
308
+ const { contract: bananaFPC } = await testSpan('deploy:fpc', () =>
309
+ FPCContract.deploy(this.wallet, bananaCoin.address, this.fpcAdmin, {
310
+ salt: BANANA_FPC_SALT,
311
+ deployer: this.aliceAddress,
312
+ }).send({
313
+ from: this.aliceAddress,
314
+ }),
315
+ );
269
316
 
270
317
  this.logger.info(`BananaPay deployed at ${bananaFPC.address}`);
271
318
 
272
- await this.feeJuiceBridgeTestHarness.bridgeFromL1ToL2(bananaFPC.address, this.aliceAddress);
319
+ // The BananaFPC's fee juice is seeded at genesis (see FeesTest.setup) rather than bridged here.
320
+ // Assert the deploy landed at the seeded address so a params drift surfaces as a clear error rather
321
+ // than a downstream "insufficient fee payer balance".
322
+ const { bananaFPCAddress } = await computeBananaContractAddresses(this.aliceAddress);
323
+ if (!bananaFPC.address.equals(bananaFPCAddress)) {
324
+ throw new Error(
325
+ `Deployed BananaFPC address ${bananaFPC.address} does not match the genesis-funded address ` +
326
+ `${bananaFPCAddress}; the deterministic deploy params drifted from the genesis funding computation.`,
327
+ );
328
+ }
273
329
 
274
330
  this.bananaFPC = bananaFPC;
275
331
 
@@ -350,10 +406,24 @@ export class FeesTest {
350
406
  public async applyFundAliceWithBananas() {
351
407
  this.logger.info('Applying fund Alice with bananas setup');
352
408
 
353
- await this.mintPrivateBananas(this.ALICE_INITIAL_BANANAS, this.aliceAddress);
354
- await this.bananaCoin.methods
355
- .mint_to_public(this.aliceAddress, this.ALICE_INITIAL_BANANAS)
356
- .send({ from: this.aliceAddress });
409
+ // Both mints are alice sends on BananaCoin touching disjoint balances, so they ride a single
410
+ // BatchCall tx (one proof, one slot) rather than two concurrent txs. The PXE serializes proving,
411
+ // so two concurrent sends would still be proven back-to-back and land in consecutive slots.
412
+ const { result: privateBalanceBefore } = await this.bananaCoin.methods
413
+ .balance_of_private(this.aliceAddress)
414
+ .simulate({ from: this.aliceAddress });
415
+
416
+ await testSpan('tx:mint', () =>
417
+ new BatchCall(this.wallet, [
418
+ this.bananaCoin.methods.mint_to_private(this.aliceAddress, this.ALICE_INITIAL_BANANAS),
419
+ this.bananaCoin.methods.mint_to_public(this.aliceAddress, this.ALICE_INITIAL_BANANAS),
420
+ ]).send({ from: this.aliceAddress }),
421
+ );
422
+
423
+ const { result: privateBalanceAfter } = await this.bananaCoin.methods
424
+ .balance_of_private(this.aliceAddress)
425
+ .simulate({ from: this.aliceAddress });
426
+ expect(privateBalanceAfter).toEqual(privateBalanceBefore + this.ALICE_INITIAL_BANANAS);
357
427
  }
358
428
 
359
429
  public async applyFundAliceWithPrivateBananas() {
@@ -0,0 +1,93 @@
1
+ import type { Archiver } from '@aztec/archiver';
2
+ import type { AztecNodeService } from '@aztec/aztec-node';
3
+ import type { AztecAddress } from '@aztec/aztec.js/addresses';
4
+ import { Fr } from '@aztec/aztec.js/fields';
5
+ import type { Logger } from '@aztec/aztec.js/log';
6
+ import type { AztecNode } from '@aztec/aztec.js/node';
7
+ import type { Delayer } from '@aztec/ethereum/l1-tx-utils';
8
+ import type { ChainMonitor } from '@aztec/ethereum/test';
9
+ import type { TestContract } from '@aztec/noir-test-contracts.js/Test';
10
+ import type { TxHash } from '@aztec/stdlib/tx';
11
+
12
+ import { jest } from '@jest/globals';
13
+
14
+ import type { EndToEndContext } from '../../fixtures/utils.js';
15
+ import { proveAndSendTxs } from '../../test-wallet/utils.js';
16
+ import { setupWithProver } from '../setup.js';
17
+ import { FAST_REORG_TIMING, SingleNodeTestContext } from '../single_node_test_context.js';
18
+
19
+ jest.setTimeout(1000 * 60 * 20);
20
+
21
+ /** Number of txs to send at the start of each reorg test to trigger multi-block checkpoints. */
22
+ export const TX_COUNT = 8;
23
+
24
+ /**
25
+ * The single-node + prover-node fixture shared by the L1-reorg suites (`blocks`, `messages`). Stands
26
+ * up a {@link SingleNodeTestContext} on the {@link FAST_REORG_TIMING} cadence (ethSlot=4s,
27
+ * aztecSlot=24s, block=5s, epoch=4, 32 slots/epoch) with L1 speed-ups disabled so prover/sequencer txs
28
+ * can be held back and reorged, registers a {@link TestContract}, and exposes the per-test handles plus
29
+ * a `sendTransactions` helper that pre-proves and fires `count` lightweight txs to drive multi-block
30
+ * checkpoints. Reorgs themselves are driven by `EthCheatCodes.reorg`/`reorgWithReplacement` at the call
31
+ * site. The returned object's fields are populated when `setup()` resolves; create it in `beforeEach`.
32
+ */
33
+ export class L1ReorgsTest {
34
+ public test!: SingleNodeTestContext;
35
+ public context!: EndToEndContext;
36
+ public logger!: Logger;
37
+ public node!: AztecNode;
38
+ public archiver!: Archiver;
39
+ public monitor!: ChainMonitor;
40
+ public proverDelayer!: Delayer;
41
+ public sequencerDelayer!: Delayer;
42
+ public contract!: TestContract;
43
+ public from!: AztecAddress;
44
+
45
+ public L1_BLOCK_TIME_IN_S!: number;
46
+ public L2_SLOT_DURATION_IN_S!: number;
47
+
48
+ public async setup(): Promise<void> {
49
+ this.test = await setupWithProver({
50
+ ...FAST_REORG_TIMING, // ethSlot=4s, aztecSlot=24s, block=5s, epoch=4, 32 slots/epoch (mainnet)
51
+ numberOfAccounts: 1,
52
+ maxSpeedUpAttempts: 0, // Do not speed up l1 txs, we dont want them to land
53
+ cancelTxOnTimeout: false,
54
+ minTxsPerBlock: 0,
55
+ maxTxsPerBlock: 1,
56
+ aztecProofSubmissionEpochs: 1,
57
+ // Pipelining + multi-blocks-per-slot: 5s blocks fit ~3 blocks per 24s slot, and TX_COUNT=8
58
+ // ensures multiple checkpoints have multiple blocks
59
+ });
60
+ ({
61
+ proverDelayer: this.proverDelayer,
62
+ sequencerDelayer: this.sequencerDelayer,
63
+ context: this.context,
64
+ logger: this.logger,
65
+ monitor: this.monitor,
66
+ L1_BLOCK_TIME_IN_S: this.L1_BLOCK_TIME_IN_S,
67
+ L2_SLOT_DURATION_IN_S: this.L2_SLOT_DURATION_IN_S,
68
+ } = this.test);
69
+ this.node = this.context.aztecNode;
70
+ this.archiver = (this.node as AztecNodeService).getBlockSource() as Archiver;
71
+ this.from = this.context.accounts[0];
72
+ this.contract = await this.test.registerTestContract(this.context.wallet);
73
+ }
74
+
75
+ public teardown(): Promise<void> {
76
+ return this.test.teardown();
77
+ }
78
+
79
+ /** Pre-proves and sends `count` txs to generate L2 activity for multi-block checkpoints. */
80
+ public async sendTransactions(count: number, offset = 0): Promise<TxHash[]> {
81
+ this.logger.warn(`Pre-proving ${count} transactions`);
82
+ const txHashes = await proveAndSendTxs(
83
+ this.context.wallet,
84
+ count,
85
+ i => this.contract.methods.emit_nullifier(new Fr(offset + i + 1)),
86
+ { from: this.from },
87
+ );
88
+ this.logger.warn(`Sent ${txHashes.length} transactions`);
89
+ return txHashes;
90
+ }
91
+ }
92
+
93
+ export { jest };
@@ -0,0 +1,8 @@
1
+ import { jest } from '@jest/globals';
2
+
3
+ import { NO_REORG_SUBMISSION_EPOCHS, PROVING_SLOT_TIMING, setupWithProver } from '../setup.js';
4
+ import { SingleNodeTestContext } from '../single_node_test_context.js';
5
+
6
+ jest.setTimeout(1000 * 60 * 10);
7
+
8
+ export { jest, setupWithProver, SingleNodeTestContext, NO_REORG_SUBMISSION_EPOCHS, PROVING_SLOT_TIMING };
@@ -0,0 +1,15 @@
1
+ import { jest } from '@jest/globals';
2
+
3
+ import { NO_REORG_SUBMISSION_EPOCHS, PROVING_SLOT_TIMING, setupWithProver } from '../setup.js';
4
+ import { SingleNodeTestContext, WORLD_STATE_CHECKPOINT_HISTORY } from '../single_node_test_context.js';
5
+
6
+ jest.setTimeout(1000 * 60 * 15);
7
+
8
+ export {
9
+ jest,
10
+ setupWithProver,
11
+ SingleNodeTestContext,
12
+ WORLD_STATE_CHECKPOINT_HISTORY,
13
+ NO_REORG_SUBMISSION_EPOCHS,
14
+ PROVING_SLOT_TIMING,
15
+ };
@@ -0,0 +1,8 @@
1
+ import { jest } from '@jest/globals';
2
+
3
+ import { NO_REORG_SUBMISSION_EPOCHS, PROVING_SLOT_TIMING, setupWithProver } from '../setup.js';
4
+ import { SingleNodeTestContext } from '../single_node_test_context.js';
5
+
6
+ jest.setTimeout(1000 * 60 * 10);
7
+
8
+ export { jest, setupWithProver, SingleNodeTestContext, NO_REORG_SUBMISSION_EPOCHS, PROVING_SLOT_TIMING };
@@ -0,0 +1,63 @@
1
+ import { SingleNodeTestContext, type SingleNodeTestOpts } from './single_node_test_context.js';
2
+
3
+ /**
4
+ * The single-node setup surface, organized over the prover axis (none / fake / real). Each factory is a
5
+ * thin wrapper over {@link SingleNodeTestContext.setup} that fixes the prover mode and the defaults that go
6
+ * with it; tests pick the factory matching their topology and vary it through `opts`.
7
+ */
8
+
9
+ /**
10
+ * Proof-submission window (in epochs) so large the chain never prunes/reorgs in the test's lifetime.
11
+ * Tests that must keep unproven blocks alive for their whole run (no prover, or a hand-driven settler)
12
+ * set `aztecProofSubmissionEpochs` to this rather than picking an arbitrary large number.
13
+ */
14
+ export const NO_REORG_SUBMISSION_EPOCHS = 1024;
15
+
16
+ /**
17
+ * The "12s floor" slot cadence: a 4s L1 slot with 3 L1 slots per L2 slot, i.e. a 12s L2 slot. Shared by
18
+ * the proving / partial-proof suites whose bodies wait in real wall-clock for the sequencer to build
19
+ * empty checkpoints (one per L2 slot) and so cannot warp the clock forward. 12s is the shortest L2 slot
20
+ * that still fits one block per checkpoint under the default 3s block-duration timing model (which needs
21
+ * S >= ~8.5s); an 8s slot derives 0 blocks per checkpoint and trips the timing-config guard. Running at
22
+ * this floor keeps those real-time waits as short as possible.
23
+ */
24
+ export const PROVING_SLOT_TIMING = {
25
+ ethereumSlotDuration: 4,
26
+ aztecSlotDurationInL1Slots: 3,
27
+ } as const;
28
+
29
+ /**
30
+ * Single sequencer plus the context's fake in-process prover node (`realProofs: false`,
31
+ * `aztecProofSubmissionEpochs: 1`, `syncChainTip: 'checkpointed'`). This is exactly today's
32
+ * {@link SingleNodeTestContext.setup} default, used by the proving/partial-proofs/reorg/recovery suites.
33
+ */
34
+ export function setupWithProver(opts: SingleNodeTestOpts = {}): Promise<SingleNodeTestContext> {
35
+ return SingleNodeTestContext.setup(opts);
36
+ }
37
+
38
+ /**
39
+ * Single production sequencer with **no prover node**, used by the block-building/sequencer/sync suites.
40
+ *
41
+ * Dropping the prover requires raising `aztecProofSubmissionEpochs` to a high value
42
+ * ({@link NO_REORG_SUBMISSION_EPOCHS}): with the context's default window of `1` and no prover producing
43
+ * proofs, unproven blocks get pruned out from under the test after an epoch — so the high window keeps the
44
+ * blocks alive. Also defaults the PXE to `syncChainTip: 'proposed'` (rather than the context's
45
+ * `'checkpointed'`) since these tests assert on freshly proposed, not-yet-checkpointed blocks.
46
+ *
47
+ * Defaults `aztecEpochDuration` to `32` (the production default). These tests were written against the raw
48
+ * `setup()` helper, which deployed with the 32-slot production epoch; the context's own default of `6`
49
+ * lands an epoch boundary mid-test, where proposer selection changes and the propose for the boundary slot
50
+ * silently reverts (no checkpoint lands, the chain stops advancing). The 32-slot epoch keeps the boundary
51
+ * out past the short runs these tests need. All three (`startProverNode`, the proof window, the epoch) and
52
+ * `pxeOpts` can be overridden via `opts` — tests that need a shorter epoch (e.g. governance signalling) set
53
+ * their own.
54
+ */
55
+ export function setupBlockProducer(opts: SingleNodeTestOpts = {}): Promise<SingleNodeTestContext> {
56
+ return SingleNodeTestContext.setup({
57
+ startProverNode: false,
58
+ aztecProofSubmissionEpochs: NO_REORG_SUBMISSION_EPOCHS,
59
+ aztecEpochDuration: 32,
60
+ ...opts,
61
+ pxeOpts: { syncChainTip: 'proposed', ...opts.pxeOpts },
62
+ });
63
+ }