@aztec/ethereum 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 (47) hide show
  1. package/dest/config.d.ts +10 -1
  2. package/dest/config.d.ts.map +1 -1
  3. package/dest/config.js +24 -0
  4. package/dest/deploy_aztec_l1_contracts.d.ts +2 -2
  5. package/dest/deploy_aztec_l1_contracts.d.ts.map +1 -1
  6. package/dest/deploy_aztec_l1_contracts.js +13 -4
  7. package/dest/foundry_binary.d.ts +13 -0
  8. package/dest/foundry_binary.d.ts.map +1 -0
  9. package/dest/foundry_binary.js +52 -0
  10. package/dest/l1_tx_utils/config.js +3 -3
  11. package/dest/l1_tx_utils/l1_tx_utils.d.ts +1 -1
  12. package/dest/l1_tx_utils/l1_tx_utils.d.ts.map +1 -1
  13. package/dest/l1_tx_utils/l1_tx_utils.js +57 -15
  14. package/dest/publisher_manager.d.ts +18 -6
  15. package/dest/publisher_manager.d.ts.map +1 -1
  16. package/dest/publisher_manager.js +35 -6
  17. package/dest/test/blob_kzg_warmup.d.ts +19 -0
  18. package/dest/test/blob_kzg_warmup.d.ts.map +1 -0
  19. package/dest/test/blob_kzg_warmup.js +64 -0
  20. package/dest/test/chain_monitor.d.ts +33 -2
  21. package/dest/test/chain_monitor.d.ts.map +1 -1
  22. package/dest/test/chain_monitor.js +71 -6
  23. package/dest/test/eth_cheat_codes.d.ts +20 -3
  24. package/dest/test/eth_cheat_codes.d.ts.map +1 -1
  25. package/dest/test/eth_cheat_codes.js +50 -40
  26. package/dest/test/index.d.ts +2 -1
  27. package/dest/test/index.d.ts.map +1 -1
  28. package/dest/test/index.js +1 -0
  29. package/dest/test/rollup_cheat_codes.d.ts +30 -1
  30. package/dest/test/rollup_cheat_codes.d.ts.map +1 -1
  31. package/dest/test/rollup_cheat_codes.js +27 -0
  32. package/dest/test/start_anvil.d.ts +1 -1
  33. package/dest/test/start_anvil.d.ts.map +1 -1
  34. package/dest/test/start_anvil.js +41 -5
  35. package/package.json +5 -5
  36. package/src/config.ts +35 -0
  37. package/src/deploy_aztec_l1_contracts.ts +18 -5
  38. package/src/foundry_binary.ts +57 -0
  39. package/src/l1_tx_utils/config.ts +3 -3
  40. package/src/l1_tx_utils/l1_tx_utils.ts +52 -18
  41. package/src/publisher_manager.ts +44 -17
  42. package/src/test/blob_kzg_warmup.ts +65 -0
  43. package/src/test/chain_monitor.ts +88 -5
  44. package/src/test/eth_cheat_codes.ts +47 -43
  45. package/src/test/index.ts +1 -0
  46. package/src/test/rollup_cheat_codes.ts +51 -0
  47. package/src/test/start_anvil.ts +38 -6
@@ -36,9 +36,20 @@ export type ChainMonitorEventMap = {
36
36
  'l2-fees': [L2FeeData];
37
37
  };
38
38
 
39
+ /** Options for tuning what the {@link ChainMonitor} polls on each new L1 block. */
40
+ export type ChainMonitorOptions = {
41
+ /**
42
+ * Whether to fetch L2 fee/oracle data (5 extra rollup reads per new L1 block) and emit `l2-fees`.
43
+ * Defaults to `true`. Set to `false` for tests that only care about slot/checkpoint/proven state to
44
+ * avoid the extra round-trips.
45
+ */
46
+ includeFeeData?: boolean;
47
+ };
48
+
39
49
  /** Utility class that polls the chain on quick intervals and logs new L1 blocks, L2 blocks, and L2 proofs. */
40
50
  export class ChainMonitor extends EventEmitter<ChainMonitorEventMap> {
41
51
  private readonly l1Client: ViemClient;
52
+ private readonly includeFeeData: boolean;
42
53
  private inbox: InboxContract | undefined;
43
54
  private handle: NodeJS.Timeout | undefined;
44
55
  // eslint-disable-next-line aztec-custom/no-non-primitive-in-collections
@@ -68,9 +79,11 @@ export class ChainMonitor extends EventEmitter<ChainMonitorEventMap> {
68
79
  private readonly dateProvider: DateProvider = new DateProvider(),
69
80
  private readonly logger = createLogger('aztecjs:utils:chain_monitor'),
70
81
  private readonly intervalMs = 200,
82
+ options: ChainMonitorOptions = {},
71
83
  ) {
72
84
  super();
73
85
  this.l1Client = rollup.client;
86
+ this.includeFeeData = options.includeFeeData ?? true;
74
87
  }
75
88
 
76
89
  start() {
@@ -183,11 +196,13 @@ export class ChainMonitor extends EventEmitter<ChainMonitorEventMap> {
183
196
  this.emit('l2-slot', { l2SlotNumber, timestamp });
184
197
  }
185
198
 
186
- const feeData = await this.fetchFeeData(timestamp);
187
- if (this.hasFeeDataChanged(feeData)) {
188
- msg += ` with L2 min fee ${feeData.minFeePerMana}`;
189
- this.l2FeeData = feeData;
190
- this.emit('l2-fees', feeData);
199
+ if (this.includeFeeData) {
200
+ const feeData = await this.fetchFeeData(timestamp);
201
+ if (this.hasFeeDataChanged(feeData)) {
202
+ msg += ` with L2 min fee ${feeData.minFeePerMana}`;
203
+ this.l2FeeData = feeData;
204
+ this.emit('l2-fees', feeData);
205
+ }
191
206
  }
192
207
 
193
208
  this.logger.info(msg, {
@@ -273,6 +288,74 @@ export class ChainMonitor extends EventEmitter<ChainMonitorEventMap> {
273
288
  });
274
289
  }
275
290
 
291
+ /**
292
+ * Resolves with the first `checkpoint` event whose payload satisfies `match`. Unlike
293
+ * {@link waitUntilCheckpoint} (which waits for a target number), this lets callers wait for an
294
+ * arbitrary checkpoint property (e.g. one published in the first half of its slot). Rejects after
295
+ * `opts.timeout` ms if provided; otherwise waits indefinitely.
296
+ *
297
+ * By default this is purely event-driven and only resolves on the *next* matching checkpoint that
298
+ * arrives after the call. Set `checkCurrentCheckpoint` to also test the current checkpoint first (via
299
+ * a fresh {@link run} snapshot) and short-circuit if it already satisfies `match`. Use it only for
300
+ * latching state predicates (e.g. "checkpoint number has passed N"), where an already-satisfied
301
+ * result is valid and you want to avoid missing an advance that landed before the listener attached.
302
+ * Do NOT set it when the predicate depends on observing the checkpoint live (e.g. one published
303
+ * mid-slot that the caller then times against wall-clock), since it may return a checkpoint whose
304
+ * slot has already elapsed.
305
+ */
306
+ public async waitForCheckpoint(
307
+ match: (event: ChainMonitorEventMap['checkpoint'][0]) => boolean,
308
+ opts: { timeout?: number; checkCurrentCheckpoint?: boolean } = {},
309
+ ): Promise<ChainMonitorEventMap['checkpoint'][0]> {
310
+ if (opts.checkCurrentCheckpoint) {
311
+ await this.run();
312
+ const current: ChainMonitorEventMap['checkpoint'][0] = {
313
+ checkpointNumber: this.checkpointNumber,
314
+ l1BlockNumber: this.l1BlockNumber,
315
+ l2SlotNumber: this.l2SlotNumber,
316
+ timestamp: this.checkpointTimestamp,
317
+ };
318
+ if (match(current)) {
319
+ return current;
320
+ }
321
+ }
322
+ return new Promise((resolve, reject) => {
323
+ let timer: NodeJS.Timeout | undefined;
324
+ const listener = (event: ChainMonitorEventMap['checkpoint'][0]) => {
325
+ if (match(event)) {
326
+ if (timer) {
327
+ clearTimeout(timer);
328
+ }
329
+ this.off('checkpoint', listener);
330
+ resolve(event);
331
+ }
332
+ };
333
+ if (opts.timeout !== undefined) {
334
+ timer = setTimeout(() => {
335
+ this.off('checkpoint', listener);
336
+ reject(new Error(`Timed out after ${opts.timeout}ms waiting for a matching checkpoint`));
337
+ }, opts.timeout);
338
+ }
339
+ this.on('checkpoint', listener);
340
+ });
341
+ }
342
+
343
+ /** Resolves once the proven checkpoint number reaches `checkpointNumber`. */
344
+ public waitUntilCheckpointProven(checkpointNumber: CheckpointNumber): Promise<void> {
345
+ if (this.provenCheckpointNumber >= checkpointNumber) {
346
+ return Promise.resolve();
347
+ }
348
+ return new Promise(resolve => {
349
+ const listener = (data: { provenCheckpointNumber: CheckpointNumber; timestamp: bigint }) => {
350
+ if (data.provenCheckpointNumber >= checkpointNumber) {
351
+ this.off('checkpoint-proven', listener);
352
+ resolve();
353
+ }
354
+ };
355
+ this.on('checkpoint-proven', listener);
356
+ });
357
+ }
358
+
276
359
  private async fetchFeeData(timestamp: bigint): Promise<L2FeeData> {
277
360
  const [components, minFeePerMana, l1Fees, ethPerFeeAsset, manaTarget] = await Promise.all([
278
361
  this.rollup.getManaMinFeeComponentsAt(timestamp, true),
@@ -206,6 +206,22 @@ export class EthCheatCodes {
206
206
  }
207
207
  }
208
208
 
209
+ /**
210
+ * Starts interval mining from a freshly mined block and syncs the date provider to the block timestamp.
211
+ */
212
+ public async startIntervalMiningWithFreshBlock(seconds: number): Promise<void> {
213
+ if (seconds <= 0) {
214
+ throw new Error(`Interval mining requires a positive interval, got ${seconds}`);
215
+ }
216
+
217
+ await this.setAutomine(false);
218
+ await this.setIntervalMining(0, { silent: true });
219
+ await this.evmMine();
220
+ await this.syncDateProvider();
221
+ await this.setIntervalMining(seconds);
222
+ this.logger.warn(`Started L1 interval mining at ${seconds} seconds from a fresh block`);
223
+ }
224
+
209
225
  /**
210
226
  * Set the automine status of the underlying anvil chain
211
227
  * @param automine - The automine status to set
@@ -478,58 +494,46 @@ export class EthCheatCodes {
478
494
  }
479
495
 
480
496
  /**
481
- * Mines an empty block by temporarily removing all pending transactions from the mempool,
482
- * mining a block, and then re-adding the transactions back to the pool.
497
+ * Mines empty blocks while leaving any pending transactions untouched in the mempool.
498
+ *
499
+ * Never manipulates the mempool, so it is immune to the race that dropping and re-adding txs has against a
500
+ * concurrent publisher that is monitoring and re-broadcasting the same in-flight tx (with that approach the
501
+ * in-flight tx could reappear in the pool and be swept into the "empty" block, mining a proposal the caller
502
+ * expected to stay pending). Works in two steps: first the block gas limit is temporarily lowered below the
503
+ * intrinsic cost of any transaction (21000 gas) and the blocks are mined, so no pending tx is includable;
504
+ * then those blocks are reorged out and replaced with empty blocks mined at the restored gas limit. The
505
+ * reorg is needed because anvil applies a new gas limit only to future blocks: without it the just-mined
506
+ * blocks would keep the tiny gas limit, and an `eth_call` against `latest` (whose gas is capped by the
507
+ * block gas limit) would revert with "intrinsic gas too high".
483
508
  */
484
509
  public async mineEmptyBlock(blockCount: number = 1): Promise<void> {
485
510
  await this.execWithPausedAnvil(async () => {
486
- // Get all pending and queued transactions from the pool
487
- const txs = await this.getTxPoolContents();
488
-
489
- this.logger.debug(`Found ${txs.length} transactions in pool`);
490
-
491
- // Get raw transactions before dropping them
492
- const rawTxs: Hex[] = [];
493
- for (const tx of txs) {
494
- try {
495
- const rawTx = await this.doRpcCall('debug_getRawTransaction', [tx.hash]);
496
- if (rawTx) {
497
- rawTxs.push(rawTx);
498
- this.logger.debug(`Got raw tx for ${tx.hash}`);
499
- } else {
500
- this.logger.warn(`No raw tx found for ${tx.hash}`);
501
- }
502
- } catch {
503
- this.logger.warn(`Failed to get raw transaction for ${tx.hash}`);
504
- }
505
- }
506
-
507
- this.logger.debug(`Retrieved ${rawTxs.length} raw transactions`);
508
-
509
- // Drop all transactions from the mempool
510
- await this.doRpcCall('anvil_dropAllTransactions', []);
511
-
512
- // Mine an empty block
513
- await this.doMine(blockCount);
514
-
515
- // Re-add the transactions to the pool
516
- for (const rawTx of rawTxs) {
517
- try {
518
- const txHash = await this.doRpcCall('eth_sendRawTransaction', [rawTx]);
519
- this.logger.debug(`Re-added transaction ${txHash}`);
520
- } catch (err) {
521
- this.logger.warn(`Failed to re-add transaction: ${err}`);
522
- }
523
- }
524
-
525
- if (rawTxs.length !== txs.length) {
526
- this.logger.warn(`Failed to add all txs back: had ${txs.length} but re-added ${rawTxs.length}`);
511
+ const originalGasLimit = await this.getBlockGasLimit();
512
+ try {
513
+ await this.setBlockGasLimit(1n);
514
+ await this.doMine(blockCount);
515
+ } finally {
516
+ await this.setBlockGasLimit(originalGasLimit);
527
517
  }
518
+ // Replace the tiny-gas-limit blocks with empty blocks at the restored gas limit, keeping the same
519
+ // height and timestamps. The reorged-out blocks held no transactions, so nothing returns to the pool.
520
+ await this.doRpcCall('anvil_reorg', [blockCount, []]);
528
521
  });
529
522
 
530
523
  this.logger.warn(`Mined ${blockCount} empty L1 ${pluralize('block', blockCount)}`);
531
524
  }
532
525
 
526
+ /** Returns the gas limit of the latest mined L1 block. */
527
+ public async getBlockGasLimit(): Promise<bigint> {
528
+ const block = await this.doRpcCall('eth_getBlockByNumber', ['latest', false]);
529
+ return BigInt(block.gasLimit);
530
+ }
531
+
532
+ /** Sets the block gas limit applied to subsequently mined L1 blocks. */
533
+ public async setBlockGasLimit(gasLimit: bigint): Promise<void> {
534
+ await this.doRpcCall('anvil_setBlockGasLimit', [toHex(gasLimit)]);
535
+ }
536
+
533
537
  public async execWithPausedAnvil<T>(fn: () => Promise<T>): Promise<T> {
534
538
  const [blockInterval, wasAutoMining] = await Promise.all([this.getIntervalMining(), this.isAutoMining()]);
535
539
  try {
package/src/test/index.ts CHANGED
@@ -1,3 +1,4 @@
1
+ export * from './blob_kzg_warmup.js';
1
2
  export * from './eth_cheat_codes.js';
2
3
  export * from './eth_cheat_codes_with_state.js';
3
4
  export * from './start_anvil.js';
@@ -4,6 +4,7 @@ import type { ViemPublicClient } from '@aztec/ethereum/types';
4
4
  import { CheckpointNumber, EpochNumber, SlotNumber } from '@aztec/foundation/branded-types';
5
5
  import { EthAddress } from '@aztec/foundation/eth-address';
6
6
  import { createLogger } from '@aztec/foundation/log';
7
+ import { retryUntil } from '@aztec/foundation/retry';
7
8
  import type { DateProvider } from '@aztec/foundation/timer';
8
9
  import { RollupAbi } from '@aztec/l1-artifacts/RollupAbi';
9
10
 
@@ -244,6 +245,56 @@ export class RollupCheatCodes {
244
245
  });
245
246
  }
246
247
 
248
+ /**
249
+ * Polls the rollup until its current epoch reaches `epoch`. Unlike {@link advanceToEpoch} this does
250
+ * not warp the L1 clock; it only waits for the chain to reach `epoch` through external activity.
251
+ */
252
+ public async waitForEpoch(epoch: EpochNumber, opts: { timeout?: number; interval?: number } = {}): Promise<void> {
253
+ await retryUntil(
254
+ async () => (await this.getEpoch()) >= epoch || undefined,
255
+ `rollup epoch >= ${epoch}`,
256
+ opts.timeout ?? 60,
257
+ opts.interval ?? 1,
258
+ );
259
+ }
260
+
261
+ /**
262
+ * Polls the rollup until its current slot reaches `slot`. Unlike {@link advanceToSlot} this does not
263
+ * warp the L1 clock; it only waits for the chain to reach `slot` through external activity.
264
+ */
265
+ public async waitForSlot(slot: SlotNumber, opts: { timeout?: number; interval?: number } = {}): Promise<void> {
266
+ await retryUntil(
267
+ async () => (await this.getSlot()) >= slot || undefined,
268
+ `rollup slot >= ${slot}`,
269
+ opts.timeout ?? 60,
270
+ opts.interval ?? 1,
271
+ );
272
+ }
273
+
274
+ /**
275
+ * Polls the rollup until its pending checkpoint settles below `checkpoint` on a freshly mined, non-zero
276
+ * checkpoint, and returns that new pending checkpoint number. Reads the L1 rollup contract directly
277
+ * rather than a node, since a rollback lands on L1 first.
278
+ *
279
+ * A prune can momentarily drop the pending checkpoint to 0 before the post-deadline propose mines its
280
+ * replacement, so a caller detecting a rollback wants the new lower checkpoint, not that transient
281
+ * empty state — hence the non-zero guard.
282
+ */
283
+ public async waitForCheckpointBelow(
284
+ checkpoint: CheckpointNumber,
285
+ opts: { timeout?: number; interval?: number } = {},
286
+ ): Promise<CheckpointNumber> {
287
+ return await retryUntil(
288
+ async () => {
289
+ const { pending } = await this.getTips();
290
+ return pending > 0 && pending < checkpoint ? pending : undefined;
291
+ },
292
+ `rollup checkpoint in (0, ${checkpoint})`,
293
+ opts.timeout ?? 60,
294
+ opts.interval ?? 1,
295
+ );
296
+ }
297
+
247
298
  /**
248
299
  * Overrides the inProgress field of the Inbox contract state
249
300
  * @param howMuch - How many checkpoints to move it forward
@@ -1,10 +1,10 @@
1
1
  import { createLogger } from '@aztec/foundation/log';
2
2
  import { makeBackoff, retry } from '@aztec/foundation/retry';
3
3
  import type { TestDateProvider } from '@aztec/foundation/timer';
4
- import { fileURLToPath } from '@aztec/foundation/url';
5
4
 
6
5
  import { type ChildProcess, spawn } from 'child_process';
7
- import { dirname, resolve } from 'path';
6
+
7
+ import { resolveFoundryBinary } from '../foundry_binary.js';
8
8
 
9
9
  /** Minimal interface matching the @viem/anvil Anvil shape used by callers. */
10
10
  export interface Anvil {
@@ -14,6 +14,30 @@ export interface Anvil {
14
14
  stop(): Promise<void>;
15
15
  }
16
16
 
17
+ // Watchdog wrapper: instead of spawning anvil directly, we spawn a small bash supervisor that runs
18
+ // anvil as a background child and polls its own parent (this node process). If the parent dies for
19
+ // ANY reason — including SIGKILL / crash / OOM, where node's own exit handlers never run — the poll
20
+ // loop ends and the EXIT trap reaps anvil. The script is inlined (rather than shipped as a `.sh`) so
21
+ // it works from the published npm tarball too, and the resolved anvil binary is passed via
22
+ // `$ANVIL_BIN` so it works without `anvil` on PATH.
23
+ //
24
+ // `$@` is the anvil argv; `bash -c <script> bash <...args>` puts the args in `$@` and `$0` = 'bash'.
25
+ //
26
+ // The EXIT trap reaps anvil; INT/TERM just `exit` (which fires the EXIT trap) so a signal terminates
27
+ // the supervisor promptly instead of being swallowed — a trapped TERM does NOT terminate the shell,
28
+ // so trapping the kill directly on TERM would leave the poll loop running and the caller's teardown
29
+ // hanging until its SIGKILL escalation. `sleep & wait` makes the poll interruptible, so INT/TERM are
30
+ // handled immediately rather than after the current `sleep` returns.
31
+ const ANVIL_WATCHDOG = `
32
+ set -u
33
+ parent=$PPID
34
+ "$ANVIL_BIN" "$@" &
35
+ anvil_pid=$!
36
+ trap 'kill "$anvil_pid" 2>/dev/null' EXIT
37
+ trap 'exit 0' INT TERM
38
+ while kill -0 "$parent" 2>/dev/null; do sleep 1 & wait $!; done
39
+ `;
40
+
17
41
  /**
18
42
  * Ensures there's a running Anvil instance and returns the RPC URL.
19
43
  */
@@ -42,7 +66,7 @@ export async function startAnvil(
42
66
  dateProvider?: TestDateProvider;
43
67
  } = {},
44
68
  ): Promise<{ anvil: Anvil; methodCalls?: string[]; rpcUrl: string; stop: () => Promise<void> }> {
45
- const anvilBinary = resolve(dirname(fileURLToPath(import.meta.url)), '../../', 'scripts/anvil_kill_wrapper.sh');
69
+ const anvilBinary = resolveFoundryBinary('anvil');
46
70
  const logger = opts.log ? createLogger('ethereum:anvil') : undefined;
47
71
  const methodCalls = opts.captureMethodCalls ? ([] as string[]) : undefined;
48
72
 
@@ -50,6 +74,9 @@ export async function startAnvil(
50
74
 
51
75
  const anvil = await retry(
52
76
  async () => {
77
+ // `--port 0` lets anvil bind an OS-assigned ephemeral port; the actual port is read back from
78
+ // its "Listening on host:port" stdout below, so independent suites can spawn their own anvil
79
+ // in parallel without fighting over a fixed port.
53
80
  const port = opts.port ?? (process.env.ANVIL_PORT ? parseInt(process.env.ANVIL_PORT) : 8545);
54
81
  const args: string[] = [
55
82
  '--host',
@@ -71,9 +98,11 @@ export async function startAnvil(
71
98
  }
72
99
  args.push('--slots-in-an-epoch', String(opts.slotsInAnEpoch ?? 1));
73
100
 
74
- const child = spawn(anvilBinary, args, {
101
+ // Spawn the watchdog (see ANVIL_WATCHDOG). It launches anvil with these args and reaps it if we
102
+ // die; `$0` is 'bash' and `$@` is the anvil argv.
103
+ const child = spawn('bash', ['-c', ANVIL_WATCHDOG, 'bash', ...args], {
75
104
  stdio: ['ignore', 'pipe', 'pipe'],
76
- env: { ...process.env, RAYON_NUM_THREADS: '1' },
105
+ env: { ...process.env, ANVIL_BIN: anvilBinary, RAYON_NUM_THREADS: '1' },
77
106
  });
78
107
 
79
108
  // Wait for "Listening on" or an early exit.
@@ -183,7 +212,10 @@ function syncDateProviderFromAnvilOutput(text: string, dateProvider: TestDatePro
183
212
  }
184
213
  }
185
214
 
186
- /** Send SIGTERM, wait up to 5 s, then SIGKILL. All timers are always cleared. */
215
+ /**
216
+ * Send SIGTERM to the watchdog, wait up to 5 s, then SIGKILL. The watchdog's trap forwards the
217
+ * signal to anvil, so terminating it tears down anvil too. All timers are always cleared.
218
+ */
187
219
  function killChild(child: ChildProcess): Promise<void> {
188
220
  return new Promise<void>(resolve => {
189
221
  if (child.exitCode !== null || child.killed) {