@aztec/ethereum 4.0.0-nightly.20250907 → 4.0.0-nightly.20260108

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 (226) hide show
  1. package/dest/account.d.ts +1 -1
  2. package/dest/chain.d.ts +1 -1
  3. package/dest/client.d.ts +2 -2
  4. package/dest/client.d.ts.map +1 -1
  5. package/dest/client.js +6 -2
  6. package/dest/config.d.ts +18 -46
  7. package/dest/config.d.ts.map +1 -1
  8. package/dest/config.js +40 -285
  9. package/dest/constants.d.ts +1 -1
  10. package/dest/contracts/empire_base.d.ts +8 -6
  11. package/dest/contracts/empire_base.d.ts.map +1 -1
  12. package/dest/contracts/empire_base.js +1 -1
  13. package/dest/contracts/empire_slashing_proposer.d.ts +8 -6
  14. package/dest/contracts/empire_slashing_proposer.d.ts.map +1 -1
  15. package/dest/contracts/empire_slashing_proposer.js +18 -3
  16. package/dest/contracts/errors.d.ts +1 -1
  17. package/dest/contracts/errors.d.ts.map +1 -1
  18. package/dest/contracts/fee_asset_handler.d.ts +4 -4
  19. package/dest/contracts/fee_asset_handler.d.ts.map +1 -1
  20. package/dest/contracts/fee_juice.d.ts +1 -1
  21. package/dest/contracts/fee_juice.d.ts.map +1 -1
  22. package/dest/contracts/governance.d.ts +16 -16
  23. package/dest/contracts/governance.d.ts.map +1 -1
  24. package/dest/contracts/governance.js +7 -3
  25. package/dest/contracts/governance_proposer.d.ts +7 -6
  26. package/dest/contracts/governance_proposer.d.ts.map +1 -1
  27. package/dest/contracts/governance_proposer.js +400 -12
  28. package/dest/contracts/gse.d.ts +1 -1
  29. package/dest/contracts/gse.d.ts.map +1 -1
  30. package/dest/contracts/inbox.d.ts +7 -3
  31. package/dest/contracts/inbox.d.ts.map +1 -1
  32. package/dest/contracts/inbox.js +4 -0
  33. package/dest/contracts/index.d.ts +1 -1
  34. package/dest/contracts/multicall.d.ts +5 -7
  35. package/dest/contracts/multicall.d.ts.map +1 -1
  36. package/dest/contracts/multicall.js +6 -4
  37. package/dest/contracts/registry.d.ts +1 -1
  38. package/dest/contracts/registry.d.ts.map +1 -1
  39. package/dest/contracts/rollup.d.ts +169 -118
  40. package/dest/contracts/rollup.d.ts.map +1 -1
  41. package/dest/contracts/rollup.js +714 -243
  42. package/dest/contracts/slasher_contract.d.ts +11 -1
  43. package/dest/contracts/slasher_contract.d.ts.map +1 -1
  44. package/dest/contracts/slasher_contract.js +18 -0
  45. package/dest/contracts/tally_slashing_proposer.d.ts +15 -7
  46. package/dest/contracts/tally_slashing_proposer.d.ts.map +1 -1
  47. package/dest/contracts/tally_slashing_proposer.js +15 -5
  48. package/dest/contracts/utils.d.ts +1 -1
  49. package/dest/deploy_aztec_l1_contracts.d.ts +247 -0
  50. package/dest/deploy_aztec_l1_contracts.d.ts.map +1 -0
  51. package/dest/deploy_aztec_l1_contracts.js +336 -0
  52. package/dest/deploy_l1_contract.d.ts +68 -0
  53. package/dest/deploy_l1_contract.d.ts.map +1 -0
  54. package/dest/deploy_l1_contract.js +312 -0
  55. package/dest/eth-signer/eth-signer.d.ts +1 -1
  56. package/dest/eth-signer/index.d.ts +1 -1
  57. package/dest/forwarder_proxy.d.ts +32 -0
  58. package/dest/forwarder_proxy.d.ts.map +1 -0
  59. package/dest/forwarder_proxy.js +93 -0
  60. package/dest/l1_artifacts.d.ts +17733 -6280
  61. package/dest/l1_artifacts.d.ts.map +1 -1
  62. package/dest/l1_artifacts.js +10 -5
  63. package/dest/l1_contract_addresses.d.ts +8 -4
  64. package/dest/l1_contract_addresses.d.ts.map +1 -1
  65. package/dest/l1_contract_addresses.js +5 -4
  66. package/dest/l1_reader.d.ts +4 -2
  67. package/dest/l1_reader.d.ts.map +1 -1
  68. package/dest/l1_reader.js +7 -1
  69. package/dest/l1_tx_utils/config.d.ts +59 -0
  70. package/dest/l1_tx_utils/config.d.ts.map +1 -0
  71. package/dest/l1_tx_utils/config.js +96 -0
  72. package/dest/l1_tx_utils/constants.d.ts +12 -0
  73. package/dest/l1_tx_utils/constants.d.ts.map +1 -0
  74. package/dest/l1_tx_utils/constants.js +39 -0
  75. package/dest/l1_tx_utils/factory.d.ts +24 -0
  76. package/dest/l1_tx_utils/factory.d.ts.map +1 -0
  77. package/dest/l1_tx_utils/factory.js +12 -0
  78. package/dest/l1_tx_utils/fee-strategies/index.d.ts +10 -0
  79. package/dest/l1_tx_utils/fee-strategies/index.d.ts.map +1 -0
  80. package/dest/l1_tx_utils/fee-strategies/index.js +12 -0
  81. package/dest/l1_tx_utils/fee-strategies/p75_competitive.d.ts +8 -0
  82. package/dest/l1_tx_utils/fee-strategies/p75_competitive.d.ts.map +1 -0
  83. package/dest/l1_tx_utils/fee-strategies/p75_competitive.js +129 -0
  84. package/dest/l1_tx_utils/fee-strategies/p75_competitive_blob_txs_only.d.ts +23 -0
  85. package/dest/l1_tx_utils/fee-strategies/p75_competitive_blob_txs_only.d.ts.map +1 -0
  86. package/dest/l1_tx_utils/fee-strategies/p75_competitive_blob_txs_only.js +191 -0
  87. package/dest/l1_tx_utils/fee-strategies/types.d.ts +51 -0
  88. package/dest/l1_tx_utils/fee-strategies/types.d.ts.map +1 -0
  89. package/dest/l1_tx_utils/fee-strategies/types.js +3 -0
  90. package/dest/l1_tx_utils/forwarder_l1_tx_utils.d.ts +41 -0
  91. package/dest/l1_tx_utils/forwarder_l1_tx_utils.d.ts.map +1 -0
  92. package/dest/l1_tx_utils/forwarder_l1_tx_utils.js +48 -0
  93. package/dest/l1_tx_utils/index-blobs.d.ts +3 -0
  94. package/dest/l1_tx_utils/index-blobs.d.ts.map +1 -0
  95. package/dest/l1_tx_utils/index-blobs.js +2 -0
  96. package/dest/l1_tx_utils/index.d.ts +12 -0
  97. package/dest/l1_tx_utils/index.d.ts.map +1 -0
  98. package/dest/l1_tx_utils/index.js +12 -0
  99. package/dest/l1_tx_utils/interfaces.d.ts +76 -0
  100. package/dest/l1_tx_utils/interfaces.d.ts.map +1 -0
  101. package/dest/l1_tx_utils/interfaces.js +4 -0
  102. package/dest/l1_tx_utils/l1_fee_analyzer.d.ts +233 -0
  103. package/dest/l1_tx_utils/l1_fee_analyzer.d.ts.map +1 -0
  104. package/dest/l1_tx_utils/l1_fee_analyzer.js +506 -0
  105. package/dest/l1_tx_utils/l1_tx_utils.d.ts +94 -0
  106. package/dest/l1_tx_utils/l1_tx_utils.d.ts.map +1 -0
  107. package/dest/l1_tx_utils/l1_tx_utils.js +623 -0
  108. package/dest/l1_tx_utils/l1_tx_utils_with_blobs.d.ts +26 -0
  109. package/dest/l1_tx_utils/l1_tx_utils_with_blobs.d.ts.map +1 -0
  110. package/dest/l1_tx_utils/l1_tx_utils_with_blobs.js +26 -0
  111. package/dest/l1_tx_utils/readonly_l1_tx_utils.d.ts +83 -0
  112. package/dest/l1_tx_utils/readonly_l1_tx_utils.d.ts.map +1 -0
  113. package/dest/l1_tx_utils/readonly_l1_tx_utils.js +323 -0
  114. package/dest/l1_tx_utils/signer.d.ts +4 -0
  115. package/dest/l1_tx_utils/signer.d.ts.map +1 -0
  116. package/dest/l1_tx_utils/signer.js +16 -0
  117. package/dest/l1_tx_utils/types.d.ts +67 -0
  118. package/dest/l1_tx_utils/types.d.ts.map +1 -0
  119. package/dest/l1_tx_utils/types.js +26 -0
  120. package/dest/l1_tx_utils/utils.d.ts +4 -0
  121. package/dest/l1_tx_utils/utils.d.ts.map +1 -0
  122. package/dest/l1_tx_utils/utils.js +14 -0
  123. package/dest/l1_types.d.ts +1 -1
  124. package/dest/publisher_manager.d.ts +8 -3
  125. package/dest/publisher_manager.d.ts.map +1 -1
  126. package/dest/publisher_manager.js +36 -8
  127. package/dest/queries.d.ts +1 -1
  128. package/dest/queries.d.ts.map +1 -1
  129. package/dest/queries.js +20 -14
  130. package/dest/test/chain_monitor.d.ts +29 -22
  131. package/dest/test/chain_monitor.d.ts.map +1 -1
  132. package/dest/test/chain_monitor.js +81 -38
  133. package/dest/test/delayed_tx_utils.d.ts +3 -3
  134. package/dest/test/delayed_tx_utils.d.ts.map +1 -1
  135. package/dest/test/delayed_tx_utils.js +2 -2
  136. package/dest/test/eth_cheat_codes.d.ts +36 -14
  137. package/dest/test/eth_cheat_codes.d.ts.map +1 -1
  138. package/dest/test/eth_cheat_codes.js +126 -31
  139. package/dest/test/eth_cheat_codes_with_state.d.ts +1 -1
  140. package/dest/test/eth_cheat_codes_with_state.d.ts.map +1 -1
  141. package/dest/test/index.d.ts +1 -1
  142. package/dest/test/rollup_cheat_codes.d.ts +23 -20
  143. package/dest/test/rollup_cheat_codes.d.ts.map +1 -1
  144. package/dest/test/rollup_cheat_codes.js +82 -43
  145. package/dest/test/start_anvil.d.ts +4 -1
  146. package/dest/test/start_anvil.d.ts.map +1 -1
  147. package/dest/test/start_anvil.js +2 -1
  148. package/dest/test/tx_delayer.d.ts +1 -1
  149. package/dest/test/tx_delayer.d.ts.map +1 -1
  150. package/dest/test/tx_delayer.js +4 -3
  151. package/dest/test/upgrade_utils.d.ts +1 -1
  152. package/dest/test/upgrade_utils.d.ts.map +1 -1
  153. package/dest/test/upgrade_utils.js +3 -2
  154. package/dest/types.d.ts +57 -2
  155. package/dest/types.d.ts.map +1 -1
  156. package/dest/utils.d.ts +15 -3
  157. package/dest/utils.d.ts.map +1 -1
  158. package/dest/utils.js +28 -161
  159. package/dest/zkPassportVerifierAddress.d.ts +1 -1
  160. package/dest/zkPassportVerifierAddress.js +1 -1
  161. package/package.json +33 -14
  162. package/src/client.ts +3 -3
  163. package/src/config.ts +49 -358
  164. package/src/contracts/empire_base.ts +7 -6
  165. package/src/contracts/empire_slashing_proposer.ts +23 -8
  166. package/src/contracts/fee_asset_handler.ts +1 -1
  167. package/src/contracts/governance.ts +3 -3
  168. package/src/contracts/governance_proposer.ts +19 -9
  169. package/src/contracts/inbox.ts +7 -2
  170. package/src/contracts/multicall.ts +12 -10
  171. package/src/contracts/rollup.ts +374 -236
  172. package/src/contracts/slasher_contract.ts +22 -0
  173. package/src/contracts/tally_slashing_proposer.ts +21 -9
  174. package/src/deploy_aztec_l1_contracts.ts +557 -0
  175. package/src/deploy_l1_contract.ts +362 -0
  176. package/src/forwarder_proxy.ts +108 -0
  177. package/src/l1_artifacts.ts +14 -6
  178. package/src/l1_contract_addresses.ts +24 -20
  179. package/src/l1_reader.ts +10 -2
  180. package/src/l1_tx_utils/README.md +177 -0
  181. package/src/l1_tx_utils/config.ts +161 -0
  182. package/src/l1_tx_utils/constants.ts +29 -0
  183. package/src/l1_tx_utils/factory.ts +64 -0
  184. package/src/l1_tx_utils/fee-strategies/index.ts +22 -0
  185. package/src/l1_tx_utils/fee-strategies/p75_competitive.ts +163 -0
  186. package/src/l1_tx_utils/fee-strategies/p75_competitive_blob_txs_only.ts +245 -0
  187. package/src/l1_tx_utils/fee-strategies/types.ts +56 -0
  188. package/src/l1_tx_utils/forwarder_l1_tx_utils.ts +119 -0
  189. package/src/l1_tx_utils/index-blobs.ts +2 -0
  190. package/src/l1_tx_utils/index.ts +14 -0
  191. package/src/l1_tx_utils/interfaces.ts +86 -0
  192. package/src/l1_tx_utils/l1_fee_analyzer.ts +803 -0
  193. package/src/l1_tx_utils/l1_tx_utils.ts +738 -0
  194. package/src/l1_tx_utils/l1_tx_utils_with_blobs.ts +77 -0
  195. package/src/l1_tx_utils/readonly_l1_tx_utils.ts +419 -0
  196. package/src/l1_tx_utils/signer.ts +28 -0
  197. package/src/l1_tx_utils/types.ts +85 -0
  198. package/src/l1_tx_utils/utils.ts +16 -0
  199. package/src/publisher_manager.ts +51 -9
  200. package/src/queries.ts +24 -10
  201. package/src/test/chain_monitor.ts +102 -44
  202. package/src/test/delayed_tx_utils.ts +2 -2
  203. package/src/test/eth_cheat_codes.ts +150 -31
  204. package/src/test/rollup_cheat_codes.ts +95 -53
  205. package/src/test/start_anvil.ts +4 -0
  206. package/src/test/tx_delayer.ts +5 -3
  207. package/src/test/upgrade_utils.ts +3 -2
  208. package/src/types.ts +62 -0
  209. package/src/utils.ts +41 -184
  210. package/src/zkPassportVerifierAddress.ts +1 -1
  211. package/dest/deploy_l1_contracts.d.ts +0 -211
  212. package/dest/deploy_l1_contracts.d.ts.map +0 -1
  213. package/dest/deploy_l1_contracts.js +0 -1267
  214. package/dest/index.d.ts +0 -18
  215. package/dest/index.d.ts.map +0 -1
  216. package/dest/index.js +0 -17
  217. package/dest/l1_tx_utils.d.ts +0 -250
  218. package/dest/l1_tx_utils.d.ts.map +0 -1
  219. package/dest/l1_tx_utils.js +0 -826
  220. package/dest/l1_tx_utils_with_blobs.d.ts +0 -19
  221. package/dest/l1_tx_utils_with_blobs.d.ts.map +0 -1
  222. package/dest/l1_tx_utils_with_blobs.js +0 -85
  223. package/src/deploy_l1_contracts.ts +0 -1596
  224. package/src/index.ts +0 -17
  225. package/src/l1_tx_utils.ts +0 -1105
  226. package/src/l1_tx_utils_with_blobs.ts +0 -144
@@ -0,0 +1,506 @@
1
+ import { createLogger } from '@aztec/foundation/log';
2
+ import { retryUntil } from '@aztec/foundation/retry';
3
+ import { DateProvider } from '@aztec/foundation/timer';
4
+ import { formatGwei } from 'viem';
5
+ import { calculatePercentile, isBlobTransaction } from '../utils.js';
6
+ import { BLOB_CAPACITY_SCHEDULE, GAS_PER_BLOB, WEI_CONST } from './constants.js';
7
+ import { DEFAULT_PRIORITY_FEE_STRATEGIES } from './fee-strategies/index.js';
8
+ /**
9
+ * Gets the maximum blob capacity for a given block timestamp
10
+ */ function getMaxBlobCapacity(blockTimestamp) {
11
+ const timestamp = Number(blockTimestamp);
12
+ // Find the applicable schedule entry (sorted by timestamp descending)
13
+ for (const schedule of BLOB_CAPACITY_SCHEDULE){
14
+ if (timestamp >= schedule.timestamp) {
15
+ return schedule.max;
16
+ }
17
+ }
18
+ // Fallback (should never hit)
19
+ return BLOB_CAPACITY_SCHEDULE[BLOB_CAPACITY_SCHEDULE.length - 1].max;
20
+ }
21
+ /**
22
+ * Processes a list of transactions to extract blob transaction info and priority fees.
23
+ * Handles both pending and mined transactions.
24
+ * Note: Only works with blocks fetched with includeTransactions: true
25
+ */ function processTransactions(transactions) {
26
+ const blobTxs = [];
27
+ const allPriorityFees = [];
28
+ const blobPriorityFees = [];
29
+ let totalBlobCount = 0;
30
+ if (!transactions) {
31
+ return {
32
+ blobTxs,
33
+ allPriorityFees,
34
+ blobPriorityFees,
35
+ totalBlobCount
36
+ };
37
+ }
38
+ for (const tx of transactions){
39
+ const priorityFee = tx.maxPriorityFeePerGas || 0n;
40
+ if (priorityFee > 0n) {
41
+ allPriorityFees.push(priorityFee);
42
+ }
43
+ // Check if this is a blob transaction
44
+ if (isBlobTransaction(tx)) {
45
+ const blobCount = tx.blobVersionedHashes.length;
46
+ totalBlobCount += blobCount;
47
+ if (priorityFee > 0n) {
48
+ blobPriorityFees.push(priorityFee);
49
+ }
50
+ blobTxs.push({
51
+ hash: tx.hash,
52
+ maxPriorityFeePerGas: priorityFee,
53
+ maxFeePerGas: tx.maxFeePerGas || 0n,
54
+ maxFeePerBlobGas: tx.maxFeePerBlobGas,
55
+ blobCount,
56
+ gas: tx.gas
57
+ });
58
+ }
59
+ }
60
+ return {
61
+ blobTxs,
62
+ allPriorityFees,
63
+ blobPriorityFees,
64
+ totalBlobCount
65
+ };
66
+ }
67
+ /**
68
+ * Analyzes L1 transaction fees in fisherman mode.
69
+ * Captures pending block state, records gas calculations, and compares to what gets included.
70
+ * Supports multiple priority fee calculation strategies for comparison.
71
+ */ export class L1FeeAnalyzer {
72
+ client;
73
+ dateProvider;
74
+ logger;
75
+ maxCompletedAnalyses;
76
+ gasConfig;
77
+ pendingAnalyses;
78
+ pendingCallbacks;
79
+ completedAnalyses;
80
+ analysisCounter;
81
+ strategies;
82
+ constructor(client, dateProvider = new DateProvider(), logger = createLogger('ethereum:l1-fee-analyzer'), maxCompletedAnalyses = 100, strategies = DEFAULT_PRIORITY_FEE_STRATEGIES, gasConfig = {}){
83
+ this.client = client;
84
+ this.dateProvider = dateProvider;
85
+ this.logger = logger;
86
+ this.maxCompletedAnalyses = maxCompletedAnalyses;
87
+ this.gasConfig = gasConfig;
88
+ this.pendingAnalyses = new Map();
89
+ this.pendingCallbacks = new Map();
90
+ this.completedAnalyses = [];
91
+ this.analysisCounter = 0;
92
+ this.strategies = strategies;
93
+ }
94
+ /**
95
+ * Executes all configured strategies and returns their results.
96
+ * Each strategy handles its own RPC calls internally.
97
+ * @param isBlobTx - Whether this is a blob transaction
98
+ * @returns Array of strategy results
99
+ */ async executeAllStrategies(isBlobTx) {
100
+ const results = [];
101
+ const context = {
102
+ gasConfig: this.gasConfig,
103
+ isBlobTx,
104
+ logger: this.logger
105
+ };
106
+ for (const strategy of this.strategies){
107
+ try {
108
+ const result = await strategy.execute(this.client, context);
109
+ results.push({
110
+ strategyId: strategy.id,
111
+ strategyName: strategy.name,
112
+ calculatedPriorityFee: result.priorityFee,
113
+ debugInfo: result.debugInfo
114
+ });
115
+ this.logger.debug(`Strategy "${strategy.name}" calculated priority fee`, {
116
+ strategyId: strategy.id,
117
+ priorityFee: formatGwei(result.priorityFee),
118
+ ...result.debugInfo
119
+ });
120
+ } catch (err) {
121
+ this.logger.error(`Error calculating priority fee for strategy "${strategy.name}"`, err, {
122
+ strategyId: strategy.id
123
+ });
124
+ }
125
+ }
126
+ return results;
127
+ }
128
+ /**
129
+ * Captures a snapshot of the current pending block state
130
+ */ async capturePendingSnapshot() {
131
+ const timestamp = this.dateProvider.now();
132
+ // Fetch data in parallel
133
+ const [latestBlock, pendingBlock, blobBaseFee] = await Promise.all([
134
+ this.client.getBlock({
135
+ blockTag: 'latest'
136
+ }),
137
+ this.client.getBlock({
138
+ blockTag: 'pending',
139
+ includeTransactions: true
140
+ }).catch(()=>null),
141
+ this.client.getBlobBaseFee().catch(()=>0n)
142
+ ]);
143
+ const baseFeePerGas = latestBlock.baseFeePerGas || 0n;
144
+ const latestBlockNumber = latestBlock.number;
145
+ // Extract blob transaction info from pending block
146
+ const { blobTxs: pendingBlobTxs, allPriorityFees: allPendingPriorityFees, blobPriorityFees: pendingBlobPriorityFees, totalBlobCount: pendingBlobCount } = processTransactions(pendingBlock?.transactions);
147
+ // Calculate 75th percentile priority fees
148
+ const pendingP75PriorityFee = calculatePercentile(allPendingPriorityFees, 75);
149
+ const pendingBlobP75PriorityFee = calculatePercentile(pendingBlobPriorityFees, 75);
150
+ const pendingTxCount = pendingBlock?.transactions?.length || 0;
151
+ return {
152
+ timestamp,
153
+ latestBlockNumber,
154
+ baseFeePerGas,
155
+ blobBaseFee,
156
+ pendingTxCount,
157
+ pendingBlobTxCount: pendingBlobTxs.length,
158
+ pendingBlobCount,
159
+ pendingBlobTxs,
160
+ pendingP75PriorityFee,
161
+ pendingBlobP75PriorityFee
162
+ };
163
+ }
164
+ /**
165
+ * Starts a fee analysis for a transaction bundle
166
+ * @param l2SlotNumber - The L2 slot this analysis is for
167
+ * @param gasLimit - The estimated gas limit
168
+ * @param requests - The transaction requests being analyzed
169
+ * @param blobInputs - Blob inputs if this is a blob transaction
170
+ * @param onComplete - Optional callback to invoke when analysis completes
171
+ * @returns The analysis ID for tracking
172
+ */ async startAnalysis(l2SlotNumber, gasLimit, requests, blobInputs, onComplete) {
173
+ const id = `fee-analysis-${++this.analysisCounter}-${Date.now()}`;
174
+ const blobCount = blobInputs?.blobs?.length || 0;
175
+ const isBlobTx = blobCount > 0;
176
+ // Execute all strategies and capture pending snapshot in parallel
177
+ const [pendingSnapshot, strategyResults] = await Promise.all([
178
+ this.capturePendingSnapshot(),
179
+ this.executeAllStrategies(isBlobTx)
180
+ ]);
181
+ const analysis = {
182
+ id,
183
+ l2SlotNumber,
184
+ pendingSnapshot,
185
+ computedPrices: {
186
+ gasLimit,
187
+ blobCount,
188
+ strategyResults
189
+ },
190
+ txInfo: {
191
+ requestCount: requests.length,
192
+ hasBlobData: isBlobTx,
193
+ totalEstimatedGas: gasLimit
194
+ }
195
+ };
196
+ this.pendingAnalyses.set(id, analysis);
197
+ if (onComplete) {
198
+ this.pendingCallbacks.set(id, onComplete);
199
+ }
200
+ // Log strategy calculations
201
+ const strategyLogInfo = strategyResults.reduce((acc, s)=>{
202
+ acc[`strategy_${s.strategyId}`] = formatGwei(s.calculatedPriorityFee);
203
+ return acc;
204
+ }, {});
205
+ this.logger.debug('Started fee analysis with strategy calculations', {
206
+ id,
207
+ l2SlotNumber: l2SlotNumber.toString(),
208
+ pendingBlobTxCount: pendingSnapshot.pendingBlobTxCount,
209
+ pendingBlobCount: pendingSnapshot.pendingBlobCount,
210
+ pendingBlobP75: formatGwei(pendingSnapshot.pendingBlobP75PriorityFee),
211
+ strategiesAnalyzed: strategyResults.length,
212
+ ...strategyLogInfo
213
+ });
214
+ // Start watching for the next block
215
+ void this.watchForNextBlock(id, pendingSnapshot.latestBlockNumber);
216
+ return id;
217
+ }
218
+ /**
219
+ * Watches for the next block to be mined and completes the analysis
220
+ */ async watchForNextBlock(analysisId, startBlockNumber) {
221
+ const analysis = this.pendingAnalyses.get(analysisId);
222
+ if (!analysis) {
223
+ return;
224
+ }
225
+ try {
226
+ // wait for next block
227
+ await retryUntil(async ()=>{
228
+ const currentBlockNumber = await this.client.getBlockNumber();
229
+ if (currentBlockNumber > startBlockNumber) {
230
+ return true;
231
+ }
232
+ return false;
233
+ }, 'Wait for next block', 13_000, 0.5);
234
+ const minedBlock = await this.client.getBlock({
235
+ includeTransactions: true
236
+ });
237
+ this.completeAnalysis(analysisId, minedBlock);
238
+ } catch (err) {
239
+ this.logger.error('Error waiting for next block in fee analysis', err, {
240
+ analysisId
241
+ });
242
+ } finally{
243
+ this.pendingAnalyses.delete(analysisId);
244
+ }
245
+ }
246
+ /**
247
+ * Completes the analysis once the next block is mined
248
+ */ completeAnalysis(analysisId, minedBlock) {
249
+ const analysis = this.pendingAnalyses.get(analysisId);
250
+ if (!analysis) {
251
+ return;
252
+ }
253
+ // Extract blob transaction info from mined block
254
+ const { blobTxs: includedBlobTxs, allPriorityFees: includedPriorityFees, blobPriorityFees: includedBlobPriorityFees, totalBlobCount: includedBlobCount } = processTransactions(minedBlock.transactions);
255
+ // Get minimum included fees
256
+ const minIncludedPriorityFee = includedPriorityFees.length > 0 ? this.minBigInt(includedPriorityFees) : 0n;
257
+ const minIncludedBlobPriorityFee = includedBlobPriorityFees.length > 0 ? this.minBigInt(includedBlobPriorityFees) : 0n;
258
+ // Populate mined block info
259
+ analysis.minedBlock = {
260
+ blockNumber: minedBlock.number,
261
+ blockHash: minedBlock.hash,
262
+ blockTimestamp: minedBlock.timestamp,
263
+ baseFeePerGas: minedBlock.baseFeePerGas || 0n,
264
+ blobGasUsed: minedBlock.blobGasUsed || 0n,
265
+ txCount: minedBlock.transactions?.length || 0,
266
+ includedBlobTxCount: includedBlobTxs.length,
267
+ includedBlobCount,
268
+ includedBlobTxs,
269
+ minIncludedPriorityFee,
270
+ minIncludedBlobPriorityFee
271
+ };
272
+ // Calculate time before block mined
273
+ const blockTimestampMs = Number(minedBlock.timestamp) * 1000;
274
+ const timeBeforeBlockMs = blockTimestampMs - analysis.pendingSnapshot.timestamp;
275
+ // Calculate how many blobs were actually in the mined block
276
+ const blobsInBlock = minedBlock.blobGasUsed > 0n ? Number(minedBlock.blobGasUsed / GAS_PER_BLOB) : 0;
277
+ const maxBlobCapacity = getMaxBlobCapacity(minedBlock.timestamp);
278
+ const blockBlobsFull = blobsInBlock >= maxBlobCapacity;
279
+ // Count how many pending blob txs actually got included
280
+ const pendingBlobHashes = new Set(analysis.pendingSnapshot.pendingBlobTxs.map((tx)=>tx.hash));
281
+ const includedBlobHashes = new Set(includedBlobTxs.map((tx)=>tx.hash));
282
+ const pendingBlobTxsIncludedCount = [
283
+ ...pendingBlobHashes
284
+ ].filter((h)=>includedBlobHashes.has(h)).length;
285
+ const pendingBlobTxsExcludedCount = analysis.pendingSnapshot.pendingBlobTxCount - pendingBlobTxsIncludedCount;
286
+ analysis.analysis = {
287
+ timeBeforeBlockMs,
288
+ pendingBlobTxsIncludedCount,
289
+ pendingBlobTxsExcludedCount,
290
+ blobsInBlock,
291
+ maxBlobCapacity,
292
+ blockBlobsFull
293
+ };
294
+ // Evaluate each strategy against the mined block
295
+ const isBlobTx = analysis.computedPrices.blobCount > 0;
296
+ const minPriorityFeeToCompare = isBlobTx ? minIncludedBlobPriorityFee : minIncludedPriorityFee;
297
+ const gasLimit = analysis.computedPrices.gasLimit;
298
+ if (analysis.computedPrices.strategyResults) {
299
+ for (const strategyResult of analysis.computedPrices.strategyResults){
300
+ const strategyPriorityFee = strategyResult.calculatedPriorityFee;
301
+ const strategyPriorityFeeDelta = strategyPriorityFee - minPriorityFeeToCompare;
302
+ // Determine if this strategy would have resulted in inclusion
303
+ let strategyWouldBeIncluded = true;
304
+ let strategyExclusionReason;
305
+ if (isBlobTx) {
306
+ // For blob txs, only consider priority fee if blob space was full
307
+ if (includedBlobPriorityFees.length > 0 && strategyPriorityFee < minIncludedBlobPriorityFee && blockBlobsFull) {
308
+ strategyWouldBeIncluded = false;
309
+ strategyExclusionReason = 'priority_fee_too_low';
310
+ }
311
+ } else {
312
+ // For non-blob txs, use the old logic
313
+ if (includedPriorityFees.length > 0 && strategyPriorityFee < minIncludedPriorityFee) {
314
+ strategyWouldBeIncluded = false;
315
+ strategyExclusionReason = 'priority_fee_too_low';
316
+ }
317
+ }
318
+ // Calculate estimated cost in ETH for this strategy
319
+ // Cost = gasLimit * (baseFee + priorityFee)
320
+ const baseFee = analysis.minedBlock.baseFeePerGas;
321
+ // Execution cost: gasLimit * (baseFee + priorityFee)
322
+ const executionCostWei = gasLimit * (baseFee + strategyPriorityFee);
323
+ const estimatedCostEth = Number(executionCostWei) / 1e18;
324
+ // Calculate minimum cost needed for inclusion
325
+ const minExecutionCostWei = gasLimit * (baseFee + minPriorityFeeToCompare);
326
+ const minCostEth = Number(minExecutionCostWei) / 1e18;
327
+ // Overpayment is the difference
328
+ const estimatedOverpaymentEth = estimatedCostEth - minCostEth;
329
+ // Update the strategy result with analysis data
330
+ strategyResult.wouldBeIncluded = strategyWouldBeIncluded;
331
+ strategyResult.exclusionReason = strategyExclusionReason;
332
+ strategyResult.priorityFeeDelta = strategyPriorityFeeDelta;
333
+ strategyResult.estimatedCostEth = estimatedCostEth;
334
+ strategyResult.estimatedOverpaymentEth = estimatedOverpaymentEth;
335
+ // Log per-strategy results
336
+ this.logger.info(`Strategy "${strategyResult.strategyName}" analysis`, {
337
+ id: analysisId,
338
+ strategyId: strategyResult.strategyId,
339
+ strategyName: strategyResult.strategyName,
340
+ calculatedPriorityFee: formatGwei(strategyPriorityFee),
341
+ minIncludedPriorityFee: formatGwei(minPriorityFeeToCompare),
342
+ priorityFeeDelta: formatGwei(strategyPriorityFeeDelta),
343
+ wouldBeIncluded: strategyWouldBeIncluded,
344
+ exclusionReason: strategyExclusionReason,
345
+ estimatedCostEth: estimatedCostEth.toFixed(6),
346
+ estimatedOverpaymentEth: estimatedOverpaymentEth.toFixed(6)
347
+ });
348
+ }
349
+ // Create cost ranking
350
+ const costRanking = analysis.computedPrices.strategyResults.map((s)=>({
351
+ strategyId: s.strategyId,
352
+ strategyName: s.strategyName,
353
+ estimatedCostEth: s.estimatedCostEth,
354
+ wouldBeIncluded: s.wouldBeIncluded
355
+ })).sort((a, b)=>a.estimatedCostEth - b.estimatedCostEth);
356
+ analysis.analysis.costRanking = costRanking;
357
+ // Log cost ranking summary
358
+ this.logger.info('Strategy cost ranking', {
359
+ id: analysisId,
360
+ cheapestStrategy: costRanking[0]?.strategyName,
361
+ cheapestCost: costRanking[0]?.estimatedCostEth.toFixed(6),
362
+ cheapestWouldBeIncluded: costRanking[0]?.wouldBeIncluded,
363
+ mostExpensiveStrategy: costRanking[costRanking.length - 1]?.strategyName,
364
+ mostExpensiveCost: costRanking[costRanking.length - 1]?.estimatedCostEth.toFixed(6),
365
+ mostExpensiveWouldBeIncluded: costRanking[costRanking.length - 1]?.wouldBeIncluded,
366
+ costSpread: costRanking.length > 1 ? (costRanking[costRanking.length - 1].estimatedCostEth - costRanking[0].estimatedCostEth).toFixed(6) : '0'
367
+ });
368
+ }
369
+ // Log the overall results
370
+ this.logger.info('Fee analysis completed', {
371
+ id: analysisId,
372
+ l2SlotNumber: analysis.l2SlotNumber.toString(),
373
+ timeBeforeBlockMs,
374
+ pendingBlobTxCount: analysis.pendingSnapshot.pendingBlobTxCount,
375
+ includedBlobTxCount: analysis.minedBlock.includedBlobTxCount,
376
+ pendingBlobTxsIncludedCount,
377
+ pendingBlobTxsExcludedCount,
378
+ blobsInBlock,
379
+ maxBlobCapacity,
380
+ blockBlobsFull,
381
+ minIncludedPriorityFee: formatGwei(minIncludedPriorityFee),
382
+ minIncludedBlobPriorityFee: formatGwei(minIncludedBlobPriorityFee),
383
+ strategiesAnalyzed: analysis.computedPrices.strategyResults?.length ?? 0
384
+ });
385
+ // Move to completed analyses
386
+ this.pendingAnalyses.delete(analysisId);
387
+ this.completedAnalyses.push(analysis);
388
+ // Trim old completed analyses if needed
389
+ while(this.completedAnalyses.length > this.maxCompletedAnalyses){
390
+ this.completedAnalyses.shift();
391
+ }
392
+ // Invoke the callback for this specific analysis
393
+ const callback = this.pendingCallbacks.get(analysisId);
394
+ if (callback) {
395
+ try {
396
+ callback(analysis);
397
+ } catch (err) {
398
+ this.logger.error('Error in analysis complete callback', err);
399
+ }
400
+ this.pendingCallbacks.delete(analysisId);
401
+ }
402
+ }
403
+ /**
404
+ * Gets a specific analysis result by ID
405
+ */ getAnalysis(id) {
406
+ return this.pendingAnalyses.get(id) || this.completedAnalyses.find((a)=>a.id === id);
407
+ }
408
+ /**
409
+ * Gets all completed analyses
410
+ */ getCompletedAnalyses() {
411
+ return [
412
+ ...this.completedAnalyses
413
+ ];
414
+ }
415
+ /**
416
+ * Gets statistics about all completed analyses
417
+ */ getAnalysisStats() {
418
+ const completed = this.completedAnalyses.filter((a)=>a.analysis);
419
+ if (completed.length === 0) {
420
+ return {
421
+ totalAnalyses: 0,
422
+ avgTimeBeforeBlockMs: 0,
423
+ avgBlobsInBlock: 0,
424
+ blocksBlobsFull: 0
425
+ };
426
+ }
427
+ const avgTimeBeforeBlockMs = completed.reduce((sum, a)=>sum + a.analysis.timeBeforeBlockMs, 0) / completed.length;
428
+ const avgBlobsInBlock = completed.reduce((sum, a)=>sum + a.analysis.blobsInBlock, 0) / completed.length;
429
+ const blocksBlobsFull = completed.filter((a)=>a.analysis.blockBlobsFull).length;
430
+ return {
431
+ totalAnalyses: completed.length,
432
+ avgTimeBeforeBlockMs,
433
+ avgBlobsInBlock,
434
+ blocksBlobsFull
435
+ };
436
+ }
437
+ /**
438
+ * Gets comparative statistics for all strategies across completed analyses
439
+ */ getStrategyComparison() {
440
+ const completed = this.completedAnalyses.filter((a)=>a.analysis);
441
+ if (completed.length === 0) {
442
+ return [];
443
+ }
444
+ // Collect data by strategy ID
445
+ const strategyData = new Map();
446
+ for (const analysis of completed){
447
+ if (!analysis.computedPrices.strategyResults) {
448
+ continue;
449
+ }
450
+ for (const strategyResult of analysis.computedPrices.strategyResults){
451
+ if (!strategyData.has(strategyResult.strategyId)) {
452
+ strategyData.set(strategyResult.strategyId, {
453
+ strategyName: strategyResult.strategyName,
454
+ analyses: 0,
455
+ inclusions: 0,
456
+ totalCostEth: 0,
457
+ totalOverpaymentEth: 0,
458
+ totalPriorityFeeDelta: 0
459
+ });
460
+ }
461
+ const data = strategyData.get(strategyResult.strategyId);
462
+ data.analyses++;
463
+ if (strategyResult.wouldBeIncluded) {
464
+ data.inclusions++;
465
+ }
466
+ if (strategyResult.estimatedCostEth !== undefined) {
467
+ data.totalCostEth += strategyResult.estimatedCostEth;
468
+ }
469
+ if (strategyResult.estimatedOverpaymentEth !== undefined) {
470
+ data.totalOverpaymentEth += strategyResult.estimatedOverpaymentEth;
471
+ }
472
+ if (strategyResult.priorityFeeDelta !== undefined) {
473
+ data.totalPriorityFeeDelta += Number(strategyResult.priorityFeeDelta);
474
+ }
475
+ }
476
+ }
477
+ // Convert to output format
478
+ const results = Array.from(strategyData.entries()).map(([strategyId, data])=>({
479
+ strategyId,
480
+ strategyName: data.strategyName,
481
+ totalAnalyses: data.analyses,
482
+ inclusionCount: data.inclusions,
483
+ inclusionRate: data.analyses > 0 ? data.inclusions / data.analyses : 0,
484
+ avgEstimatedCostEth: data.analyses > 0 ? data.totalCostEth / data.analyses : 0,
485
+ totalEstimatedCostEth: data.totalCostEth,
486
+ avgOverpaymentEth: data.analyses > 0 ? data.totalOverpaymentEth / data.analyses : 0,
487
+ totalOverpaymentEth: data.totalOverpaymentEth,
488
+ avgPriorityFeeDeltaGwei: data.analyses > 0 ? data.totalPriorityFeeDelta / data.analyses / Number(WEI_CONST) : 0
489
+ }));
490
+ // Sort by inclusion rate descending, then by avg cost ascending
491
+ return results.sort((a, b)=>{
492
+ if (Math.abs(a.inclusionRate - b.inclusionRate) > 0.01) {
493
+ return b.inclusionRate - a.inclusionRate;
494
+ }
495
+ return a.avgEstimatedCostEth - b.avgEstimatedCostEth;
496
+ });
497
+ }
498
+ /**
499
+ * Gets the minimum value from an array of bigints
500
+ */ minBigInt(values) {
501
+ if (values.length === 0) {
502
+ return 0n;
503
+ }
504
+ return values.reduce((min, val)=>val < min ? val : min, values[0]);
505
+ }
506
+ }
@@ -0,0 +1,94 @@
1
+ import { EthAddress } from '@aztec/foundation/eth-address';
2
+ import { type Logger } from '@aztec/foundation/log';
3
+ import { DateProvider } from '@aztec/foundation/timer';
4
+ import { type Abi, type BlockOverrides, type Hex, type NonceManager, type PrepareTransactionRequestRequest, type StateOverride, type TransactionReceipt } from 'viem';
5
+ import type { ViemClient } from '../types.js';
6
+ import { type L1TxUtilsConfig } from './config.js';
7
+ import type { IL1TxMetrics, IL1TxStore } from './interfaces.js';
8
+ import { ReadOnlyL1TxUtils } from './readonly_l1_tx_utils.js';
9
+ import { type L1BlobInputs, type L1TxConfig, type L1TxRequest, type L1TxState, type SigningCallback, TxUtilsState } from './types.js';
10
+ export declare class L1TxUtils extends ReadOnlyL1TxUtils {
11
+ client: ViemClient;
12
+ address: EthAddress;
13
+ protected signer: SigningCallback;
14
+ protected store?: IL1TxStore | undefined;
15
+ protected metrics?: IL1TxMetrics | undefined;
16
+ protected nonceManager: NonceManager;
17
+ protected txs: L1TxState[];
18
+ constructor(client: ViemClient, address: EthAddress, signer: SigningCallback, logger?: Logger, dateProvider?: DateProvider, config?: Partial<L1TxUtilsConfig>, debugMaxGasLimit?: boolean, store?: IL1TxStore | undefined, metrics?: IL1TxMetrics | undefined);
19
+ get state(): TxUtilsState;
20
+ get lastMinedAtBlockNumber(): bigint | undefined;
21
+ protected updateState(l1TxState: L1TxState, newState: TxUtilsState.MINED, l1Timestamp: number): Promise<void>;
22
+ protected updateState(l1TxState: L1TxState, newState: TxUtilsState, l1Timestamp?: undefined): Promise<void>;
23
+ updateConfig(newConfig: Partial<L1TxUtilsConfig>): void;
24
+ getSenderAddress(): EthAddress;
25
+ getSenderBalance(): Promise<bigint>;
26
+ /**
27
+ * Rehydrates transaction states from the store and resumes monitoring for pending transactions.
28
+ * This should be called on startup to restore state and resume monitoring of any in-flight transactions.
29
+ */
30
+ loadStateAndResumeMonitoring(): Promise<void>;
31
+ private signTransaction;
32
+ protected prepareSignedTransaction(txData: PrepareTransactionRequestRequest): Promise<`0x${string}`>;
33
+ /**
34
+ * Sends a transaction with gas estimation and pricing
35
+ * @param request - The transaction request (to, data, value)
36
+ * @param gasConfig - Optional gas configuration
37
+ * @returns The transaction hash and parameters used
38
+ */
39
+ sendTransaction(request: L1TxRequest, gasConfigOverrides?: L1TxConfig, blobInputs?: L1BlobInputs, stateChange?: TxUtilsState): Promise<{
40
+ txHash: Hex;
41
+ state: L1TxState;
42
+ }>;
43
+ private tryGetTxReceipt;
44
+ /**
45
+ * Returns whether a given tx should be considered as timed out and no longer monitored.
46
+ * Relies on the txTimeout setting for user txs, and on the txCancellationTimeout for cancel txs.
47
+ * @remarks We check against the latestBlockTimestamp as opposed to the current time to avoid a race condition where
48
+ * the tx is mined in a block with the same timestamp as txTimeoutAt, but our execution node has not yet processed it,
49
+ * or the loop here has not yet checked the tx before that timeout.
50
+ */
51
+ private isTxTimedOut;
52
+ /**
53
+ * Monitors a transaction until completion, handling speed-ups if needed
54
+ */
55
+ protected monitorTransaction(state: L1TxState): Promise<TransactionReceipt>;
56
+ /**
57
+ * Creates tx data to be signed by viem signTransaction method, using the state as input.
58
+ * If isCancelTx is true, creates a 0-value tx to self with 21k gas and no data instead,
59
+ * and an empty blob input if the original tx also had blobs.
60
+ */
61
+ private makeTxData;
62
+ /** Returns when all monitor loops have stopped. */
63
+ waitMonitoringStopped(timeoutSeconds?: number): Promise<void>;
64
+ /**
65
+ * Sends a transaction and monitors it until completion
66
+ * @param request - The transaction request (to, data, value)
67
+ * @param gasConfig - Optional gas configuration
68
+ * @returns The receipt of the successful transaction
69
+ */
70
+ sendAndMonitorTransaction(request: L1TxRequest, gasConfig?: L1TxConfig, blobInputs?: L1BlobInputs): Promise<{
71
+ receipt: TransactionReceipt;
72
+ state: L1TxState;
73
+ }>;
74
+ simulate(request: L1TxRequest & {
75
+ gas?: bigint;
76
+ from?: Hex;
77
+ }, _blockOverrides?: BlockOverrides<bigint, number>, stateOverrides?: StateOverride, abi?: Abi, _gasConfig?: L1TxUtilsConfig & {
78
+ fallbackGasEstimate?: bigint;
79
+ ignoreBlockGasLimit?: boolean;
80
+ }): Promise<{
81
+ gasUsed: bigint;
82
+ result: `0x${string}`;
83
+ }>;
84
+ /**
85
+ * Attempts to cancel a transaction by sending a 0-value tx to self with same nonce but higher gas prices
86
+ * Only sends the cancellation if the original tx is still pending, not if it was dropped
87
+ * @returns The hash of the cancellation transaction
88
+ */
89
+ protected attemptTxCancellation(state: L1TxState): Promise<void>;
90
+ private getL1Timestamp;
91
+ /** Makes empty blob inputs for the cancellation tx. To be overridden in L1TxUtilsWithBlobs. */
92
+ protected makeEmptyBlobInputs(_maxFeePerBlobGas: bigint): Required<L1BlobInputs>;
93
+ }
94
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibDFfdHhfdXRpbHMuZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9sMV90eF91dGlscy9sMV90eF91dGlscy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFHQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sK0JBQStCLENBQUM7QUFDM0QsT0FBTyxFQUFFLEtBQUssTUFBTSxFQUFnQixNQUFNLHVCQUF1QixDQUFDO0FBR2xFLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUl2RCxPQUFPLEVBQ0wsS0FBSyxHQUFHLEVBQ1IsS0FBSyxjQUFjLEVBQ25CLEtBQUssR0FBRyxFQUNSLEtBQUssWUFBWSxFQUNqQixLQUFLLGdDQUFnQyxFQUNyQyxLQUFLLGFBQWEsRUFDbEIsS0FBSyxrQkFBa0IsRUFLeEIsTUFBTSxNQUFNLENBQUM7QUFHZCxPQUFPLEtBQUssRUFBRSxVQUFVLEVBQUUsTUFBTSxhQUFhLENBQUM7QUFFOUMsT0FBTyxFQUFFLEtBQUssZUFBZSxFQUEyQixNQUFNLGFBQWEsQ0FBQztBQUU1RSxPQUFPLEtBQUssRUFBRSxZQUFZLEVBQUUsVUFBVSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDaEUsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sMkJBQTJCLENBQUM7QUFDOUQsT0FBTyxFQUVMLEtBQUssWUFBWSxFQUNqQixLQUFLLFVBQVUsRUFDZixLQUFLLFdBQVcsRUFDaEIsS0FBSyxTQUFTLEVBQ2QsS0FBSyxlQUFlLEVBRXBCLFlBQVksRUFFYixNQUFNLFlBQVksQ0FBQztBQUlwQixxQkFBYSxTQUFVLFNBQVEsaUJBQWlCO0lBSzVCLE1BQU0sRUFBRSxVQUFVO0lBQzNCLE9BQU8sRUFBRSxVQUFVO0lBQzFCLFNBQVMsQ0FBQyxNQUFNLEVBQUUsZUFBZTtJQUtqQyxTQUFTLENBQUMsS0FBSyxDQUFDO0lBQ2hCLFNBQVMsQ0FBQyxPQUFPLENBQUM7SUFacEIsU0FBUyxDQUFDLFlBQVksRUFB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
@@ -0,0 +1 @@
1
+ {"version":3,"file":"l1_tx_utils.d.ts","sourceRoot":"","sources":["../../src/l1_tx_utils/l1_tx_utils.ts"],"names":[],"mappings":"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"}