@aztec/ethereum 0.0.1-commit.9ef841308 → 0.0.1-commit.a5db02d

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 (134) hide show
  1. package/dest/client.d.ts +17 -3
  2. package/dest/client.d.ts.map +1 -1
  3. package/dest/client.js +49 -3
  4. package/dest/config.d.ts +15 -6
  5. package/dest/config.d.ts.map +1 -1
  6. package/dest/config.js +29 -9
  7. package/dest/contracts/chain_state_override.d.ts +78 -0
  8. package/dest/contracts/chain_state_override.d.ts.map +1 -0
  9. package/dest/contracts/chain_state_override.js +137 -0
  10. package/dest/contracts/empire_base.d.ts +1 -3
  11. package/dest/contracts/empire_base.d.ts.map +1 -1
  12. package/dest/contracts/fee_asset_price_oracle.d.ts +6 -2
  13. package/dest/contracts/fee_asset_price_oracle.d.ts.map +1 -1
  14. package/dest/contracts/fee_asset_price_oracle.js +11 -6
  15. package/dest/contracts/governance.d.ts +108 -33
  16. package/dest/contracts/governance.d.ts.map +1 -1
  17. package/dest/contracts/governance.js +193 -12
  18. package/dest/contracts/governance_proposer.d.ts +33 -3
  19. package/dest/contracts/governance_proposer.d.ts.map +1 -1
  20. package/dest/contracts/governance_proposer.js +51 -9
  21. package/dest/contracts/gse.d.ts +4 -2
  22. package/dest/contracts/gse.d.ts.map +1 -1
  23. package/dest/contracts/gse.js +2 -2
  24. package/dest/contracts/inbox.d.ts +3 -3
  25. package/dest/contracts/inbox.d.ts.map +1 -1
  26. package/dest/contracts/inbox.js +12 -7
  27. package/dest/contracts/index.d.ts +3 -3
  28. package/dest/contracts/index.d.ts.map +1 -1
  29. package/dest/contracts/index.js +2 -2
  30. package/dest/contracts/multicall.d.ts +79 -13
  31. package/dest/contracts/multicall.d.ts.map +1 -1
  32. package/dest/contracts/multicall.js +117 -95
  33. package/dest/contracts/outbox.d.ts +27 -4
  34. package/dest/contracts/outbox.d.ts.map +1 -1
  35. package/dest/contracts/outbox.js +34 -7
  36. package/dest/contracts/rollup.d.ts +5399 -25
  37. package/dest/contracts/rollup.d.ts.map +1 -1
  38. package/dest/contracts/rollup.js +333 -64
  39. package/dest/contracts/{tally_slashing_proposer.d.ts → slashing_proposer.d.ts} +3 -4
  40. package/dest/contracts/slashing_proposer.d.ts.map +1 -0
  41. package/dest/contracts/{tally_slashing_proposer.js → slashing_proposer.js} +13 -15
  42. package/dest/deploy_aztec_l1_contracts.d.ts +4 -7
  43. package/dest/deploy_aztec_l1_contracts.d.ts.map +1 -1
  44. package/dest/deploy_aztec_l1_contracts.js +15 -8
  45. package/dest/foundry_binary.d.ts +13 -0
  46. package/dest/foundry_binary.d.ts.map +1 -0
  47. package/dest/foundry_binary.js +52 -0
  48. package/dest/generated/l1-contracts-defaults.d.ts +2 -2
  49. package/dest/generated/l1-contracts-defaults.js +2 -2
  50. package/dest/l1_artifacts.d.ts +14941 -16273
  51. package/dest/l1_artifacts.d.ts.map +1 -1
  52. package/dest/l1_artifacts.js +9 -24
  53. package/dest/l1_contract_addresses.d.ts +61 -65
  54. package/dest/l1_contract_addresses.d.ts.map +1 -1
  55. package/dest/l1_contract_addresses.js +101 -82
  56. package/dest/l1_reader.d.ts +3 -5
  57. package/dest/l1_reader.d.ts.map +1 -1
  58. package/dest/l1_reader.js +3 -6
  59. package/dest/l1_tx_utils/config.js +3 -3
  60. package/dest/l1_tx_utils/l1_tx_utils.d.ts +7 -1
  61. package/dest/l1_tx_utils/l1_tx_utils.d.ts.map +1 -1
  62. package/dest/l1_tx_utils/l1_tx_utils.js +79 -26
  63. package/dest/l1_tx_utils/readonly_l1_tx_utils.d.ts +1 -1
  64. package/dest/l1_tx_utils/readonly_l1_tx_utils.d.ts.map +1 -1
  65. package/dest/l1_tx_utils/readonly_l1_tx_utils.js +2 -1
  66. package/dest/l1_tx_utils/tx_delayer.d.ts +5 -3
  67. package/dest/l1_tx_utils/tx_delayer.d.ts.map +1 -1
  68. package/dest/l1_tx_utils/tx_delayer.js +7 -5
  69. package/dest/publisher_manager.d.ts +18 -6
  70. package/dest/publisher_manager.d.ts.map +1 -1
  71. package/dest/publisher_manager.js +44 -7
  72. package/dest/queries.d.ts +13 -2
  73. package/dest/queries.d.ts.map +1 -1
  74. package/dest/queries.js +62 -3
  75. package/dest/test/blob_kzg_warmup.d.ts +19 -0
  76. package/dest/test/blob_kzg_warmup.d.ts.map +1 -0
  77. package/dest/test/blob_kzg_warmup.js +64 -0
  78. package/dest/test/chain_monitor.d.ts +34 -2
  79. package/dest/test/chain_monitor.d.ts.map +1 -1
  80. package/dest/test/chain_monitor.js +76 -6
  81. package/dest/test/eth_cheat_codes.d.ts +26 -3
  82. package/dest/test/eth_cheat_codes.d.ts.map +1 -1
  83. package/dest/test/eth_cheat_codes.js +61 -40
  84. package/dest/test/index.d.ts +2 -1
  85. package/dest/test/index.d.ts.map +1 -1
  86. package/dest/test/index.js +1 -0
  87. package/dest/test/rollup_cheat_codes.d.ts +60 -3
  88. package/dest/test/rollup_cheat_codes.d.ts.map +1 -1
  89. package/dest/test/rollup_cheat_codes.js +86 -7
  90. package/dest/test/start_anvil.d.ts +1 -1
  91. package/dest/test/start_anvil.d.ts.map +1 -1
  92. package/dest/test/start_anvil.js +41 -5
  93. package/dest/utils.d.ts +9 -2
  94. package/dest/utils.d.ts.map +1 -1
  95. package/dest/utils.js +45 -14
  96. package/package.json +6 -6
  97. package/src/client.ts +57 -1
  98. package/src/config.ts +44 -13
  99. package/src/contracts/chain_state_override.ts +200 -0
  100. package/src/contracts/empire_base.ts +0 -2
  101. package/src/contracts/fee_asset_price_oracle.ts +10 -5
  102. package/src/contracts/governance.ts +266 -9
  103. package/src/contracts/governance_proposer.ts +52 -5
  104. package/src/contracts/gse.ts +7 -2
  105. package/src/contracts/inbox.ts +13 -5
  106. package/src/contracts/index.ts +2 -2
  107. package/src/contracts/multicall.ts +179 -105
  108. package/src/contracts/outbox.ts +42 -8
  109. package/src/contracts/rollup.ts +372 -62
  110. package/src/contracts/{tally_slashing_proposer.ts → slashing_proposer.ts} +14 -16
  111. package/src/deploy_aztec_l1_contracts.ts +19 -10
  112. package/src/foundry_binary.ts +57 -0
  113. package/src/generated/l1-contracts-defaults.ts +2 -2
  114. package/src/l1_artifacts.ts +12 -35
  115. package/src/l1_contract_addresses.ts +120 -94
  116. package/src/l1_reader.ts +4 -9
  117. package/src/l1_tx_utils/config.ts +3 -3
  118. package/src/l1_tx_utils/l1_tx_utils.ts +80 -33
  119. package/src/l1_tx_utils/readonly_l1_tx_utils.ts +2 -1
  120. package/src/l1_tx_utils/tx_delayer.ts +16 -7
  121. package/src/publisher_manager.ts +54 -18
  122. package/src/queries.ts +70 -4
  123. package/src/test/blob_kzg_warmup.ts +65 -0
  124. package/src/test/chain_monitor.ts +93 -5
  125. package/src/test/eth_cheat_codes.ts +57 -43
  126. package/src/test/index.ts +1 -0
  127. package/src/test/rollup_cheat_codes.ts +115 -6
  128. package/src/test/start_anvil.ts +38 -6
  129. package/src/utils.ts +41 -17
  130. package/dest/contracts/empire_slashing_proposer.d.ts +0 -69
  131. package/dest/contracts/empire_slashing_proposer.d.ts.map +0 -1
  132. package/dest/contracts/empire_slashing_proposer.js +0 -216
  133. package/dest/contracts/tally_slashing_proposer.d.ts.map +0 -1
  134. package/src/contracts/empire_slashing_proposer.ts +0 -265
@@ -5,7 +5,7 @@ import { InterruptError, TimeoutError } from '@aztec/foundation/error';
5
5
  import { EthAddress } from '@aztec/foundation/eth-address';
6
6
  import { type Logger, type LoggerBindings, createLogger } from '@aztec/foundation/log';
7
7
  import { Semaphore } from '@aztec/foundation/queue';
8
- import { retryUntil } from '@aztec/foundation/retry';
8
+ import { makeBackoff, retry, retryUntil } from '@aztec/foundation/retry';
9
9
  import { sleep } from '@aztec/foundation/sleep';
10
10
  import { DateProvider } from '@aztec/foundation/timer';
11
11
  import { RollupAbi } from '@aztec/l1-artifacts/RollupAbi';
@@ -44,6 +44,11 @@ import {
44
44
 
45
45
  const MAX_L1_TX_STATES = 32;
46
46
 
47
+ // Backoff (in seconds) for retrying the read-only RPC calls that prepare a tx cancellation. A
48
+ // cancellation is fired in the background after a tx times out and is important (it frees the stuck
49
+ // nonce), so a transient RPC failure while reading the pending nonce or gas price must not abandon it.
50
+ const CANCELLATION_PREP_RETRY_BACKOFF_S = [1, 2, 4, 8];
51
+
47
52
  export class L1TxUtils extends ReadOnlyL1TxUtils {
48
53
  protected txs: L1TxState[] = [];
49
54
  /** Last nonce successfully sent to the chain. Used as a lower bound when a fallback RPC node returns a stale count. */
@@ -131,6 +136,14 @@ export class L1TxUtils extends ReadOnlyL1TxUtils {
131
136
  );
132
137
  }
133
138
 
139
+ /**
140
+ * Clears the cached `lastSentNonce` so the next `sendTransaction` call fetches the real
141
+ * nonce from the chain. Call this after an L1 reorg to prevent stale nonce references.
142
+ */
143
+ public resetNonce(): void {
144
+ this.lastSentNonce = undefined;
145
+ }
146
+
134
147
  public getSenderAddress() {
135
148
  return this.address;
136
149
  }
@@ -213,6 +226,19 @@ export class L1TxUtils extends ReadOnlyL1TxUtils {
213
226
  return await this.signTransaction(txRequest as TransactionSerializable);
214
227
  }
215
228
 
229
+ private async checkInterruptedOrTimedOut(gasConfig: Pick<L1TxConfig, 'txTimeoutAt'>): Promise<Date> {
230
+ if (this.interrupted) {
231
+ throw new InterruptError(`Transaction sending is interrupted`);
232
+ }
233
+ const now = new Date(await this.getL1Timestamp());
234
+ if (gasConfig.txTimeoutAt && now > gasConfig.txTimeoutAt) {
235
+ throw new TimeoutError(
236
+ `Transaction timed out before sending (now ${now.toISOString()} > timeoutAt ${gasConfig.txTimeoutAt.toISOString()})`,
237
+ );
238
+ }
239
+ return now;
240
+ }
241
+
216
242
  /**
217
243
  * Sends a transaction with gas estimation and pricing
218
244
  * @param request - The transaction request (to, data, value)
@@ -225,14 +251,15 @@ export class L1TxUtils extends ReadOnlyL1TxUtils {
225
251
  blobInputs?: L1BlobInputs,
226
252
  stateChange: TxUtilsState = TxUtilsState.SENT,
227
253
  ): Promise<{ txHash: Hex; state: L1TxState }> {
228
- if (this.interrupted) {
229
- throw new InterruptError(`Transaction sending is interrupted`);
230
- }
231
-
232
254
  try {
233
255
  const gasConfig = merge(this.config, gasConfigOverrides);
234
256
  const account = this.getSenderAddress().toString();
235
257
 
258
+ // Fail fast before doing any work (gas estimation, balance check) if we've been interrupted
259
+ // or if the caller's deadline has already passed. The same check is repeated after gas
260
+ // estimation in case it took long enough to push us past the deadline.
261
+ await this.checkInterruptedOrTimedOut(gasConfig);
262
+
236
263
  let gasLimit: bigint;
237
264
  if (this.debugMaxGasLimit) {
238
265
  gasLimit = MAX_L1_TX_LIMIT;
@@ -245,16 +272,7 @@ export class L1TxUtils extends ReadOnlyL1TxUtils {
245
272
 
246
273
  const gasPrice = await this.getGasPrice(gasConfig, !!blobInputs);
247
274
 
248
- if (this.interrupted) {
249
- throw new InterruptError(`Transaction sending is interrupted`);
250
- }
251
-
252
- const now = new Date(await this.getL1Timestamp());
253
- if (gasConfig.txTimeoutAt && now > gasConfig.txTimeoutAt) {
254
- throw new TimeoutError(
255
- `Transaction timed out before sending (now ${now.toISOString()} > timeoutAt ${gasConfig.txTimeoutAt.toISOString()})`,
256
- );
257
- }
275
+ const now = await this.checkInterruptedOrTimedOut(gasConfig);
258
276
 
259
277
  let txHash: Hex;
260
278
  let nonce: number;
@@ -281,7 +299,7 @@ export class L1TxUtils extends ReadOnlyL1TxUtils {
281
299
  // Create the new state for monitoring
282
300
  const l1TxState: L1TxState = {
283
301
  ...baseState,
284
- id: (await this.store?.consumeNextStateId(account)) ?? Math.max(...this.txs.map(tx => tx.id), 0),
302
+ id: (await this.store?.consumeNextStateId(account)) ?? Math.max(...this.txs.map(tx => tx.id), -1) + 1,
285
303
  txHashes: [txHash],
286
304
  cancelTxHashes: [],
287
305
  status: TxUtilsState.IDLE,
@@ -418,10 +436,23 @@ export class L1TxUtils extends ReadOnlyL1TxUtils {
418
436
 
419
437
  const initialTxHash = txHashes[0];
420
438
  let currentTxHash = txHashes.at(-1)!;
421
- let l1Timestamp: number;
439
+ let l1Timestamp = 0;
422
440
 
423
441
  while (true) {
424
- l1Timestamp = await this.getL1Timestamp();
442
+ try {
443
+ l1Timestamp = await this.getL1Timestamp();
444
+ } catch (err) {
445
+ // A transient RPC failure here must not abort monitoring with a rejection: callers that
446
+ // fire this loop in the background would surface it as an unhandled rejection (e.g. when a
447
+ // test tears down its L1 node while a monitor iteration is in flight). Exit quietly if we
448
+ // are shutting down, otherwise retry on the next interval.
449
+ if (this.interrupted) {
450
+ break;
451
+ }
452
+ this.logger.error(`Error fetching L1 timestamp while monitoring tx ${currentTxHash}`, err, { nonce, account });
453
+ await sleep(gasConfig.checkIntervalMs!);
454
+ continue;
455
+ }
425
456
 
426
457
  try {
427
458
  const timePassed = l1Timestamp - state.lastSentAtL1Ts.getTime();
@@ -693,9 +724,37 @@ export class L1TxUtils extends ReadOnlyL1TxUtils {
693
724
  return;
694
725
  }
695
726
 
696
- // Check if the original tx is still pending
697
- const currentNonce = await this.client.getTransactionCount({ address: account, blockTag: 'pending' });
698
- if (currentNonce < nonce) {
727
+ // Resolve the pending nonce and cancellation gas price up front. These are read-only RPC calls, so
728
+ // they are safe to retry; a transient RPC failure here must not permanently abandon the cancellation
729
+ // (which would leave the nonce stuck and the tx state stranded short of CANCELLED). We retry with a
730
+ // real backoff before giving up, unlike getGasPrice's tight internal retry which can be exhausted by
731
+ // a brief node hiccup. The retried block performs no state-changing send, so retrying cannot
732
+ // double-send the cancellation tx.
733
+ const { currentNonce, cancelGasPrice } = await retry(
734
+ async () => {
735
+ const currentNonce = await this.client.getTransactionCount({ address: account, blockTag: 'pending' });
736
+ if (currentNonce >= nonce) {
737
+ // Get gas price with higher priority fee for cancellation
738
+ const cancelGasPrice = await this.getGasPrice(
739
+ {
740
+ ...this.config,
741
+ // Use high bump for cancellation to ensure it replaces the original tx
742
+ priorityFeeRetryBumpPercentage: 150, // 150% bump should be enough to replace any tx
743
+ },
744
+ isBlobTx,
745
+ state.txHashes.length,
746
+ previousGasPrice,
747
+ );
748
+ return { currentNonce, cancelGasPrice };
749
+ }
750
+ return { currentNonce, cancelGasPrice: undefined };
751
+ },
752
+ `Preparing cancellation for L1 tx from account ${account} with nonce ${nonce}`,
753
+ makeBackoff(CANCELLATION_PREP_RETRY_BACKOFF_S),
754
+ this.logger,
755
+ );
756
+
757
+ if (cancelGasPrice === undefined) {
699
758
  this.logger.verbose(
700
759
  `Not sending cancellation for L1 tx from account ${account} with nonce ${nonce} as it is dropped`,
701
760
  { nonce, account, currentNonce },
@@ -704,18 +763,6 @@ export class L1TxUtils extends ReadOnlyL1TxUtils {
704
763
  return;
705
764
  }
706
765
 
707
- // Get gas price with higher priority fee for cancellation
708
- const cancelGasPrice = await this.getGasPrice(
709
- {
710
- ...this.config,
711
- // Use high bump for cancellation to ensure it replaces the original tx
712
- priorityFeeRetryBumpPercentage: 150, // 150% bump should be enough to replace any tx
713
- },
714
- isBlobTx,
715
- state.txHashes.length,
716
- previousGasPrice,
717
- );
718
-
719
766
  const { maxFeePerGas, maxPriorityFeePerGas, maxFeePerBlobGas } = cancelGasPrice;
720
767
  this.logger.verbose(
721
768
  `Attempting to cancel L1 ${isBlobTx ? 'blob' : 'vanilla'} transaction from account ${account} with nonce ${nonce} after time out`,
@@ -3,6 +3,7 @@ import type { EthAddress } from '@aztec/foundation/eth-address';
3
3
  import { type Logger, createLogger } from '@aztec/foundation/log';
4
4
  import { makeBackoff, retry } from '@aztec/foundation/retry';
5
5
  import { DateProvider } from '@aztec/foundation/timer';
6
+ import { getErrorCause } from '@aztec/foundation/types';
6
7
  import { RollupAbi } from '@aztec/l1-artifacts/RollupAbi';
7
8
 
8
9
  import pickBy from 'lodash.pickby';
@@ -395,7 +396,7 @@ export class ReadOnlyL1TxUtils {
395
396
  this.logger?.debug(`L1 transaction simulation succeeded`, { ...result[0].calls[0] });
396
397
  return { gasUsed: result[0].gasUsed, result: result[0].calls[0].data as `0x${string}` };
397
398
  } catch (err) {
398
- if (err instanceof MethodNotFoundRpcError || err instanceof MethodNotSupportedRpcError) {
399
+ if (getErrorCause(err, MethodNotFoundRpcError) || getErrorCause(err, MethodNotSupportedRpcError)) {
399
400
  if (gasConfig.fallbackGasEstimate) {
400
401
  this.logger?.warn(
401
402
  `Node does not support eth_simulateV1 API. Using fallback gas estimate: ${gasConfig.fallbackGasEstimate}`,
@@ -81,7 +81,11 @@ export class Delayer {
81
81
 
82
82
  public maxInclusionTimeIntoSlot: number | undefined = undefined;
83
83
  public ethereumSlotDuration: bigint;
84
- public nextWait: { l1Timestamp: bigint } | { l1BlockNumber: bigint } | { indefinitely: true } | undefined = undefined;
84
+ public nextWait:
85
+ | { l1Timestamp: bigint; timeoutSeconds?: number }
86
+ | { l1BlockNumber: bigint; timeoutSeconds?: number }
87
+ | { indefinitely: true }
88
+ | undefined = undefined;
85
89
  public sentTxHashes: Hex[] = [];
86
90
  public cancelledTxs: Hex[] = [];
87
91
 
@@ -110,13 +114,13 @@ export class Delayer {
110
114
  }
111
115
 
112
116
  /** Delays the next tx to be sent so it lands on the given L1 block number. */
113
- pauseNextTxUntilBlock(l1BlockNumber: number | bigint) {
114
- this.nextWait = { l1BlockNumber: BigInt(l1BlockNumber) };
117
+ pauseNextTxUntilBlock(l1BlockNumber: number | bigint, timeoutSeconds?: number) {
118
+ this.nextWait = { l1BlockNumber: BigInt(l1BlockNumber), timeoutSeconds };
115
119
  }
116
120
 
117
121
  /** Delays the next tx to be sent so it lands on the given timestamp. */
118
- pauseNextTxUntilTimestamp(l1Timestamp: number | bigint) {
119
- this.nextWait = { l1Timestamp: BigInt(l1Timestamp) };
122
+ pauseNextTxUntilTimestamp(l1Timestamp: number | bigint, timeoutSeconds?: number) {
123
+ this.nextWait = { l1Timestamp: BigInt(l1Timestamp), timeoutSeconds };
120
124
  }
121
125
 
122
126
  /** Delays the next tx to be sent indefinitely. */
@@ -198,9 +202,14 @@ export function wrapClientWithDelayer<T extends ViemClient>(client: T, delayer:
198
202
  // Or wait until the desired block number or timestamp
199
203
  wait =
200
204
  'l1BlockNumber' in waitUntil
201
- ? waitUntilBlock(publicClient, waitUntil.l1BlockNumber - 1n, logger)
205
+ ? waitUntilBlock(publicClient, waitUntil.l1BlockNumber - 1n, logger, waitUntil.timeoutSeconds)
202
206
  : 'l1Timestamp' in waitUntil
203
- ? waitUntilL1Timestamp(publicClient, waitUntil.l1Timestamp - delayer.ethereumSlotDuration, logger)
207
+ ? waitUntilL1Timestamp(
208
+ publicClient,
209
+ waitUntil.l1Timestamp - delayer.ethereumSlotDuration,
210
+ logger,
211
+ waitUntil.timeoutSeconds,
212
+ )
204
213
  : undefined;
205
214
 
206
215
  logger.info(`Delaying tx ${txHash} until ${inspect(waitUntil)}`, {
@@ -40,11 +40,12 @@ export class PublisherManager<UtilsType extends L1TxUtils = L1TxUtils> {
40
40
  private log: Logger;
41
41
  private config: PublisherManagerConfig;
42
42
  private static readonly FUNDING_CHECK_INTERVAL_MS = 2 * 60 * 1000;
43
- private funder?: UtilsType;
44
- private fundingPromise?: RunningPromise;
43
+ protected funder?: UtilsType;
44
+ protected readonly fundingPromise?: RunningPromise;
45
+ private started = false;
45
46
 
46
47
  constructor(
47
- private publishers: UtilsType[],
48
+ protected publishers: UtilsType[],
48
49
  config: PublisherManagerConfig,
49
50
  opts?: { bindings?: LoggerBindings; funder?: UtilsType },
50
51
  ) {
@@ -67,34 +68,60 @@ export class PublisherManager<UtilsType extends L1TxUtils = L1TxUtils> {
67
68
  this.funder = undefined;
68
69
  }
69
70
  }
71
+
72
+ if (this.funder && hasThreshold && hasAmount) {
73
+ this.fundingPromise = new RunningPromise(
74
+ () => this.triggerFundingIfNeeded(),
75
+ this.log,
76
+ PublisherManager.FUNDING_CHECK_INTERVAL_MS,
77
+ );
78
+ }
70
79
  }
71
80
 
72
- /** Loads the state of all publishers and the funder, and starts periodic funding checks. */
81
+ /**
82
+ * Clears any interrupted flag left by a previous {@link stop} so publishing works again after a restart,
83
+ * loads the state of all publishers and the funder, and starts periodic funding checks. Idempotent: a
84
+ * start while already started is a no-op, so it never re-runs `loadStateAndResumeMonitoring` (which
85
+ * would spawn a duplicate background monitor per pending nonce). Lifecycle calls are expected to be
86
+ * serialized by the caller.
87
+ */
73
88
  public async start(): Promise<void> {
89
+ if (this.started) {
90
+ this.log.debug('PublisherManager already started, ignoring start');
91
+ return;
92
+ }
93
+
94
+ // Clear the interrupted flag set by a previous stop() so a restarted manager can publish again.
95
+ // On a first start this is a no-op (the flag is already clear).
96
+ this.publishers.forEach(pub => pub.restart());
97
+ this.funder?.restart();
98
+
74
99
  await Promise.all([
75
100
  ...this.publishers.map(pub => pub.loadStateAndResumeMonitoring()),
76
101
  this.funder?.loadStateAndResumeMonitoring(),
77
102
  ]);
78
103
 
79
- if (
80
- this.funder &&
81
- this.config.publisherFundingThreshold !== undefined &&
82
- this.config.publisherFundingAmount !== undefined
83
- ) {
84
- this.fundingPromise = new RunningPromise(
85
- () => this.triggerFundingIfNeeded(),
86
- this.log,
87
- PublisherManager.FUNDING_CHECK_INTERVAL_MS,
88
- );
89
- this.fundingPromise.start();
90
- }
104
+ this.fundingPromise?.start();
105
+ // Marked started only once fully up, so a start that failed to load state can be retried.
106
+ this.started = true;
91
107
  }
92
108
 
93
- /** Stops the funding loop and interrupts all publishers. */
109
+ /**
110
+ * Stops the funding loop, interrupts all publishers so no further L1 txs are sent, and waits (bounded)
111
+ * for their in-flight tx monitor loops to wind down. Idempotent, and the manager may be restarted
112
+ * afterwards via {@link start}, which clears the interrupted flag.
113
+ */
94
114
  public async stop(): Promise<void> {
115
+ this.started = false;
95
116
  await this.fundingPromise?.stop();
96
117
  this.publishers.forEach(pub => pub.interrupt());
97
118
  this.funder?.interrupt();
119
+ // Wait for in-flight tx monitor loops to observe the interrupt, so no L1 requests are still
120
+ // being issued after shutdown (e.g. against an anvil instance a test is about to tear down).
121
+ await Promise.all([
122
+ ...this.publishers.map(pub => pub.waitMonitoringStopped()),
123
+ this.funder?.waitMonitoringStopped(),
124
+ ]);
98
125
  }
99
126
 
100
127
  // Finds and prioritises available publishers based on
@@ -133,8 +160,17 @@ export class PublisherManager<UtilsType extends L1TxUtils = L1TxUtils> {
133
160
  }),
134
161
  );
135
162
 
163
+ // Discount unfunded publishers: a publisher with no ETH cannot send a tx, so it must never win
164
+ // selection regardless of how favourable its state or last-used time is. Fall back to the full
165
+ // set only if every candidate is unfunded, so behaviour is no worse than before.
166
+ let fundedPublishers = publishersWithBalance.filter(p => p.balance > 0n);
167
+ if (fundedPublishers.length === 0) {
168
+ this.log.warn(`All candidate publishers have zero balance; selecting from unfunded publishers.`);
169
+ fundedPublishers = publishersWithBalance;
170
+ }
171
+
136
172
  // Sort based on state, then balance, then time since last use
137
- const sortedPublishers = publishersWithBalance.sort((a, b) => {
173
+ const sortedPublishers = fundedPublishers.sort((a, b) => {
138
174
  const stateComparison = sortOrder.indexOf(a.publisher.state) - sortOrder.indexOf(b.publisher.state);
139
175
  if (stateComparison !== 0) {
140
176
  return stateComparison;
package/src/queries.ts CHANGED
@@ -1,11 +1,77 @@
1
1
  import { EthAddress } from '@aztec/foundation/eth-address';
2
2
 
3
+ import { BaseError, type Block } from 'viem';
4
+
3
5
  import { DefaultL1ContractsConfig, type L1ContractsConfig } from './config.js';
4
6
  import { ReadOnlyGovernanceContract } from './contracts/governance.js';
5
7
  import { GovernanceProposerContract } from './contracts/governance_proposer.js';
6
8
  import { InboxContract } from './contracts/inbox.js';
7
9
  import { RollupContract } from './contracts/rollup.js';
8
- import type { ViemPublicClient } from './types.js';
10
+ import type { ViemClient, ViemPublicClient } from './types.js';
11
+
12
+ /**
13
+ * Returns the L1 finalized block, or `undefined` if the chain does not yet have one
14
+ * (common on freshly started devnets). Rethrows any other RPC error.
15
+ */
16
+ export async function getFinalizedL1Block(client: ViemClient): Promise<Block<bigint, false, 'finalized'> | undefined> {
17
+ try {
18
+ return await client.getBlock({ blockTag: 'finalized', includeTransactions: false });
19
+ } catch (err) {
20
+ if (isFinalizedBlockTagNotFoundError(err)) {
21
+ return undefined;
22
+ }
23
+ throw err;
24
+ }
25
+ }
26
+
27
+ // Error messages returned by popular Ethereum execution clients when
28
+ // eth_getBlockByNumber / eth_call is called with blockTag "finalized" or
29
+ // "safe" and no such block has been produced yet:
30
+ //
31
+ // geth "finalized block not found"
32
+ // "safe block not found"
33
+ // reth "block not found: finalized"
34
+ // "block not found: safe"
35
+ // nethermind "Unknown block error" (same for both tags)
36
+ // besu "Unknown block"
37
+ // erigon 'block "finalized" not available (head block: N)'
38
+ // 'block "safe" not available (head block: N)'
39
+ //
40
+ // A combined regex covers all five:
41
+ const FINALIZED_BLOCK_TAG_NOT_FOUND_MESSAGE_RE =
42
+ /(finalized|safe) block not found|block not found: (finalized|safe)|unknown block|block "(finalized|safe)" not available/i;
43
+
44
+ /**
45
+ * Returns true if the error originates from an RPC call that failed because
46
+ * the "finalized" (or "safe") block tag is not yet available on the chain.
47
+ */
48
+ export function isFinalizedBlockTagNotFoundError(err: unknown): boolean {
49
+ if (!err) {
50
+ return false;
51
+ }
52
+
53
+ if (err instanceof BaseError) {
54
+ const hit = err.walk((e: any) => matchesFinalizedBlockTagNotFound(e));
55
+ if (hit) {
56
+ return true;
57
+ }
58
+ }
59
+
60
+ for (let cur: any = err, i = 0; cur && i < 10; cur = cur.cause, i++) {
61
+ if (matchesFinalizedBlockTagNotFound(cur)) {
62
+ return true;
63
+ }
64
+ }
65
+ return false;
66
+ }
67
+
68
+ function matchesFinalizedBlockTagNotFound(e: any): boolean {
69
+ if (!e) {
70
+ return false;
71
+ }
72
+ const text = `${e.details ?? ''} ${e.message ?? ''} ${e.shortMessage ?? ''}`;
73
+ return FINALIZED_BLOCK_TAG_NOT_FOUND_MESSAGE_RE.test(text);
74
+ }
9
75
 
10
76
  /** Reads the L1ContractsConfig from L1 contracts. */
11
77
  export async function getL1ContractsConfig(
@@ -76,8 +142,8 @@ export async function getL1ContractsConfig(
76
142
  slasherProposer?.getRoundSize() ?? 0n,
77
143
  slasherProposer?.getLifetimeInRounds() ?? 0n,
78
144
  slasherProposer?.getExecutionDelayInRounds() ?? 0n,
79
- slasherProposer?.type === 'tally' ? slasherProposer.getSlashOffsetInRounds() : 0n,
80
- slasherProposer?.type === 'tally' ? slasherProposer.getSlashingAmounts() : [0n, 0n, 0n],
145
+ slasherProposer?.getSlashOffsetInRounds() ?? 0n,
146
+ slasherProposer?.getSlashingAmounts() ?? [0n, 0n, 0n],
81
147
  slasher?.getVetoer() ?? EthAddress.ZERO,
82
148
  slasher?.getSlashingDisableDuration() ?? 0,
83
149
  rollup.getManaTarget(),
@@ -114,7 +180,7 @@ export async function getL1ContractsConfig(
114
180
  rollupVersion: Number(rollupVersion),
115
181
  genesisArchiveTreeRoot: genesisArchiveTreeRoot.toString(),
116
182
  exitDelaySeconds: Number(exitDelay),
117
- slasherFlavor: slasherProposer?.type ?? 'tally',
183
+ slasherEnabled: !!slasherProposer,
118
184
  slashingOffsetInRounds: Number(slashingOffsetInRounds),
119
185
  slashAmountSmall: slashingAmounts[0],
120
186
  slashAmountMedium: slashingAmounts[1],
@@ -0,0 +1,65 @@
1
+ import { getBytesPerBlob, getBytesPerCommitment, getKzg } from '@aztec/blob-lib';
2
+ import type { Logger } from '@aztec/foundation/log';
3
+
4
+ import type { ExtendedViemWalletClient } from '../types.js';
5
+
6
+ /**
7
+ * Warms both KZG trusted setups in parallel for tests against a local anvil:
8
+ * - anvil's own setup, loaded lazily when it first validates a blob sidecar in `eth_sendRawTransaction`
9
+ * - our `@crate-crypto/node-eth-kzg` singleton (`getKzg()`, a ~2.2s synchronous precomp build)
10
+ *
11
+ * Without this, the first checkpoint publish pays both serially (~4.4s). The recipe does all RPC round
12
+ * trips up front, fires a single bare raw send carrying a fake (garbage) blob sidecar that anvil rejects
13
+ * after loading its trusted setup, yields once to flush the socket write, then synchronously builds our
14
+ * own precomp tables while anvil warms in parallel. The fake tx is rejected at admission, so it never
15
+ * enters the pool, mines no block, and burns no nonce — sending it from the passed client is harmless.
16
+ *
17
+ * Best-effort: any failure is debug-logged and swallowed, leaving lazy init as the fallback. Never throws.
18
+ *
19
+ * @param l1Client - The L1 client whose account sends the (rejected) warm-up blob tx.
20
+ */
21
+ export async function warmBlobKzg(l1Client: ExtendedViemWalletClient, logger?: Logger): Promise<void> {
22
+ try {
23
+ // A pure-JS fake kzg: returns deterministic garbage of the correct lengths (commitment and proof are
24
+ // both 48 bytes). It makes viem build a syntactically valid sidecar without initializing any native
25
+ // module, so anvil loads its trusted setup to validate the (invalid) proof and then rejects the tx.
26
+ const fakeKzg = {
27
+ blobToKzgCommitment: () => {
28
+ const commitment = new Uint8Array(getBytesPerCommitment());
29
+ commitment.fill(0xab);
30
+ commitment[0] = 0xc0;
31
+ return commitment;
32
+ },
33
+ computeBlobKzgProof: () => {
34
+ const proof = new Uint8Array(getBytesPerCommitment());
35
+ proof.fill(0xcd);
36
+ proof[0] = 0xc0;
37
+ return proof;
38
+ },
39
+ };
40
+
41
+ // All RPC round trips (nonce, fees, gas) happen here, so only a single socket write remains to flush.
42
+ const prepared = await l1Client.prepareTransactionRequest({
43
+ blobs: [new Uint8Array(getBytesPerBlob())],
44
+ kzg: fakeKzg,
45
+ to: '0x0000000000000000000000000000000000000000',
46
+ value: 0n,
47
+ maxFeePerBlobGas: 1_000_000_000_000n,
48
+ });
49
+ const serialized = await l1Client.signTransaction(prepared);
50
+
51
+ // Fire the raw send without awaiting and swallow the expected rejection.
52
+ const sent = l1Client.request({ method: 'eth_sendRawTransaction', params: [serialized] }).catch(() => {});
53
+
54
+ // Flush the single socket write so anvil receives the tx and starts loading its trusted setup in its
55
+ // own process before we block the event loop below.
56
+ await new Promise(resolve => setImmediate(resolve));
57
+
58
+ // Synchronously build our precomp tables (~2.2s, event-loop-blocking); anvil warms in parallel.
59
+ getKzg();
60
+
61
+ await sent;
62
+ } catch (err) {
63
+ logger?.debug('Failed to warm blob KZG; falling back to lazy init', { err });
64
+ }
65
+ }
@@ -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, {
@@ -221,6 +236,11 @@ export class ChainMonitor extends EventEmitter<ChainMonitorEventMap> {
221
236
  });
222
237
  }
223
238
 
239
+ public async waitUntilNextL2Slot(): Promise<void> {
240
+ const targetSlot = SlotNumber.add((await this.run()).l2SlotNumber, 1);
241
+ return this.waitUntilL2Slot(targetSlot);
242
+ }
243
+
224
244
  public waitUntilL1Block(block: number | bigint): Promise<void> {
225
245
  const targetBlock = typeof block === 'bigint' ? block.valueOf() : block;
226
246
  if (this.l1BlockNumber >= targetBlock) {
@@ -268,6 +288,74 @@ export class ChainMonitor extends EventEmitter<ChainMonitorEventMap> {
268
288
  });
269
289
  }
270
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
+
271
359
  private async fetchFeeData(timestamp: bigint): Promise<L2FeeData> {
272
360
  const [components, minFeePerMana, l1Fees, ethPerFeeAsset, manaTarget] = await Promise.all([
273
361
  this.rollup.getManaMinFeeComponentsAt(timestamp, true),