@aztec/end-to-end 5.0.0-rc.2 → 5.0.1

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 (246) 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 +17 -24
  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 -28
  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 +1 -1
  28. package/dest/bench/client_flows/client_flows_benchmark.d.ts.map +1 -1
  29. package/dest/bench/client_flows/client_flows_benchmark.js +16 -4
  30. package/dest/bench/utils.d.ts +1 -1
  31. package/dest/composed/ha/ha_full_setup.d.ts +77 -0
  32. package/dest/composed/ha/ha_full_setup.d.ts.map +1 -0
  33. package/dest/composed/ha/ha_full_setup.js +383 -0
  34. package/dest/composed/web3signer/multi_validator_keystore_utils.d.ts +12 -0
  35. package/dest/composed/web3signer/multi_validator_keystore_utils.d.ts.map +1 -0
  36. package/dest/fixtures/e2e_prover_test.d.ts +10 -7
  37. package/dest/fixtures/e2e_prover_test.d.ts.map +1 -1
  38. package/dest/fixtures/e2e_prover_test.js +30 -11
  39. package/dest/fixtures/fixtures.d.ts +9 -6
  40. package/dest/fixtures/fixtures.d.ts.map +1 -1
  41. package/dest/fixtures/fixtures.js +11 -7
  42. package/dest/fixtures/ha_setup.d.ts +3 -3
  43. package/dest/fixtures/ha_setup.d.ts.map +1 -1
  44. package/dest/fixtures/ha_setup.js +4 -1
  45. package/dest/fixtures/index.d.ts +2 -1
  46. package/dest/fixtures/index.d.ts.map +1 -1
  47. package/dest/fixtures/index.js +1 -0
  48. package/dest/fixtures/setup.d.ts +34 -9
  49. package/dest/fixtures/setup.d.ts.map +1 -1
  50. package/dest/fixtures/setup.js +165 -160
  51. package/dest/fixtures/standard_contracts_genesis.d.ts +16 -0
  52. package/dest/fixtures/standard_contracts_genesis.d.ts.map +1 -0
  53. package/dest/fixtures/standard_contracts_genesis.js +25 -0
  54. package/dest/fixtures/timing.d.ts +42 -0
  55. package/dest/fixtures/timing.d.ts.map +1 -0
  56. package/dest/fixtures/timing.js +72 -0
  57. package/dest/fixtures/wait_helpers.d.ts +135 -0
  58. package/dest/fixtures/wait_helpers.d.ts.map +1 -0
  59. package/dest/fixtures/wait_helpers.js +154 -0
  60. package/dest/forward-compatibility/wallet_service.js +1 -1
  61. package/dest/multi-node/block-production/setup.d.ts +97 -0
  62. package/dest/multi-node/block-production/setup.d.ts.map +1 -0
  63. package/dest/multi-node/block-production/setup.js +158 -0
  64. package/dest/multi-node/governance/setup.d.ts +67 -0
  65. package/dest/multi-node/governance/setup.d.ts.map +1 -0
  66. package/dest/multi-node/governance/setup.js +126 -0
  67. package/dest/multi-node/multi_node_test_context.d.ts +212 -0
  68. package/dest/multi-node/multi_node_test_context.d.ts.map +1 -0
  69. package/dest/multi-node/multi_node_test_context.js +347 -0
  70. package/dest/multi-node/slashing/inactivity_setup.d.ts +27 -0
  71. package/dest/multi-node/slashing/inactivity_setup.d.ts.map +1 -0
  72. package/dest/multi-node/slashing/inactivity_setup.js +111 -0
  73. package/dest/multi-node/slashing/setup.d.ts +167 -0
  74. package/dest/multi-node/slashing/setup.d.ts.map +1 -0
  75. package/dest/multi-node/slashing/setup.js +275 -0
  76. package/dest/{e2e_p2p → p2p}/p2p_network.d.ts +9 -1
  77. package/dest/p2p/p2p_network.d.ts.map +1 -0
  78. package/dest/{e2e_p2p → p2p}/p2p_network.js +26 -1
  79. package/dest/p2p/reqresp/utils.d.ts +19 -0
  80. package/dest/p2p/reqresp/utils.d.ts.map +1 -0
  81. package/dest/{e2e_p2p → p2p}/reqresp/utils.js +4 -15
  82. package/dest/p2p/shared.d.ts +72 -0
  83. package/dest/p2p/shared.d.ts.map +1 -0
  84. package/dest/p2p/shared.js +212 -0
  85. package/dest/shared/cross_chain_test_harness.d.ts +3 -3
  86. package/dest/shared/cross_chain_test_harness.d.ts.map +1 -1
  87. package/dest/shared/cross_chain_test_harness.js +24 -16
  88. package/dest/shared/gas_portal_test_harness.d.ts +1 -1
  89. package/dest/shared/gas_portal_test_harness.d.ts.map +1 -1
  90. package/dest/shared/gas_portal_test_harness.js +8 -5
  91. package/dest/shared/submit-transactions.d.ts +1 -1
  92. package/dest/shared/submit-transactions.d.ts.map +1 -1
  93. package/dest/shared/submit-transactions.js +12 -5
  94. package/dest/shared/timing_env.d.js +5 -0
  95. package/dest/shared/timing_env.js +158 -47
  96. package/dest/shared/wait_for_l1_to_l2_message.js +1 -1
  97. package/dest/single-node/cross-chain/cross_chain_messaging_test.d.ts +75 -0
  98. package/dest/single-node/cross-chain/cross_chain_messaging_test.d.ts.map +1 -0
  99. package/dest/{e2e_cross_chain_messaging → single-node/cross-chain}/cross_chain_messaging_test.js +74 -26
  100. package/dest/single-node/cross-chain/message_test_helpers.d.ts +38 -0
  101. package/dest/single-node/cross-chain/message_test_helpers.d.ts.map +1 -0
  102. package/dest/single-node/cross-chain/message_test_helpers.js +70 -0
  103. package/dest/{e2e_fees → single-node/fees}/bridging_race.notest.d.ts +1 -1
  104. package/dest/single-node/fees/bridging_race.notest.d.ts.map +1 -0
  105. package/dest/{e2e_fees → single-node/fees}/bridging_race.notest.js +9 -6
  106. package/dest/single-node/fees/fees_test.d.ts +95 -0
  107. package/dest/single-node/fees/fees_test.d.ts.map +1 -0
  108. package/dest/{e2e_fees → single-node/fees}/fees_test.js +121 -45
  109. package/dest/single-node/l1-reorgs/setup.d.ts +42 -0
  110. package/dest/single-node/l1-reorgs/setup.d.ts.map +1 -0
  111. package/dest/single-node/l1-reorgs/setup.js +57 -0
  112. package/dest/single-node/partial-proofs/setup.d.ts +5 -0
  113. package/dest/single-node/partial-proofs/setup.d.ts.map +1 -0
  114. package/dest/single-node/partial-proofs/setup.js +5 -0
  115. package/dest/single-node/proving/setup.d.ts +5 -0
  116. package/dest/single-node/proving/setup.d.ts.map +1 -0
  117. package/dest/single-node/proving/setup.js +5 -0
  118. package/dest/single-node/recovery/setup.d.ts +5 -0
  119. package/dest/single-node/recovery/setup.d.ts.map +1 -0
  120. package/dest/single-node/recovery/setup.js +5 -0
  121. package/dest/single-node/setup.d.ts +49 -0
  122. package/dest/single-node/setup.d.ts.map +1 -0
  123. package/dest/single-node/setup.js +56 -0
  124. package/dest/single-node/single_node_test_context.d.ts +374 -0
  125. package/dest/single-node/single_node_test_context.d.ts.map +1 -0
  126. package/dest/single-node/single_node_test_context.js +847 -0
  127. package/dest/spartan/setup_test_wallets.d.ts +1 -1
  128. package/dest/spartan/setup_test_wallets.d.ts.map +1 -1
  129. package/dest/spartan/setup_test_wallets.js +13 -7
  130. package/dest/spartan/tx_metrics.d.ts +10 -1
  131. package/dest/spartan/tx_metrics.d.ts.map +1 -1
  132. package/dest/spartan/tx_metrics.js +32 -0
  133. package/dest/test-wallet/test_wallet.d.ts +23 -4
  134. package/dest/test-wallet/test_wallet.d.ts.map +1 -1
  135. package/dest/test-wallet/test_wallet.js +20 -4
  136. package/dest/test-wallet/utils.d.ts +36 -1
  137. package/dest/test-wallet/utils.d.ts.map +1 -1
  138. package/dest/test-wallet/utils.js +64 -4
  139. package/dest/test-wallet/wallet_worker_script.js +5 -2
  140. package/dest/test-wallet/worker_wallet.d.ts +5 -5
  141. package/dest/test-wallet/worker_wallet.d.ts.map +1 -1
  142. package/dest/test-wallet/worker_wallet.js +2 -2
  143. package/dest/test-wallet/worker_wallet_schema.js +2 -1
  144. package/package.json +40 -40
  145. package/src/automine/README.md +60 -0
  146. package/src/automine/automine_test_context.ts +153 -0
  147. package/src/automine/delivery/interactive_handshake_responder.ts +125 -0
  148. package/src/automine/delivery/onchain_delivery_harness.ts +213 -0
  149. package/src/{e2e_blacklist_token_contract → automine/token}/blacklist_token_contract_test.ts +19 -39
  150. package/src/{e2e_token_contract → automine/token}/token_contract_test.ts +24 -43
  151. package/src/automine/token/token_test_helpers.ts +138 -0
  152. package/src/bench/client_flows/benchmark.ts +3 -1
  153. package/src/bench/client_flows/client_flows_benchmark.ts +17 -4
  154. package/src/composed/ha/ha_full_setup.ts +466 -0
  155. package/src/fixtures/e2e_prover_test.ts +36 -20
  156. package/src/fixtures/fixtures.ts +11 -7
  157. package/src/fixtures/ha_setup.ts +7 -3
  158. package/src/fixtures/index.ts +1 -0
  159. package/src/fixtures/setup.ts +204 -162
  160. package/src/fixtures/standard_contracts_genesis.ts +28 -0
  161. package/src/fixtures/timing.ts +97 -0
  162. package/src/fixtures/wait_helpers.ts +333 -0
  163. package/src/forward-compatibility/wallet_service.ts +2 -2
  164. package/src/infra/README.md +12 -0
  165. package/src/multi-node/README.md +96 -0
  166. package/src/multi-node/block-production/setup.ts +272 -0
  167. package/src/multi-node/governance/setup.ts +172 -0
  168. package/src/multi-node/multi_node_test_context.ts +447 -0
  169. package/src/multi-node/slashing/inactivity_setup.ts +139 -0
  170. package/src/multi-node/slashing/setup.ts +433 -0
  171. package/src/p2p/README.md +78 -0
  172. package/src/{e2e_p2p → p2p}/p2p_network.ts +26 -0
  173. package/src/{e2e_p2p → p2p}/reqresp/utils.ts +5 -14
  174. package/src/p2p/shared.ts +329 -0
  175. package/src/shared/cross_chain_test_harness.ts +22 -13
  176. package/src/shared/gas_portal_test_harness.ts +13 -5
  177. package/src/shared/submit-transactions.ts +13 -5
  178. package/src/shared/timing_env.d.mts +39 -0
  179. package/src/shared/timing_env.mjs +152 -48
  180. package/src/shared/wait_for_l1_to_l2_message.ts +1 -1
  181. package/src/single-node/README.md +66 -0
  182. package/src/{e2e_cross_chain_messaging → single-node/cross-chain}/cross_chain_messaging_test.ts +100 -38
  183. package/src/single-node/cross-chain/message_test_helpers.ts +125 -0
  184. package/src/{e2e_fees → single-node/fees}/bridging_race.notest.ts +11 -7
  185. package/src/{e2e_fees → single-node/fees}/fees_test.ts +132 -47
  186. package/src/single-node/l1-reorgs/setup.ts +93 -0
  187. package/src/single-node/partial-proofs/setup.ts +8 -0
  188. package/src/single-node/proving/setup.ts +15 -0
  189. package/src/single-node/recovery/setup.ts +8 -0
  190. package/src/single-node/setup.ts +63 -0
  191. package/src/single-node/single_node_test_context.ts +1058 -0
  192. package/src/spartan/setup_test_wallets.ts +19 -7
  193. package/src/spartan/tx_metrics.ts +26 -0
  194. package/src/test-wallet/test_wallet.ts +28 -6
  195. package/src/test-wallet/utils.ts +102 -5
  196. package/src/test-wallet/wallet_worker_script.ts +6 -3
  197. package/src/test-wallet/worker_wallet.ts +5 -9
  198. package/src/test-wallet/worker_wallet_schema.ts +1 -1
  199. package/dest/e2e_blacklist_token_contract/blacklist_token_contract_test.d.ts +0 -56
  200. package/dest/e2e_blacklist_token_contract/blacklist_token_contract_test.d.ts.map +0 -1
  201. package/dest/e2e_cross_chain_messaging/cross_chain_messaging_test.d.ts +0 -59
  202. package/dest/e2e_cross_chain_messaging/cross_chain_messaging_test.d.ts.map +0 -1
  203. package/dest/e2e_deploy_contract/deploy_test.d.ts +0 -36
  204. package/dest/e2e_deploy_contract/deploy_test.d.ts.map +0 -1
  205. package/dest/e2e_deploy_contract/deploy_test.js +0 -42
  206. package/dest/e2e_epochs/epochs_test.d.ts +0 -137
  207. package/dest/e2e_epochs/epochs_test.d.ts.map +0 -1
  208. package/dest/e2e_epochs/epochs_test.js +0 -485
  209. package/dest/e2e_fees/bridging_race.notest.d.ts.map +0 -1
  210. package/dest/e2e_fees/fees_test.d.ts +0 -89
  211. package/dest/e2e_fees/fees_test.d.ts.map +0 -1
  212. package/dest/e2e_l1_publisher/write_json.d.ts +0 -11
  213. package/dest/e2e_l1_publisher/write_json.d.ts.map +0 -1
  214. package/dest/e2e_l1_publisher/write_json.js +0 -57
  215. package/dest/e2e_multi_validator/utils.d.ts +0 -12
  216. package/dest/e2e_multi_validator/utils.d.ts.map +0 -1
  217. package/dest/e2e_nested_contract/nested_contract_test.d.ts +0 -22
  218. package/dest/e2e_nested_contract/nested_contract_test.d.ts.map +0 -1
  219. package/dest/e2e_nested_contract/nested_contract_test.js +0 -40
  220. package/dest/e2e_p2p/inactivity_slash_test.d.ts +0 -31
  221. package/dest/e2e_p2p/inactivity_slash_test.d.ts.map +0 -1
  222. package/dest/e2e_p2p/inactivity_slash_test.js +0 -138
  223. package/dest/e2e_p2p/p2p_network.d.ts.map +0 -1
  224. package/dest/e2e_p2p/reqresp/utils.d.ts +0 -22
  225. package/dest/e2e_p2p/reqresp/utils.d.ts.map +0 -1
  226. package/dest/e2e_p2p/shared.d.ts +0 -100
  227. package/dest/e2e_p2p/shared.d.ts.map +0 -1
  228. package/dest/e2e_p2p/shared.js +0 -257
  229. package/dest/e2e_storage_proof/fixtures/storage_proof_fetcher.d.ts +0 -2
  230. package/dest/e2e_storage_proof/fixtures/storage_proof_fetcher.d.ts.map +0 -1
  231. package/dest/e2e_storage_proof/fixtures/storage_proof_fixture.d.ts.map +0 -1
  232. package/dest/e2e_token_contract/token_contract_test.d.ts +0 -44
  233. package/dest/e2e_token_contract/token_contract_test.d.ts.map +0 -1
  234. package/src/e2e_deploy_contract/deploy_test.ts +0 -73
  235. package/src/e2e_epochs/epochs_test.ts +0 -596
  236. package/src/e2e_l1_publisher/write_json.ts +0 -78
  237. package/src/e2e_nested_contract/nested_contract_test.ts +0 -51
  238. package/src/e2e_p2p/inactivity_slash_test.ts +0 -181
  239. package/src/e2e_p2p/shared.ts +0 -391
  240. /package/dest/{e2e_storage_proof → automine/contracts}/fixtures/storage_proof_fetcher.js +0 -0
  241. /package/dest/{e2e_storage_proof → automine/contracts}/fixtures/storage_proof_fixture.js +0 -0
  242. /package/dest/{e2e_multi_validator/utils.js → composed/web3signer/multi_validator_keystore_utils.js} +0 -0
  243. /package/src/{e2e_storage_proof → automine/contracts}/fixtures/storage_proof.json +0 -0
  244. /package/src/{e2e_storage_proof → automine/contracts}/fixtures/storage_proof_fetcher.ts +0 -0
  245. /package/src/{e2e_storage_proof → automine/contracts}/fixtures/storage_proof_fixture.ts +0 -0
  246. /package/src/{e2e_multi_validator/utils.ts → composed/web3signer/multi_validator_keystore_utils.ts} +0 -0
@@ -0,0 +1,125 @@
1
+ import type { AztecAddress } from '@aztec/aztec.js/addresses';
2
+ import type { Fr } from '@aztec/aztec.js/fields';
3
+ import type { Logger } from '@aztec/aztec.js/log';
4
+ import { isL1ToL2MessageReady } from '@aztec/aztec.js/messaging';
5
+ import type { AztecNode } from '@aztec/aztec.js/node';
6
+ import type { Wallet } from '@aztec/aztec.js/wallet';
7
+ import type { BlockNumber, CheckpointNumber } from '@aztec/foundation/branded-types';
8
+ import { retryUntil } from '@aztec/foundation/retry';
9
+ import { ExecutionPayload } from '@aztec/stdlib/tx';
10
+
11
+ import { sendL1ToL2Message } from '../../fixtures/l1_to_l2_messaging.js';
12
+ import type { CrossChainMessagingTest } from './cross_chain_messaging_test.js';
13
+
14
+ /** Scope from which an L1→L2 message is consumed on L2. */
15
+ export type L1ToL2MessageScope = 'private' | 'public';
16
+
17
+ /** Dependencies the L1→L2 message helpers close over. */
18
+ export interface L1ToL2MessageHelperDeps {
19
+ t: CrossChainMessagingTest;
20
+ aztecNode: AztecNode;
21
+ wallet: Wallet;
22
+ user1Address: AztecAddress;
23
+ log: Logger;
24
+ /** Marks the current pending tip proven on L1, subject to the caller's proving policy. */
25
+ markAsProven: () => Promise<void>;
26
+ }
27
+
28
+ /** Helpers for driving L1→L2 messages through the inbox, shared across the L1→L2 messaging suites. */
29
+ export interface L1ToL2MessageHelpers {
30
+ sendMessageToL2(message: {
31
+ recipient: AztecAddress;
32
+ content: Fr;
33
+ secretHash: Fr;
34
+ }): ReturnType<typeof sendL1ToL2Message>;
35
+ advanceBlock(): Promise<BlockNumber>;
36
+ waitForMessageFetched(msgHash: Fr): Promise<CheckpointNumber>;
37
+ waitForMessageReady(
38
+ msgHash: Fr,
39
+ scope: L1ToL2MessageScope,
40
+ onNotReady?: (blockNumber: BlockNumber) => Promise<void>,
41
+ ): Promise<void>;
42
+ }
43
+
44
+ /**
45
+ * Builds the L1→L2 message helpers over a running {@link CrossChainMessagingTest}. The `markAsProven`
46
+ * dependency lets each suite plug in its own proving policy: suites that never pause proving pass an
47
+ * unconditional mark, while the inbox-drift suite gates it behind a flag it toggles mid-test.
48
+ */
49
+ export function createL1ToL2MessageHelpers(deps: L1ToL2MessageHelperDeps): L1ToL2MessageHelpers {
50
+ const { t, aztecNode, wallet, user1Address, log, markAsProven } = deps;
51
+
52
+ // Sends an L1→L2 message from the harness L1 account. This suite skips the token bridge, so the
53
+ // message context is built from the test's L1 handles rather than a CrossChainTestHarness.
54
+ const sendMessageToL2 = (message: { recipient: AztecAddress; content: Fr; secretHash: Fr }) =>
55
+ sendL1ToL2Message(message, {
56
+ l1Client: t.harnessL1Client,
57
+ l1ContractAddresses: t.deployL1ContractsValues.l1ContractAddresses,
58
+ });
59
+
60
+ // Sends a tx to L2 to advance the block number by 1
61
+ const advanceBlock = async () => {
62
+ const block = await aztecNode.getBlockNumber();
63
+ log.warn(`Sending noop tx at block ${block}`);
64
+ await wallet.sendTx(ExecutionPayload.empty(), { from: user1Address });
65
+ const newBlock = await aztecNode.getBlockNumber();
66
+ log.warn(`Advanced to block ${newBlock}`);
67
+ if (newBlock === block) {
68
+ throw new Error(`Failed to advance block ${block}`);
69
+ }
70
+ // Keep the proof window from expiring mid-test. No-op once a drift scenario disables proving.
71
+ await markAsProven();
72
+ return newBlock;
73
+ };
74
+
75
+ // Waits until the message is fetched by the archiver of the node and returns the msg target checkpoint.
76
+ // Advances a block on each retry because an L1->L2 message is only indexed once further L2 blocks build.
77
+ const waitForMessageFetched = async (msgHash: Fr) => {
78
+ log.warn(`Waiting until the message is fetched by the node`);
79
+ return await retryUntil(
80
+ async () => {
81
+ const checkpoint = await aztecNode.getL1ToL2MessageCheckpoint(msgHash);
82
+ if (checkpoint !== undefined) {
83
+ return checkpoint;
84
+ }
85
+ await advanceBlock();
86
+ return undefined;
87
+ },
88
+ 'get msg checkpoint',
89
+ 60,
90
+ );
91
+ };
92
+
93
+ // Waits until the message is ready to be consumed on L2 as it's been added to the world state
94
+ const waitForMessageReady = async (
95
+ msgHash: Fr,
96
+ scope: L1ToL2MessageScope,
97
+ onNotReady?: (blockNumber: BlockNumber) => Promise<void>,
98
+ ) => {
99
+ const msgCheckpoint = await waitForMessageFetched(msgHash);
100
+ log.warn(
101
+ `Waiting until L2 reaches the first block of msg checkpoint ${msgCheckpoint} (current is ${await aztecNode.getCheckpointNumber()})`,
102
+ );
103
+ await retryUntil(
104
+ async () => {
105
+ const [blockNumber, checkpointNumber] = await Promise.all([
106
+ aztecNode.getBlockNumber(),
107
+ aztecNode.getCheckpointNumber(),
108
+ ]);
109
+ const witness = await aztecNode.getL1ToL2MessageMembershipWitness('latest', msgHash);
110
+ const isReady = await isL1ToL2MessageReady(aztecNode, msgHash);
111
+ log.info(
112
+ `Block is ${blockNumber}, checkpoint is ${checkpointNumber}. Message checkpoint is ${msgCheckpoint}. Witness ${!!witness}. Ready ${isReady}.`,
113
+ );
114
+ if (!isReady) {
115
+ await (onNotReady ? onNotReady(blockNumber) : advanceBlock());
116
+ }
117
+ return isReady;
118
+ },
119
+ `wait for rollup to reach msg checkpoint ${msgCheckpoint}`,
120
+ 240,
121
+ );
122
+ };
123
+
124
+ return { sendMessageToL2, advanceBlock, waitForMessageFetched, waitForMessageReady };
125
+ }
@@ -8,7 +8,7 @@ import type { AztecAddress } from '@aztec/stdlib/aztec-address';
8
8
  import { jest } from '@jest/globals';
9
9
  import type { Hex } from 'viem';
10
10
 
11
- import type { TestWallet } from '../test-wallet/test_wallet.js';
11
+ import type { TestWallet } from '../../test-wallet/test_wallet.js';
12
12
  import { FeesTest } from './fees_test.js';
13
13
 
14
14
  jest.setTimeout(300_000);
@@ -19,7 +19,7 @@ jest.setTimeout(300_000);
19
19
  // site in the codebase; keeping the file as reference for the original race scenario. Uses FeesTest
20
20
  // with prod sequencer (ethSlot=4s, aztecSlot=8s, inboxLag default, minTxsPerBlock=0) and
21
21
  // GasBridgingTestHarness for L1↔L2 fee-juice bridging. Single account, fake in-proc prover node.
22
- describe('e2e_fees bridging_race', () => {
22
+ describe('single-node/fees/bridging_race', () => {
23
23
  const ETHEREUM_SLOT_DURATION = 4;
24
24
  const AZTEC_SLOT_DURATION = ETHEREUM_SLOT_DURATION * 2;
25
25
 
@@ -54,6 +54,14 @@ describe('e2e_fees bridging_race', () => {
54
54
  bobsAddress = bobsAccountManager.address;
55
55
  });
56
56
 
57
+ // Sleeps until 500ms before the current L2 slot ends, so the subsequent bridge lands right at the slot
58
+ // boundary (this is what reproduces the "message not in state" race the test guards against).
59
+ const sleepUntilNearSlotEnd = async () => {
60
+ const sleepTime = (Number(t.monitor.checkpointTimestamp) + AZTEC_SLOT_DURATION) * 1000 - Date.now() - 500;
61
+ logger.info(`Sleeping for ${sleepTime}ms until near end of L2 slot before sending L1 fee juice to L2 inbox`);
62
+ await sleep(sleepTime);
63
+ };
64
+
57
65
  // Reproduces a timing race where an L1→L2 fee-juice bridge message lands just before the end of an
58
66
  // L2 slot, causing the archiver to miss it. The fix was to wait for the archiver to see the message
59
67
  // before waiting for the required two-block confirmation. The sleep injected into approve() simulates
@@ -65,11 +73,7 @@ describe('e2e_fees bridging_race', () => {
65
73
  const origApprove = l1TokenManager.approve.bind(l1TokenManager);
66
74
  l1TokenManager.approve = async (amount: bigint, address: Hex, addressName = '') => {
67
75
  await origApprove(amount, address, addressName);
68
- const sleepTime = (Number(t.chainMonitor.checkpointTimestamp) + AZTEC_SLOT_DURATION) * 1000 - Date.now() - 500;
69
- logger.info(`Sleeping for ${sleepTime}ms until near end of L2 slot before sending L1 fee juice to L2 inbox`);
70
- // REFACTOR: hand-rolled slot-boundary sleep; replace with a timing helper that derives the remaining
71
- // slot time from the chain monitor's slot boundaries rather than computing it inline.
72
- await sleep(sleepTime);
76
+ await sleepUntilNearSlotEnd();
73
77
  };
74
78
 
75
79
  // Waiting for the archiver to sync the message _before_ waiting for the mandatory 2 L2 blocks to pass fixed it
@@ -1,11 +1,12 @@
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';
4
6
  import { CheatCodes, getTokenAllowedSetupFunctions } from '@aztec/aztec/testing';
5
7
  import { createExtendedL1Client } from '@aztec/ethereum/client';
6
- import { RollupContract } from '@aztec/ethereum/contracts';
8
+ import type { RollupContract } from '@aztec/ethereum/contracts';
7
9
  import type { DeployAztecL1ContractsArgs } from '@aztec/ethereum/deploy-aztec-l1-contracts';
8
- import { ChainMonitor } from '@aztec/ethereum/test';
9
10
  import { BlockNumber } from '@aztec/foundation/branded-types';
10
11
  import { EthAddress } from '@aztec/foundation/eth-address';
11
12
  import { sleep } from '@aztec/foundation/sleep';
@@ -18,39 +19,70 @@ import { TokenContract as BananaCoin } from '@aztec/noir-contracts.js/Token';
18
19
  import { CounterContract } from '@aztec/noir-test-contracts.js/Counter';
19
20
  import { ProtocolContractAddress } from '@aztec/protocol-contracts';
20
21
  import { getCanonicalFeeJuice } from '@aztec/protocol-contracts/fee-juice';
22
+ import { getContractInstanceFromInstantiationParams } from '@aztec/stdlib/contract';
21
23
  import { Gas, GasSettings } from '@aztec/stdlib/gas';
22
24
  import type { AztecNodeAdmin } from '@aztec/stdlib/interfaces/client';
23
25
 
24
26
  import { getContract } from 'viem';
25
27
 
26
- import { L1_DIRECT_WRITE_ACCOUNT_INDEX, MNEMONIC, getPaddedMaxFeesPerGas } from '../fixtures/fixtures.js';
28
+ import { L1_DIRECT_WRITE_ACCOUNT_INDEX, MNEMONIC, getPaddedMaxFeesPerGas } from '../../fixtures/fixtures.js';
29
+ import { type SetupOptions, ensureAuthRegistryPublished, setup } from '../../fixtures/setup.js';
30
+ import { testSpan } from '../../fixtures/timing.js';
31
+ import { mintTokensToPrivate } from '../../fixtures/token_utils.js';
32
+ import { type BalancesFn, getBalancesFn, setupSponsoredFPC } from '../../fixtures/utils.js';
27
33
  import {
28
- type EndToEndContext,
29
- type SetupOptions,
30
- ensureAuthRegistryPublished,
31
- setup,
32
- teardown,
33
- } from '../fixtures/setup.js';
34
- import { mintTokensToPrivate } from '../fixtures/token_utils.js';
35
- import { type BalancesFn, getBalancesFn, setupSponsoredFPC } from '../fixtures/utils.js';
36
- import { FeeJuicePortalTestingHarnessFactory, type GasBridgingTestHarness } from '../shared/gas_portal_test_harness.js';
37
- import { TestWallet } from '../test-wallet/test_wallet.js';
34
+ FeeJuicePortalTestingHarnessFactory,
35
+ type GasBridgingTestHarness,
36
+ } from '../../shared/gas_portal_test_harness.js';
37
+ import { TestWallet } from '../../test-wallet/test_wallet.js';
38
+ import { SingleNodeTestContext, type SingleNodeTestOpts } from '../single_node_test_context.js';
39
+
40
+ // Fixed deploy salts so BananaCoin and its BananaFPC land at deterministic addresses given the FPC
41
+ // admin. This lets the BananaFPC's fee-juice balance be seeded at genesis (see `FeesTest.setup`)
42
+ // instead of bridged from L1 during setup — the address must be known before genesis is computed.
43
+ const BANANA_COIN_SALT = new Fr(0xba4a4a);
44
+ const BANANA_FPC_SALT = new Fr(0xfacade);
45
+
46
+ const BANANA_COIN_CONSTRUCTOR_ARGS = ['BC', 'BC', 18n] as const;
47
+
48
+ /**
49
+ * Computes the deterministic BananaCoin and BananaFPC instances for the given admin/deployer, matching
50
+ * what {@link FeesTest.applyDeployBananaToken} and {@link FeesTest.applyFPCSetup} deploy with the fixed
51
+ * salts above. Used both to seed the BananaFPC's fee juice at genesis and to assert the deployed
52
+ * addresses match the seeded one.
53
+ */
54
+ async function computeBananaContractAddresses(admin: AztecAddress) {
55
+ const bananaCoin = await getContractInstanceFromInstantiationParams(BananaCoin.artifact, {
56
+ salt: BANANA_COIN_SALT,
57
+ constructorArgs: [admin, ...BANANA_COIN_CONSTRUCTOR_ARGS],
58
+ deployer: admin,
59
+ });
60
+ const bananaFPC = await getContractInstanceFromInstantiationParams(FPCContract.artifact, {
61
+ salt: BANANA_FPC_SALT,
62
+ constructorArgs: [bananaCoin.address, admin],
63
+ deployer: admin,
64
+ });
65
+ return { bananaCoinAddress: bananaCoin.address, bananaFPCAddress: bananaFPC.address };
66
+ }
38
67
 
39
68
  /**
40
69
  * Test fixture for testing fees. Provides the following setup steps:
41
70
  * InitialAccounts: Initializes 3 Schnorr account contracts.
42
71
  * PublicDeployAccounts: Deploys the accounts publicly.
43
72
  * DeployFeeJuice: Deploys the Fee Juice contract.
44
- * FPCSetup: Deploys BananaCoin and FPC contracts, and bridges gas from L1.
45
- * SponsoredFPCSetup: Deploys Sponsored FPC contract, and bridges gas from L1.
73
+ * FPCSetup: Deploys BananaCoin and FPC contracts; the FPC's fee juice is seeded at genesis.
74
+ * SponsoredFPCSetup: Registers the Sponsored FPC contract, whose fee juice is seeded at genesis.
46
75
  * FundAlice: Mints private and public bananas to Alice.
47
76
  * SetupSubscription: Deploys a counter contract and a subscription contract, and mints Fee Juice to the subscription contract.
77
+ *
78
+ * The fee-domain harness over the single-node topology: extends {@link SingleNodeTestContext} so it
79
+ * reuses the base node tracking / chain monitor / teardown machinery, but builds its environment with
80
+ * the bespoke fee opts below (prover node, sponsored-FPC funding, token allowlist) rather than the
81
+ * base's default node config, and layers the fee-domain setup (FPC, fee juice, banana token) on top.
48
82
  */
49
- export class FeesTest {
83
+ export class FeesTest extends SingleNodeTestContext {
50
84
  private accounts: AztecAddress[] = [];
51
- public context!: EndToEndContext;
52
85
 
53
- public logger: Logger;
54
86
  public aztecNode!: AztecNode;
55
87
  public aztecNodeAdmin!: AztecNodeAdmin;
56
88
  public cheatCodes!: CheatCodes;
@@ -65,6 +97,7 @@ export class FeesTest {
65
97
 
66
98
  public gasSettings!: GasSettings;
67
99
 
100
+ /** The base's {@link SingleNodeTestContext.rollup}, exposed under the fee suite's historical name. */
68
101
  public rollupContract!: RollupContract;
69
102
 
70
103
  public feeJuiceContract!: FeeJuiceContract;
@@ -75,8 +108,6 @@ export class FeesTest {
75
108
  public subscriptionContract!: AppSubscriptionContract;
76
109
  public feeJuiceBridgeTestHarness!: GasBridgingTestHarness;
77
110
 
78
- public chainMonitor!: ChainMonitor;
79
-
80
111
  public getCoinbaseBalance!: () => Promise<bigint>;
81
112
  public getCoinbaseSequencerRewards!: () => Promise<bigint>;
82
113
  public getGasBalanceFn!: BalancesFn;
@@ -90,50 +121,69 @@ export class FeesTest {
90
121
  public readonly SUBSCRIPTION_AMOUNT = BigInt(1e19);
91
122
  public readonly APP_SPONSORED_TX_GAS_LIMIT = BigInt(10e9);
92
123
 
124
+ private testName: string;
125
+
93
126
  constructor(
94
127
  testName: string,
95
128
  private numberOfAccounts = 3,
96
129
  private setupOptions: Partial<SetupOptions & DeployAztecL1ContractsArgs> = {},
97
130
  ) {
131
+ super();
98
132
  if (!numberOfAccounts) {
99
133
  throw new Error('There must be at least 1 initial account.');
100
134
  }
101
135
  setupOptions.coinbase ??= EthAddress.random();
102
136
  this.coinbase = setupOptions.coinbase!;
137
+ this.testName = testName;
103
138
  this.logger = createLogger(`e2e:e2e_fees:${testName}`);
104
139
  }
105
140
 
106
- async setup(opts: Partial<SetupOptions> = {}) {
141
+ override async setup(opts: SingleNodeTestOpts = {}) {
107
142
  this.logger.verbose('Setting up fresh context...');
108
143
  // Token allowlist entries are test-only: FPC-based fee payment with custom tokens won't work on mainnet alpha.
109
144
  const tokenAllowList = await getTokenAllowedSetupFunctions();
110
- this.context = await setup(this.numberOfAccounts, {
145
+ const context = await setup(this.numberOfAccounts, {
111
146
  startProverNode: true,
112
147
  ...this.setupOptions,
113
148
  ...opts,
114
149
  fundSponsoredFPC: true,
150
+ // Seed the BananaFPC's fee juice at genesis instead of bridging it from L1 in applyFPCSetup. The
151
+ // FPC admin is the first account, so its address is deterministic once the accounts are generated.
152
+ computeExtraGenesisFundedAddresses: async defaultAccounts => [
153
+ (await computeBananaContractAddresses(defaultAccounts[0].address)).bananaFPCAddress,
154
+ ],
115
155
  l1ContractsArgs: { ...this.setupOptions },
116
156
  txPublicSetupAllowListExtend: [...(this.setupOptions.txPublicSetupAllowListExtend ?? []), ...tokenAllowList],
117
157
  });
118
158
 
119
- this.rollupContract = RollupContract.getFromConfig(this.context.config);
120
- this.chainMonitor = new ChainMonitor(this.rollupContract, this.context.dateProvider, this.logger, 200).start();
159
+ // Reuse the base context machinery (rollup, epoch cache, chain monitor, node tracking, teardown)
160
+ // over the environment built above. Restore the FeesTest-named logger afterwards, since
161
+ // hydrateFromContext repoints `this.logger` at the context logger.
162
+ await this.hydrateFromContext(context);
163
+ this.logger = createLogger(`e2e:e2e_fees:${this.testName}`);
164
+ this.rollupContract = this.rollup;
121
165
 
122
166
  await this.applyBaseSetup();
167
+ }
123
168
 
124
- return this;
169
+ async catchUpProvenChain() {
170
+ await testSpan('wait:proven-checkpoint', async () => {
171
+ const bn = await this.aztecNode.getBlockNumber();
172
+ while ((await this.aztecNode.getBlockNumber('proven')) < bn) {
173
+ await sleep(1000);
174
+ }
175
+ });
125
176
  }
126
177
 
127
- async teardown() {
128
- await this.chainMonitor.stop();
129
- await teardown(this.context);
178
+ /** Warps L1 to the next epoch boundary so the current epoch closes and can be proven. */
179
+ async advanceToNextEpoch() {
180
+ await testSpan('warp:proven-checkpoint-epoch', () => this.cheatCodes.rollup.advanceToNextEpoch());
130
181
  }
131
182
 
132
- async catchUpProvenChain() {
133
- const bn = await this.aztecNode.getBlockNumber();
134
- while ((await this.aztecNode.getBlockNumber('proven')) < bn) {
135
- await sleep(1000);
136
- }
183
+ /** Advances to the next epoch and waits for the proven chain to catch up, so all prior fees are paid out. */
184
+ async waitForEpochProven() {
185
+ await this.advanceToNextEpoch();
186
+ await this.catchUpProvenChain();
137
187
  }
138
188
 
139
189
  async getBlockRewards() {
@@ -152,7 +202,9 @@ export class FeesTest {
152
202
  async mintAndBridgeFeeJuice(minter: AztecAddress, recipient: AztecAddress) {
153
203
  const claim = await this.feeJuiceBridgeTestHarness.prepareTokensOnL1(recipient);
154
204
  const { claimSecret: secret, messageLeafIndex: index } = claim;
155
- await this.feeJuiceContract.methods.claim(recipient, claim.claimAmount, secret, index).send({ from: minter });
205
+ await testSpan('setup:bridge', () =>
206
+ this.feeJuiceContract.methods.claim(recipient, claim.claimAmount, secret, index).send({ from: minter }),
207
+ );
156
208
  }
157
209
 
158
210
  /** Alice mints bananaCoin tokens privately to the target address and redeems them. */
@@ -161,7 +213,7 @@ export class FeesTest {
161
213
  .balance_of_private(address)
162
214
  .simulate({ from: address });
163
215
 
164
- await mintTokensToPrivate(this.bananaCoin, this.aliceAddress, address, amount);
216
+ await testSpan('tx:mint', () => mintTokensToPrivate(this.bananaCoin, this.aliceAddress, address, amount));
165
217
 
166
218
  const { result: balanceAfter } = await this.bananaCoin.methods
167
219
  .balance_of_private(address)
@@ -230,9 +282,14 @@ export class FeesTest {
230
282
  async applyDeployBananaToken() {
231
283
  this.logger.info('Applying deploy banana token setup');
232
284
 
233
- const { contract: bananaCoin } = await BananaCoin.deploy(this.wallet, this.aliceAddress, 'BC', 'BC', 18n).send({
234
- from: this.aliceAddress,
235
- });
285
+ const { contract: bananaCoin } = await testSpan('deploy:token', () =>
286
+ BananaCoin.deploy(this.wallet, this.aliceAddress, ...BANANA_COIN_CONSTRUCTOR_ARGS, {
287
+ salt: BANANA_COIN_SALT,
288
+ deployer: this.aliceAddress,
289
+ }).send({
290
+ from: this.aliceAddress,
291
+ }),
292
+ );
236
293
  this.logger.info(`BananaCoin deployed at ${bananaCoin.address}`);
237
294
 
238
295
  this.bananaCoin = bananaCoin;
@@ -251,13 +308,27 @@ export class FeesTest {
251
308
  expect((await this.wallet.getContractMetadata(feeJuiceContract.address)).isContractPublished).toBe(true);
252
309
 
253
310
  const bananaCoin = this.bananaCoin;
254
- const { contract: bananaFPC } = await FPCContract.deploy(this.wallet, bananaCoin.address, this.fpcAdmin).send({
255
- from: this.aliceAddress,
256
- });
311
+ const { contract: bananaFPC } = await testSpan('deploy:fpc', () =>
312
+ FPCContract.deploy(this.wallet, bananaCoin.address, this.fpcAdmin, {
313
+ salt: BANANA_FPC_SALT,
314
+ deployer: this.aliceAddress,
315
+ }).send({
316
+ from: this.aliceAddress,
317
+ }),
318
+ );
257
319
 
258
320
  this.logger.info(`BananaPay deployed at ${bananaFPC.address}`);
259
321
 
260
- await this.feeJuiceBridgeTestHarness.bridgeFromL1ToL2(bananaFPC.address, this.aliceAddress);
322
+ // The BananaFPC's fee juice is seeded at genesis (see FeesTest.setup) rather than bridged here.
323
+ // Assert the deploy landed at the seeded address so a params drift surfaces as a clear error rather
324
+ // than a downstream "insufficient fee payer balance".
325
+ const { bananaFPCAddress } = await computeBananaContractAddresses(this.aliceAddress);
326
+ if (!bananaFPC.address.equals(bananaFPCAddress)) {
327
+ throw new Error(
328
+ `Deployed BananaFPC address ${bananaFPC.address} does not match the genesis-funded address ` +
329
+ `${bananaFPCAddress}; the deterministic deploy params drifted from the genesis funding computation.`,
330
+ );
331
+ }
261
332
 
262
333
  this.bananaFPC = bananaFPC;
263
334
 
@@ -338,10 +409,24 @@ export class FeesTest {
338
409
  public async applyFundAliceWithBananas() {
339
410
  this.logger.info('Applying fund Alice with bananas setup');
340
411
 
341
- await this.mintPrivateBananas(this.ALICE_INITIAL_BANANAS, this.aliceAddress);
342
- await this.bananaCoin.methods
343
- .mint_to_public(this.aliceAddress, this.ALICE_INITIAL_BANANAS)
344
- .send({ from: this.aliceAddress });
412
+ // Both mints are alice sends on BananaCoin touching disjoint balances, so they ride a single
413
+ // BatchCall tx (one proof, one slot) rather than two concurrent txs. The PXE serializes proving,
414
+ // so two concurrent sends would still be proven back-to-back and land in consecutive slots.
415
+ const { result: privateBalanceBefore } = await this.bananaCoin.methods
416
+ .balance_of_private(this.aliceAddress)
417
+ .simulate({ from: this.aliceAddress });
418
+
419
+ await testSpan('tx:mint', () =>
420
+ new BatchCall(this.wallet, [
421
+ this.bananaCoin.methods.mint_to_private(this.aliceAddress, this.ALICE_INITIAL_BANANAS),
422
+ this.bananaCoin.methods.mint_to_public(this.aliceAddress, this.ALICE_INITIAL_BANANAS),
423
+ ]).send({ from: this.aliceAddress }),
424
+ );
425
+
426
+ const { result: privateBalanceAfter } = await this.bananaCoin.methods
427
+ .balance_of_private(this.aliceAddress)
428
+ .simulate({ from: this.aliceAddress });
429
+ expect(privateBalanceAfter).toEqual(privateBalanceBefore + this.ALICE_INITIAL_BANANAS);
345
430
  }
346
431
 
347
432
  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
+ }