@aztec/ethereum 3.0.3 → 3.9.9-nightly.20260312

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 (175) hide show
  1. package/dest/client.js +6 -2
  2. package/dest/config.d.ts +19 -27
  3. package/dest/config.d.ts.map +1 -1
  4. package/dest/config.js +60 -55
  5. package/dest/contracts/empire_base.d.ts +4 -1
  6. package/dest/contracts/empire_base.d.ts.map +1 -1
  7. package/dest/contracts/empire_slashing_proposer.d.ts +4 -1
  8. package/dest/contracts/empire_slashing_proposer.d.ts.map +1 -1
  9. package/dest/contracts/empire_slashing_proposer.js +31 -15
  10. package/dest/contracts/fee_asset_handler.d.ts +6 -5
  11. package/dest/contracts/fee_asset_handler.d.ts.map +1 -1
  12. package/dest/contracts/fee_asset_handler.js +11 -9
  13. package/dest/contracts/fee_asset_price_oracle.d.ts +101 -0
  14. package/dest/contracts/fee_asset_price_oracle.d.ts.map +1 -0
  15. package/dest/contracts/fee_asset_price_oracle.js +651 -0
  16. package/dest/contracts/governance.d.ts +3 -1
  17. package/dest/contracts/governance.d.ts.map +1 -1
  18. package/dest/contracts/governance.js +14 -4
  19. package/dest/contracts/governance_proposer.d.ts +4 -1
  20. package/dest/contracts/governance_proposer.d.ts.map +1 -1
  21. package/dest/contracts/governance_proposer.js +404 -9
  22. package/dest/contracts/inbox.d.ts +22 -1
  23. package/dest/contracts/inbox.d.ts.map +1 -1
  24. package/dest/contracts/inbox.js +36 -1
  25. package/dest/contracts/index.d.ts +4 -1
  26. package/dest/contracts/index.d.ts.map +1 -1
  27. package/dest/contracts/index.js +3 -0
  28. package/dest/contracts/log.d.ts +13 -0
  29. package/dest/contracts/log.d.ts.map +1 -0
  30. package/dest/contracts/log.js +1 -0
  31. package/dest/contracts/multicall.d.ts +1 -1
  32. package/dest/contracts/multicall.d.ts.map +1 -1
  33. package/dest/contracts/multicall.js +2 -1
  34. package/dest/contracts/outbox.d.ts +41 -0
  35. package/dest/contracts/outbox.d.ts.map +1 -0
  36. package/dest/contracts/outbox.js +86 -0
  37. package/dest/contracts/registry.d.ts +3 -1
  38. package/dest/contracts/registry.d.ts.map +1 -1
  39. package/dest/contracts/registry.js +30 -1
  40. package/dest/contracts/rollup.d.ts +163 -81
  41. package/dest/contracts/rollup.d.ts.map +1 -1
  42. package/dest/contracts/rollup.js +703 -132
  43. package/dest/contracts/tally_slashing_proposer.d.ts +1 -1
  44. package/dest/contracts/tally_slashing_proposer.d.ts.map +1 -1
  45. package/dest/contracts/tally_slashing_proposer.js +8 -1
  46. package/dest/deploy_aztec_l1_contracts.d.ts +18 -4
  47. package/dest/deploy_aztec_l1_contracts.d.ts.map +1 -1
  48. package/dest/deploy_aztec_l1_contracts.js +117 -35
  49. package/dest/deploy_l1_contract.js +3 -3
  50. package/dest/generated/l1-contracts-defaults.d.ts +30 -0
  51. package/dest/generated/l1-contracts-defaults.d.ts.map +1 -0
  52. package/dest/generated/l1-contracts-defaults.js +30 -0
  53. package/dest/l1_artifacts.d.ts +5975 -1575
  54. package/dest/l1_artifacts.d.ts.map +1 -1
  55. package/dest/l1_contract_addresses.d.ts +1 -1
  56. package/dest/l1_contract_addresses.d.ts.map +1 -1
  57. package/dest/l1_contract_addresses.js +3 -3
  58. package/dest/l1_tx_utils/config.d.ts +7 -1
  59. package/dest/l1_tx_utils/config.d.ts.map +1 -1
  60. package/dest/l1_tx_utils/config.js +14 -1
  61. package/dest/l1_tx_utils/constants.d.ts +8 -2
  62. package/dest/l1_tx_utils/constants.d.ts.map +1 -1
  63. package/dest/l1_tx_utils/constants.js +27 -2
  64. package/dest/l1_tx_utils/factory.d.ts +18 -10
  65. package/dest/l1_tx_utils/factory.d.ts.map +1 -1
  66. package/dest/l1_tx_utils/factory.js +17 -7
  67. package/dest/l1_tx_utils/fee-strategies/index.d.ts +10 -0
  68. package/dest/l1_tx_utils/fee-strategies/index.d.ts.map +1 -0
  69. package/dest/l1_tx_utils/fee-strategies/index.js +12 -0
  70. package/dest/l1_tx_utils/fee-strategies/p75_competitive.d.ts +8 -0
  71. package/dest/l1_tx_utils/fee-strategies/p75_competitive.d.ts.map +1 -0
  72. package/dest/l1_tx_utils/fee-strategies/p75_competitive.js +129 -0
  73. package/dest/l1_tx_utils/fee-strategies/p75_competitive_blob_txs_only.d.ts +23 -0
  74. package/dest/l1_tx_utils/fee-strategies/p75_competitive_blob_txs_only.d.ts.map +1 -0
  75. package/dest/l1_tx_utils/fee-strategies/p75_competitive_blob_txs_only.js +191 -0
  76. package/dest/l1_tx_utils/fee-strategies/types.d.ts +51 -0
  77. package/dest/l1_tx_utils/fee-strategies/types.d.ts.map +1 -0
  78. package/dest/l1_tx_utils/fee-strategies/types.js +3 -0
  79. package/dest/l1_tx_utils/forwarder_l1_tx_utils.d.ts +15 -15
  80. package/dest/l1_tx_utils/forwarder_l1_tx_utils.d.ts.map +1 -1
  81. package/dest/l1_tx_utils/forwarder_l1_tx_utils.js +9 -15
  82. package/dest/l1_tx_utils/index-blobs.d.ts +3 -3
  83. package/dest/l1_tx_utils/index-blobs.d.ts.map +1 -1
  84. package/dest/l1_tx_utils/index-blobs.js +2 -2
  85. package/dest/l1_tx_utils/index.d.ts +4 -1
  86. package/dest/l1_tx_utils/index.d.ts.map +1 -1
  87. package/dest/l1_tx_utils/index.js +3 -0
  88. package/dest/l1_tx_utils/l1_fee_analyzer.d.ts +233 -0
  89. package/dest/l1_tx_utils/l1_fee_analyzer.d.ts.map +1 -0
  90. package/dest/l1_tx_utils/l1_fee_analyzer.js +506 -0
  91. package/dest/l1_tx_utils/l1_tx_utils.d.ts +18 -7
  92. package/dest/l1_tx_utils/l1_tx_utils.d.ts.map +1 -1
  93. package/dest/l1_tx_utils/l1_tx_utils.js +58 -42
  94. package/dest/l1_tx_utils/readonly_l1_tx_utils.d.ts +4 -15
  95. package/dest/l1_tx_utils/readonly_l1_tx_utils.d.ts.map +1 -1
  96. package/dest/l1_tx_utils/readonly_l1_tx_utils.js +43 -147
  97. package/dest/l1_tx_utils/tx_delayer.d.ts +56 -0
  98. package/dest/l1_tx_utils/tx_delayer.d.ts.map +1 -0
  99. package/dest/{test → l1_tx_utils}/tx_delayer.js +62 -34
  100. package/dest/publisher_manager.d.ts +3 -2
  101. package/dest/publisher_manager.d.ts.map +1 -1
  102. package/dest/publisher_manager.js +2 -2
  103. package/dest/queries.d.ts +2 -2
  104. package/dest/queries.d.ts.map +1 -1
  105. package/dest/queries.js +12 -4
  106. package/dest/test/chain_monitor.js +1 -2
  107. package/dest/test/eth_cheat_codes.d.ts +13 -1
  108. package/dest/test/eth_cheat_codes.d.ts.map +1 -1
  109. package/dest/test/eth_cheat_codes.js +3 -1
  110. package/dest/test/index.d.ts +1 -3
  111. package/dest/test/index.d.ts.map +1 -1
  112. package/dest/test/index.js +0 -2
  113. package/dest/test/rollup_cheat_codes.d.ts +5 -2
  114. package/dest/test/rollup_cheat_codes.d.ts.map +1 -1
  115. package/dest/test/rollup_cheat_codes.js +22 -3
  116. package/dest/test/start_anvil.js +1 -1
  117. package/dest/test/upgrade_utils.js +2 -2
  118. package/dest/utils.d.ts +15 -2
  119. package/dest/utils.d.ts.map +1 -1
  120. package/dest/utils.js +64 -0
  121. package/package.json +9 -7
  122. package/src/client.ts +2 -2
  123. package/src/config.ts +76 -54
  124. package/src/contracts/README.md +157 -0
  125. package/src/contracts/empire_base.ts +3 -1
  126. package/src/contracts/empire_slashing_proposer.ts +28 -28
  127. package/src/contracts/fee_asset_handler.ts +10 -7
  128. package/src/contracts/fee_asset_price_oracle.ts +280 -0
  129. package/src/contracts/governance.ts +13 -4
  130. package/src/contracts/governance_proposer.ts +16 -2
  131. package/src/contracts/inbox.ts +53 -1
  132. package/src/contracts/index.ts +3 -0
  133. package/src/contracts/log.ts +13 -0
  134. package/src/contracts/multicall.ts +5 -2
  135. package/src/contracts/outbox.ts +98 -0
  136. package/src/contracts/registry.ts +31 -1
  137. package/src/contracts/rollup.ts +382 -94
  138. package/src/contracts/tally_slashing_proposer.ts +5 -1
  139. package/src/deploy_aztec_l1_contracts.ts +147 -44
  140. package/src/deploy_l1_contract.ts +3 -3
  141. package/src/generated/l1-contracts-defaults.ts +32 -0
  142. package/src/l1_contract_addresses.ts +22 -20
  143. package/src/l1_tx_utils/config.ts +20 -0
  144. package/src/l1_tx_utils/constants.ts +13 -2
  145. package/src/l1_tx_utils/factory.ts +31 -31
  146. package/src/l1_tx_utils/fee-strategies/index.ts +22 -0
  147. package/src/l1_tx_utils/fee-strategies/p75_competitive.ts +163 -0
  148. package/src/l1_tx_utils/fee-strategies/p75_competitive_blob_txs_only.ts +245 -0
  149. package/src/l1_tx_utils/fee-strategies/types.ts +56 -0
  150. package/src/l1_tx_utils/forwarder_l1_tx_utils.ts +43 -54
  151. package/src/l1_tx_utils/index-blobs.ts +2 -2
  152. package/src/l1_tx_utils/index.ts +3 -0
  153. package/src/l1_tx_utils/l1_fee_analyzer.ts +803 -0
  154. package/src/l1_tx_utils/l1_tx_utils.ts +60 -32
  155. package/src/l1_tx_utils/readonly_l1_tx_utils.ts +56 -190
  156. package/src/{test → l1_tx_utils}/tx_delayer.ts +78 -50
  157. package/src/publisher_manager.ts +4 -2
  158. package/src/queries.ts +11 -3
  159. package/src/test/chain_monitor.ts +1 -1
  160. package/src/test/eth_cheat_codes.ts +1 -1
  161. package/src/test/index.ts +0 -2
  162. package/src/test/rollup_cheat_codes.ts +22 -4
  163. package/src/test/start_anvil.ts +1 -1
  164. package/src/test/upgrade_utils.ts +2 -2
  165. package/src/utils.ts +82 -0
  166. package/dest/l1_tx_utils/l1_tx_utils_with_blobs.d.ts +0 -26
  167. package/dest/l1_tx_utils/l1_tx_utils_with_blobs.d.ts.map +0 -1
  168. package/dest/l1_tx_utils/l1_tx_utils_with_blobs.js +0 -26
  169. package/dest/test/delayed_tx_utils.d.ts +0 -13
  170. package/dest/test/delayed_tx_utils.d.ts.map +0 -1
  171. package/dest/test/delayed_tx_utils.js +0 -28
  172. package/dest/test/tx_delayer.d.ts +0 -36
  173. package/dest/test/tx_delayer.d.ts.map +0 -1
  174. package/src/l1_tx_utils/l1_tx_utils_with_blobs.ts +0 -77
  175. package/src/test/delayed_tx_utils.ts +0 -52
@@ -1,12 +1,383 @@
1
- function _ts_decorate(decorators, target, key, desc) {
2
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
- else for(var i = decorators.length - 1; i >= 0; i--)if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
- return c > 3 && r && Object.defineProperty(target, key, r), r;
1
+ function applyDecs2203RFactory() {
2
+ function createAddInitializerMethod(initializers, decoratorFinishedRef) {
3
+ return function addInitializer(initializer) {
4
+ assertNotFinished(decoratorFinishedRef, "addInitializer");
5
+ assertCallable(initializer, "An initializer");
6
+ initializers.push(initializer);
7
+ };
8
+ }
9
+ function memberDec(dec, name, desc, initializers, kind, isStatic, isPrivate, metadata, value) {
10
+ var kindStr;
11
+ switch(kind){
12
+ case 1:
13
+ kindStr = "accessor";
14
+ break;
15
+ case 2:
16
+ kindStr = "method";
17
+ break;
18
+ case 3:
19
+ kindStr = "getter";
20
+ break;
21
+ case 4:
22
+ kindStr = "setter";
23
+ break;
24
+ default:
25
+ kindStr = "field";
26
+ }
27
+ var ctx = {
28
+ kind: kindStr,
29
+ name: isPrivate ? "#" + name : name,
30
+ static: isStatic,
31
+ private: isPrivate,
32
+ metadata: metadata
33
+ };
34
+ var decoratorFinishedRef = {
35
+ v: false
36
+ };
37
+ ctx.addInitializer = createAddInitializerMethod(initializers, decoratorFinishedRef);
38
+ var get, set;
39
+ if (kind === 0) {
40
+ if (isPrivate) {
41
+ get = desc.get;
42
+ set = desc.set;
43
+ } else {
44
+ get = function() {
45
+ return this[name];
46
+ };
47
+ set = function(v) {
48
+ this[name] = v;
49
+ };
50
+ }
51
+ } else if (kind === 2) {
52
+ get = function() {
53
+ return desc.value;
54
+ };
55
+ } else {
56
+ if (kind === 1 || kind === 3) {
57
+ get = function() {
58
+ return desc.get.call(this);
59
+ };
60
+ }
61
+ if (kind === 1 || kind === 4) {
62
+ set = function(v) {
63
+ desc.set.call(this, v);
64
+ };
65
+ }
66
+ }
67
+ ctx.access = get && set ? {
68
+ get: get,
69
+ set: set
70
+ } : get ? {
71
+ get: get
72
+ } : {
73
+ set: set
74
+ };
75
+ try {
76
+ return dec(value, ctx);
77
+ } finally{
78
+ decoratorFinishedRef.v = true;
79
+ }
80
+ }
81
+ function assertNotFinished(decoratorFinishedRef, fnName) {
82
+ if (decoratorFinishedRef.v) {
83
+ throw new Error("attempted to call " + fnName + " after decoration was finished");
84
+ }
85
+ }
86
+ function assertCallable(fn, hint) {
87
+ if (typeof fn !== "function") {
88
+ throw new TypeError(hint + " must be a function");
89
+ }
90
+ }
91
+ function assertValidReturnValue(kind, value) {
92
+ var type = typeof value;
93
+ if (kind === 1) {
94
+ if (type !== "object" || value === null) {
95
+ throw new TypeError("accessor decorators must return an object with get, set, or init properties or void 0");
96
+ }
97
+ if (value.get !== undefined) {
98
+ assertCallable(value.get, "accessor.get");
99
+ }
100
+ if (value.set !== undefined) {
101
+ assertCallable(value.set, "accessor.set");
102
+ }
103
+ if (value.init !== undefined) {
104
+ assertCallable(value.init, "accessor.init");
105
+ }
106
+ } else if (type !== "function") {
107
+ var hint;
108
+ if (kind === 0) {
109
+ hint = "field";
110
+ } else if (kind === 10) {
111
+ hint = "class";
112
+ } else {
113
+ hint = "method";
114
+ }
115
+ throw new TypeError(hint + " decorators must return a function or void 0");
116
+ }
117
+ }
118
+ function applyMemberDec(ret, base, decInfo, name, kind, isStatic, isPrivate, initializers, metadata) {
119
+ var decs = decInfo[0];
120
+ var desc, init, value;
121
+ if (isPrivate) {
122
+ if (kind === 0 || kind === 1) {
123
+ desc = {
124
+ get: decInfo[3],
125
+ set: decInfo[4]
126
+ };
127
+ } else if (kind === 3) {
128
+ desc = {
129
+ get: decInfo[3]
130
+ };
131
+ } else if (kind === 4) {
132
+ desc = {
133
+ set: decInfo[3]
134
+ };
135
+ } else {
136
+ desc = {
137
+ value: decInfo[3]
138
+ };
139
+ }
140
+ } else if (kind !== 0) {
141
+ desc = Object.getOwnPropertyDescriptor(base, name);
142
+ }
143
+ if (kind === 1) {
144
+ value = {
145
+ get: desc.get,
146
+ set: desc.set
147
+ };
148
+ } else if (kind === 2) {
149
+ value = desc.value;
150
+ } else if (kind === 3) {
151
+ value = desc.get;
152
+ } else if (kind === 4) {
153
+ value = desc.set;
154
+ }
155
+ var newValue, get, set;
156
+ if (typeof decs === "function") {
157
+ newValue = memberDec(decs, name, desc, initializers, kind, isStatic, isPrivate, metadata, value);
158
+ if (newValue !== void 0) {
159
+ assertValidReturnValue(kind, newValue);
160
+ if (kind === 0) {
161
+ init = newValue;
162
+ } else if (kind === 1) {
163
+ init = newValue.init;
164
+ get = newValue.get || value.get;
165
+ set = newValue.set || value.set;
166
+ value = {
167
+ get: get,
168
+ set: set
169
+ };
170
+ } else {
171
+ value = newValue;
172
+ }
173
+ }
174
+ } else {
175
+ for(var i = decs.length - 1; i >= 0; i--){
176
+ var dec = decs[i];
177
+ newValue = memberDec(dec, name, desc, initializers, kind, isStatic, isPrivate, metadata, value);
178
+ if (newValue !== void 0) {
179
+ assertValidReturnValue(kind, newValue);
180
+ var newInit;
181
+ if (kind === 0) {
182
+ newInit = newValue;
183
+ } else if (kind === 1) {
184
+ newInit = newValue.init;
185
+ get = newValue.get || value.get;
186
+ set = newValue.set || value.set;
187
+ value = {
188
+ get: get,
189
+ set: set
190
+ };
191
+ } else {
192
+ value = newValue;
193
+ }
194
+ if (newInit !== void 0) {
195
+ if (init === void 0) {
196
+ init = newInit;
197
+ } else if (typeof init === "function") {
198
+ init = [
199
+ init,
200
+ newInit
201
+ ];
202
+ } else {
203
+ init.push(newInit);
204
+ }
205
+ }
206
+ }
207
+ }
208
+ }
209
+ if (kind === 0 || kind === 1) {
210
+ if (init === void 0) {
211
+ init = function(instance, init) {
212
+ return init;
213
+ };
214
+ } else if (typeof init !== "function") {
215
+ var ownInitializers = init;
216
+ init = function(instance, init) {
217
+ var value = init;
218
+ for(var i = 0; i < ownInitializers.length; i++){
219
+ value = ownInitializers[i].call(instance, value);
220
+ }
221
+ return value;
222
+ };
223
+ } else {
224
+ var originalInitializer = init;
225
+ init = function(instance, init) {
226
+ return originalInitializer.call(instance, init);
227
+ };
228
+ }
229
+ ret.push(init);
230
+ }
231
+ if (kind !== 0) {
232
+ if (kind === 1) {
233
+ desc.get = value.get;
234
+ desc.set = value.set;
235
+ } else if (kind === 2) {
236
+ desc.value = value;
237
+ } else if (kind === 3) {
238
+ desc.get = value;
239
+ } else if (kind === 4) {
240
+ desc.set = value;
241
+ }
242
+ if (isPrivate) {
243
+ if (kind === 1) {
244
+ ret.push(function(instance, args) {
245
+ return value.get.call(instance, args);
246
+ });
247
+ ret.push(function(instance, args) {
248
+ return value.set.call(instance, args);
249
+ });
250
+ } else if (kind === 2) {
251
+ ret.push(value);
252
+ } else {
253
+ ret.push(function(instance, args) {
254
+ return value.call(instance, args);
255
+ });
256
+ }
257
+ } else {
258
+ Object.defineProperty(base, name, desc);
259
+ }
260
+ }
261
+ }
262
+ function applyMemberDecs(Class, decInfos, metadata) {
263
+ var ret = [];
264
+ var protoInitializers;
265
+ var staticInitializers;
266
+ var existingProtoNonFields = new Map();
267
+ var existingStaticNonFields = new Map();
268
+ for(var i = 0; i < decInfos.length; i++){
269
+ var decInfo = decInfos[i];
270
+ if (!Array.isArray(decInfo)) continue;
271
+ var kind = decInfo[1];
272
+ var name = decInfo[2];
273
+ var isPrivate = decInfo.length > 3;
274
+ var isStatic = kind >= 5;
275
+ var base;
276
+ var initializers;
277
+ if (isStatic) {
278
+ base = Class;
279
+ kind = kind - 5;
280
+ staticInitializers = staticInitializers || [];
281
+ initializers = staticInitializers;
282
+ } else {
283
+ base = Class.prototype;
284
+ protoInitializers = protoInitializers || [];
285
+ initializers = protoInitializers;
286
+ }
287
+ if (kind !== 0 && !isPrivate) {
288
+ var existingNonFields = isStatic ? existingStaticNonFields : existingProtoNonFields;
289
+ var existingKind = existingNonFields.get(name) || 0;
290
+ if (existingKind === true || existingKind === 3 && kind !== 4 || existingKind === 4 && kind !== 3) {
291
+ throw new Error("Attempted to decorate a public method/accessor that has the same name as a previously decorated public method/accessor. This is not currently supported by the decorators plugin. Property name was: " + name);
292
+ } else if (!existingKind && kind > 2) {
293
+ existingNonFields.set(name, kind);
294
+ } else {
295
+ existingNonFields.set(name, true);
296
+ }
297
+ }
298
+ applyMemberDec(ret, base, decInfo, name, kind, isStatic, isPrivate, initializers, metadata);
299
+ }
300
+ pushInitializers(ret, protoInitializers);
301
+ pushInitializers(ret, staticInitializers);
302
+ return ret;
303
+ }
304
+ function pushInitializers(ret, initializers) {
305
+ if (initializers) {
306
+ ret.push(function(instance) {
307
+ for(var i = 0; i < initializers.length; i++){
308
+ initializers[i].call(instance);
309
+ }
310
+ return instance;
311
+ });
312
+ }
313
+ }
314
+ function applyClassDecs(targetClass, classDecs, metadata) {
315
+ if (classDecs.length > 0) {
316
+ var initializers = [];
317
+ var newClass = targetClass;
318
+ var name = targetClass.name;
319
+ for(var i = classDecs.length - 1; i >= 0; i--){
320
+ var decoratorFinishedRef = {
321
+ v: false
322
+ };
323
+ try {
324
+ var nextNewClass = classDecs[i](newClass, {
325
+ kind: "class",
326
+ name: name,
327
+ addInitializer: createAddInitializerMethod(initializers, decoratorFinishedRef),
328
+ metadata
329
+ });
330
+ } finally{
331
+ decoratorFinishedRef.v = true;
332
+ }
333
+ if (nextNewClass !== undefined) {
334
+ assertValidReturnValue(10, nextNewClass);
335
+ newClass = nextNewClass;
336
+ }
337
+ }
338
+ return [
339
+ defineMetadata(newClass, metadata),
340
+ function() {
341
+ for(var i = 0; i < initializers.length; i++){
342
+ initializers[i].call(newClass);
343
+ }
344
+ }
345
+ ];
346
+ }
347
+ }
348
+ function defineMetadata(Class, metadata) {
349
+ return Object.defineProperty(Class, Symbol.metadata || Symbol.for("Symbol.metadata"), {
350
+ configurable: true,
351
+ enumerable: true,
352
+ value: metadata
353
+ });
354
+ }
355
+ return function applyDecs2203R(targetClass, memberDecs, classDecs, parentClass) {
356
+ if (parentClass !== void 0) {
357
+ var parentMetadata = parentClass[Symbol.metadata || Symbol.for("Symbol.metadata")];
358
+ }
359
+ var metadata = Object.create(parentMetadata === void 0 ? null : parentMetadata);
360
+ var e = applyMemberDecs(targetClass, memberDecs, metadata);
361
+ if (!classDecs.length) defineMetadata(targetClass, metadata);
362
+ return {
363
+ e: e,
364
+ get c () {
365
+ return applyClassDecs(targetClass, classDecs, metadata);
366
+ }
367
+ };
368
+ };
369
+ }
370
+ function _apply_decs_2203_r(targetClass, memberDecs, classDecs, parentClass) {
371
+ return (_apply_decs_2203_r = applyDecs2203RFactory())(targetClass, memberDecs, classDecs, parentClass);
6
372
  }
373
+ var _initProto;
7
374
  import { CheckpointNumber, EpochNumber, SlotNumber } from '@aztec/foundation/branded-types';
375
+ import { Buffer32 } from '@aztec/foundation/buffer';
376
+ import { Fr } from '@aztec/foundation/curves/bn254';
8
377
  import { memoize } from '@aztec/foundation/decorators';
9
378
  import { EthAddress } from '@aztec/foundation/eth-address';
379
+ import { makeBackoff, retry } from '@aztec/foundation/retry';
380
+ import { EscapeHatchAbi } from '@aztec/l1-artifacts/EscapeHatchAbi';
10
381
  import { RollupAbi } from '@aztec/l1-artifacts/RollupAbi';
11
382
  import { RollupStorage } from '@aztec/l1-artifacts/RollupStorage';
12
383
  import chunk from 'lodash.chunk';
@@ -24,10 +395,120 @@ export var SlashingProposerType = /*#__PURE__*/ function(SlashingProposerType) {
24
395
  SlashingProposerType[SlashingProposerType["Empire"] = 2] = "Empire";
25
396
  return SlashingProposerType;
26
397
  }({});
398
+ /**
399
+ * Status of a validator/attester in the staking system.
400
+ * Matches the Status enum in StakingLib.sol
401
+ */ export var AttesterStatus = /*#__PURE__*/ function(AttesterStatus) {
402
+ AttesterStatus[AttesterStatus["NONE"] = 0] = "NONE";
403
+ AttesterStatus[AttesterStatus["VALIDATING"] = 1] = "VALIDATING";
404
+ AttesterStatus[AttesterStatus["ZOMBIE"] = 2] = "ZOMBIE";
405
+ AttesterStatus[AttesterStatus["EXITING"] = 3] = "EXITING";
406
+ return AttesterStatus;
407
+ }({});
27
408
  export class RollupContract {
28
409
  client;
410
+ static{
411
+ ({ e: [_initProto] } = _apply_decs_2203_r(this, [
412
+ [
413
+ memoize,
414
+ 2,
415
+ "getL1StartBlock"
416
+ ],
417
+ [
418
+ memoize,
419
+ 2,
420
+ "getL1GenesisTime"
421
+ ],
422
+ [
423
+ memoize,
424
+ 2,
425
+ "getProofSubmissionEpochs"
426
+ ],
427
+ [
428
+ memoize,
429
+ 2,
430
+ "getEpochDuration"
431
+ ],
432
+ [
433
+ memoize,
434
+ 2,
435
+ "getSlotDuration"
436
+ ],
437
+ [
438
+ memoize,
439
+ 2,
440
+ "getTargetCommitteeSize"
441
+ ],
442
+ [
443
+ memoize,
444
+ 2,
445
+ "getEjectionThreshold"
446
+ ],
447
+ [
448
+ memoize,
449
+ 2,
450
+ "getLocalEjectionThreshold"
451
+ ],
452
+ [
453
+ memoize,
454
+ 2,
455
+ "getLagInEpochsForValidatorSet"
456
+ ],
457
+ [
458
+ memoize,
459
+ 2,
460
+ "getLagInEpochsForRandao"
461
+ ],
462
+ [
463
+ memoize,
464
+ 2,
465
+ "getActivationThreshold"
466
+ ],
467
+ [
468
+ memoize,
469
+ 2,
470
+ "getExitDelay"
471
+ ],
472
+ [
473
+ memoize,
474
+ 2,
475
+ "getManaTarget"
476
+ ],
477
+ [
478
+ memoize,
479
+ 2,
480
+ "getProvingCostPerMana"
481
+ ],
482
+ [
483
+ memoize,
484
+ 2,
485
+ "getProvingCostPerManaInFeeAsset"
486
+ ],
487
+ [
488
+ memoize,
489
+ 2,
490
+ "getManaLimit"
491
+ ],
492
+ [
493
+ memoize,
494
+ 2,
495
+ "getVersion"
496
+ ],
497
+ [
498
+ memoize,
499
+ 2,
500
+ "getGenesisArchiveTreeRoot"
501
+ ],
502
+ [
503
+ memoize,
504
+ 2,
505
+ "getRollupConstants"
506
+ ]
507
+ ], []));
508
+ }
29
509
  rollup;
30
510
  static cachedStfStorageSlot;
511
+ cachedEscapeHatch;
31
512
  static get checkBlobStorageSlot() {
32
513
  const asString = RollupStorage.find((storage)=>storage.label === 'checkBlob')?.slot;
33
514
  if (asString === undefined) {
@@ -49,6 +530,7 @@ export class RollupContract {
49
530
  }
50
531
  constructor(client, address){
51
532
  this.client = client;
533
+ _initProto(this);
52
534
  if (address instanceof EthAddress) {
53
535
  address = address.toString();
54
536
  }
@@ -58,8 +540,8 @@ export class RollupContract {
58
540
  client
59
541
  });
60
542
  }
61
- getGSE() {
62
- return this.rollup.read.getGSE();
543
+ async getGSE() {
544
+ return EthAddress.fromString(await this.rollup.read.getGSE());
63
545
  }
64
546
  get address() {
65
547
  return this.rollup.address;
@@ -108,17 +590,17 @@ export class RollupContract {
108
590
  getL1GenesisTime() {
109
591
  return this.rollup.read.getGenesisTime();
110
592
  }
111
- getProofSubmissionEpochs() {
112
- return this.rollup.read.getProofSubmissionEpochs();
593
+ async getProofSubmissionEpochs() {
594
+ return Number(await this.rollup.read.getProofSubmissionEpochs());
113
595
  }
114
- getEpochDuration() {
115
- return this.rollup.read.getEpochDuration();
596
+ async getEpochDuration() {
597
+ return Number(await this.rollup.read.getEpochDuration());
116
598
  }
117
599
  async getSlotDuration() {
118
600
  return Number(await this.rollup.read.getSlotDuration());
119
601
  }
120
- getTargetCommitteeSize() {
121
- return this.rollup.read.getTargetCommitteeSize();
602
+ async getTargetCommitteeSize() {
603
+ return Number(await this.rollup.read.getTargetCommitteeSize());
122
604
  }
123
605
  getEjectionThreshold() {
124
606
  return this.rollup.read.getEjectionThreshold();
@@ -126,17 +608,17 @@ export class RollupContract {
126
608
  getLocalEjectionThreshold() {
127
609
  return this.rollup.read.getLocalEjectionThreshold();
128
610
  }
129
- getLagInEpochsForValidatorSet() {
130
- return this.rollup.read.getLagInEpochsForValidatorSet();
611
+ async getLagInEpochsForValidatorSet() {
612
+ return Number(await this.rollup.read.getLagInEpochsForValidatorSet());
131
613
  }
132
- getLagInEpochsForRandao() {
133
- return this.rollup.read.getLagInEpochsForRandao();
614
+ async getLagInEpochsForRandao() {
615
+ return Number(await this.rollup.read.getLagInEpochsForRandao());
134
616
  }
135
617
  getActivationThreshold() {
136
618
  return this.rollup.read.getActivationThreshold();
137
619
  }
138
- getExitDelay() {
139
- return this.rollup.read.getExitDelay();
620
+ async getExitDelay() {
621
+ return Number(await this.rollup.read.getExitDelay());
140
622
  }
141
623
  getManaTarget() {
142
624
  return this.rollup.read.getManaTarget();
@@ -154,47 +636,95 @@ export class RollupContract {
154
636
  return this.rollup.read.getVersion();
155
637
  }
156
638
  async getGenesisArchiveTreeRoot() {
157
- return await this.rollup.read.archiveAt([
639
+ return Fr.fromString(await this.rollup.read.archiveAt([
158
640
  0n
159
- ]);
641
+ ]));
160
642
  }
161
643
  /**
162
644
  * Returns rollup constants used for epoch queries.
163
645
  * Return type is `L1RollupConstants` which is defined in stdlib,
164
646
  * so we cant reference it until we move this contract to that package.
165
647
  */ async getRollupConstants() {
166
- const [l1StartBlock, l1GenesisTime, slotDuration, epochDuration, proofSubmissionEpochs] = await Promise.all([
648
+ const [l1StartBlock, l1GenesisTime, slotDuration, epochDuration, proofSubmissionEpochs, targetCommitteeSize, rollupManaLimit] = await Promise.all([
167
649
  this.getL1StartBlock(),
168
650
  this.getL1GenesisTime(),
169
651
  this.getSlotDuration(),
170
652
  this.getEpochDuration(),
171
- this.getProofSubmissionEpochs()
653
+ this.getProofSubmissionEpochs(),
654
+ this.getTargetCommitteeSize(),
655
+ this.getManaLimit()
172
656
  ]);
173
657
  return {
174
658
  l1StartBlock,
175
659
  l1GenesisTime,
176
660
  slotDuration,
177
661
  epochDuration: Number(epochDuration),
178
- proofSubmissionEpochs: Number(proofSubmissionEpochs)
662
+ proofSubmissionEpochs: Number(proofSubmissionEpochs),
663
+ targetCommitteeSize,
664
+ rollupManaLimit: Number(rollupManaLimit)
179
665
  };
180
666
  }
181
- getSlasherAddress() {
182
- return this.rollup.read.getSlasher();
667
+ async getSlasherAddress() {
668
+ return EthAddress.fromString(await this.rollup.read.getSlasher());
669
+ }
670
+ /**
671
+ * Returns the configured escape hatch contract address, or zero if disabled.
672
+ */ async getEscapeHatchAddress() {
673
+ return EthAddress.fromString(await this.rollup.read.getEscapeHatch());
674
+ }
675
+ async getEscapeHatchContract() {
676
+ const escapeHatchAddress = await this.getEscapeHatchAddress();
677
+ if (escapeHatchAddress.isZero()) {
678
+ return undefined;
679
+ }
680
+ // Cache the viem contract wrapper since it will be used frequently.
681
+ if (!this.cachedEscapeHatch || !this.cachedEscapeHatch.address.equals(escapeHatchAddress)) {
682
+ this.cachedEscapeHatch = {
683
+ address: escapeHatchAddress,
684
+ contract: getContract({
685
+ address: escapeHatchAddress.toString(),
686
+ abi: EscapeHatchAbi,
687
+ client: this.client
688
+ })
689
+ };
690
+ }
691
+ return this.cachedEscapeHatch.contract;
692
+ }
693
+ /**
694
+ * Returns whether the escape hatch is open for the given epoch.
695
+ * If escape hatch is not configured, returns false.
696
+ *
697
+ * This function is intentionally defensive: any failure to query the escape hatch
698
+ * (RPC issues, transient errors, etc.) is treated as "closed" to avoid callers
699
+ * needing to sprinkle try/catch everywhere.
700
+ */ async isEscapeHatchOpen(epoch) {
701
+ try {
702
+ const escapeHatch = await this.getEscapeHatchContract();
703
+ if (!escapeHatch) {
704
+ return false;
705
+ }
706
+ const [isOpen] = await escapeHatch.read.isHatchOpen([
707
+ BigInt(epoch)
708
+ ]);
709
+ return isOpen;
710
+ } catch {
711
+ return false;
712
+ }
183
713
  }
184
714
  /**
185
715
  * Returns a SlasherContract instance for interacting with the slasher contract.
186
716
  */ async getSlasherContract() {
187
- const slasherAddress = EthAddress.fromString(await this.getSlasherAddress());
717
+ const slasherAddress = await this.getSlasherAddress();
188
718
  if (slasherAddress.isZero()) {
189
719
  return undefined;
190
720
  }
191
721
  return new SlasherContract(this.client, slasherAddress);
192
722
  }
193
- getOwner() {
194
- return this.rollup.read.owner();
723
+ async getOwner() {
724
+ return EthAddress.fromString(await this.rollup.read.owner());
195
725
  }
196
- getActiveAttesterCount() {
197
- return this.rollup.read.getActiveAttesterCount();
726
+ async getActiveAttesterCount() {
727
+ return Number(await this.rollup.read.getActiveAttesterCount());
198
728
  }
199
729
  async getSlashingProposerAddress() {
200
730
  const slasher = await this.getSlasherContract();
@@ -215,13 +745,17 @@ export class RollupContract {
215
745
  async getSlotNumber() {
216
746
  return SlotNumber.fromBigInt(await this.rollup.read.getCurrentSlot());
217
747
  }
218
- getL1FeesAt(timestamp) {
219
- return this.rollup.read.getL1FeesAt([
748
+ async getL1FeesAt(timestamp) {
749
+ const result = await this.rollup.read.getL1FeesAt([
220
750
  timestamp
221
751
  ]);
752
+ return {
753
+ baseFee: result.baseFee,
754
+ blobFee: result.blobFee
755
+ };
222
756
  }
223
- getFeeAssetPerEth() {
224
- return this.rollup.read.getFeeAssetPerEth();
757
+ getEthPerFeeAsset() {
758
+ return this.rollup.read.getEthPerFeeAsset();
225
759
  }
226
760
  async getCommitteeAt(timestamp) {
227
761
  const { result } = await this.client.simulateContract({
@@ -239,15 +773,15 @@ export class RollupContract {
239
773
  }
240
774
  throw e;
241
775
  });
242
- return result;
776
+ return result ? result.map((addr)=>EthAddress.fromString(addr)) : undefined;
243
777
  }
244
- getSampleSeedAt(timestamp) {
245
- return this.rollup.read.getSampleSeedAt([
778
+ async getSampleSeedAt(timestamp) {
779
+ return Buffer32.fromBigInt(await this.rollup.read.getSampleSeedAt([
246
780
  timestamp
247
- ]);
781
+ ]));
248
782
  }
249
- getCurrentSampleSeed() {
250
- return this.rollup.read.getCurrentSampleSeed();
783
+ async getCurrentSampleSeed() {
784
+ return Buffer32.fromBigInt(await this.rollup.read.getCurrentSampleSeed());
251
785
  }
252
786
  async getCurrentEpoch() {
253
787
  return EpochNumber.fromBigInt(await this.rollup.read.getCurrentEpoch());
@@ -266,7 +800,7 @@ export class RollupContract {
266
800
  }
267
801
  throw e;
268
802
  });
269
- return result;
803
+ return result ? result.map((addr)=>EthAddress.fromString(addr)) : undefined;
270
804
  }
271
805
  async getCurrentProposer() {
272
806
  const { result } = await this.client.simulateContract({
@@ -275,7 +809,7 @@ export class RollupContract {
275
809
  functionName: 'getCurrentProposer',
276
810
  args: []
277
811
  });
278
- return result;
812
+ return EthAddress.fromString(result);
279
813
  }
280
814
  async getProposerAt(timestamp) {
281
815
  const { result } = await this.client.simulateContract({
@@ -286,12 +820,40 @@ export class RollupContract {
286
820
  timestamp
287
821
  ]
288
822
  });
289
- return result;
823
+ return EthAddress.fromString(result);
290
824
  }
291
- getCheckpoint(checkpointNumber) {
292
- return this.rollup.read.getCheckpoint([
825
+ async getCheckpoint(checkpointNumber) {
826
+ const result = await this.rollup.read.getCheckpoint([
293
827
  BigInt(checkpointNumber)
294
828
  ]);
829
+ return {
830
+ archive: Fr.fromString(result.archive),
831
+ headerHash: Buffer32.fromString(result.headerHash),
832
+ blobCommitmentsHash: Buffer32.fromString(result.blobCommitmentsHash),
833
+ attestationsHash: Buffer32.fromString(result.attestationsHash),
834
+ payloadDigest: Buffer32.fromString(result.payloadDigest),
835
+ slotNumber: SlotNumber.fromBigInt(result.slotNumber),
836
+ feeHeader: {
837
+ excessMana: result.feeHeader.excessMana,
838
+ manaUsed: result.feeHeader.manaUsed,
839
+ ethPerFeeAsset: result.feeHeader.ethPerFeeAsset,
840
+ congestionCost: result.feeHeader.congestionCost,
841
+ proverCost: result.feeHeader.proverCost
842
+ }
843
+ };
844
+ }
845
+ /** Returns the pending checkpoint from the rollup contract */ getPendingCheckpoint() {
846
+ // We retry because of race conditions during prunes: we may get a pending checkpoint number which is immediately
847
+ // reorged out due to a prune happening, causing the subsequent getCheckpoint call to fail. So we try again in that case.
848
+ return retry(async ()=>{
849
+ const pendingCheckpointNumber = await this.getCheckpointNumber();
850
+ const pendingCheckpoint = await this.getCheckpoint(pendingCheckpointNumber);
851
+ return pendingCheckpoint;
852
+ }, 'getting pending checkpoint', makeBackoff([
853
+ 0.5,
854
+ 0.5,
855
+ 0.5
856
+ ]));
295
857
  }
296
858
  async getTips() {
297
859
  const { pending, proven } = await this.rollup.read.getTips();
@@ -305,11 +867,11 @@ export class RollupContract {
305
867
  BigInt(slot)
306
868
  ]);
307
869
  }
308
- getEntryQueueLength() {
309
- return this.rollup.read.getEntryQueueLength();
870
+ async getEntryQueueLength() {
871
+ return Number(await this.rollup.read.getEntryQueueLength());
310
872
  }
311
- getAvailableValidatorFlushes() {
312
- return this.rollup.read.getAvailableValidatorFlushes();
873
+ async getAvailableValidatorFlushes() {
874
+ return Number(await this.rollup.read.getAvailableValidatorFlushes());
313
875
  }
314
876
  async getNextFlushableEpoch() {
315
877
  return EpochNumber.fromBigInt(await this.rollup.read.getNextFlushableEpoch());
@@ -351,8 +913,9 @@ export class RollupContract {
351
913
  BigInt(slotNumber)
352
914
  ]));
353
915
  }
354
- getEpochProofPublicInputs(args) {
355
- return this.rollup.read.getEpochProofPublicInputs(args);
916
+ async getEpochProofPublicInputs(args) {
917
+ const result = await this.rollup.read.getEpochProofPublicInputs(args);
918
+ return result.map(Fr.fromString);
356
919
  }
357
920
  async validateHeader(args, account) {
358
921
  try {
@@ -432,6 +995,7 @@ export class RollupContract {
432
995
  /** Creates a request to Rollup#invalidateBadAttestation to be simulated or sent */ buildInvalidateBadAttestationRequest(checkpointNumber, attestationsAndSigners, committee, invalidIndex) {
433
996
  return {
434
997
  to: this.address,
998
+ abi: RollupAbi,
435
999
  data: encodeFunctionData({
436
1000
  abi: RollupAbi,
437
1001
  functionName: 'invalidateBadAttestation',
@@ -447,6 +1011,7 @@ export class RollupContract {
447
1011
  /** Creates a request to Rollup#invalidateInsufficientAttestations to be simulated or sent */ buildInvalidateInsufficientAttestationsRequest(checkpointNumber, attestationsAndSigners, committee) {
448
1012
  return {
449
1013
  to: this.address,
1014
+ abi: RollupAbi,
450
1015
  data: encodeFunctionData({
451
1016
  abi: RollupAbi,
452
1017
  functionName: 'invalidateInsufficientAttestations',
@@ -468,8 +1033,8 @@ export class RollupContract {
468
1033
  prover
469
1034
  ]);
470
1035
  }
471
- getManaBaseFeeAt(timestamp, inFeeAsset) {
472
- return this.rollup.read.getManaBaseFeeAt([
1036
+ getManaMinFeeAt(timestamp, inFeeAsset) {
1037
+ return this.rollup.read.getManaMinFeeAt([
473
1038
  timestamp,
474
1039
  inFeeAsset
475
1040
  ]);
@@ -481,9 +1046,16 @@ export class RollupContract {
481
1046
  }
482
1047
  async status(checkpointNumber, options) {
483
1048
  await checkBlockTag(options?.blockNumber, this.client);
484
- return this.rollup.read.status([
1049
+ const result = await this.rollup.read.status([
485
1050
  BigInt(checkpointNumber)
486
1051
  ], options);
1052
+ return {
1053
+ provenCheckpointNumber: CheckpointNumber.fromBigInt(result[0]),
1054
+ provenArchive: Fr.fromString(result[1]),
1055
+ pendingCheckpointNumber: CheckpointNumber.fromBigInt(result[2]),
1056
+ pendingArchive: Fr.fromString(result[3]),
1057
+ archiveOfMyCheckpoint: Fr.fromString(result[4])
1058
+ };
487
1059
  }
488
1060
  async canPruneAtTime(timestamp, options) {
489
1061
  await checkBlockTag(options?.blockNumber, this.client);
@@ -491,13 +1063,13 @@ export class RollupContract {
491
1063
  timestamp
492
1064
  ], options);
493
1065
  }
494
- archive() {
495
- return this.rollup.read.archive();
1066
+ async archive() {
1067
+ return Fr.fromString(await this.rollup.read.archive());
496
1068
  }
497
- archiveAt(checkpointNumber) {
498
- return this.rollup.read.archiveAt([
1069
+ async archiveAt(checkpointNumber) {
1070
+ return Fr.fromString(await this.rollup.read.archiveAt([
499
1071
  BigInt(checkpointNumber)
500
- ]);
1072
+ ]));
501
1073
  }
502
1074
  getSequencerRewards(address) {
503
1075
  if (address instanceof EthAddress) {
@@ -521,44 +1093,71 @@ export class RollupContract {
521
1093
  const gse = new GSEContract(this.client, await this.getGSE());
522
1094
  const ts = (await this.client.getBlock()).timestamp;
523
1095
  const indices = Array.from({
524
- length: Number(attesterSize)
1096
+ length: attesterSize
525
1097
  }, (_, i)=>BigInt(i));
526
1098
  const chunks = chunk(indices, 1000);
527
- return (await Promise.all(chunks.map((chunk)=>gse.getAttestersFromIndicesAtTime(this.address, ts, chunk)))).flat();
1099
+ const results = await Promise.all(chunks.map((chunk)=>gse.getAttestersFromIndicesAtTime(this.address, ts, chunk)));
1100
+ return results.flat().map((addr)=>EthAddress.fromString(addr));
528
1101
  }
529
- getAttesterView(address) {
1102
+ async getAttesterView(address) {
530
1103
  if (address instanceof EthAddress) {
531
1104
  address = address.toString();
532
1105
  }
533
- return this.rollup.read.getAttesterView([
1106
+ const result = await this.rollup.read.getAttesterView([
534
1107
  address
535
1108
  ]);
1109
+ return {
1110
+ status: result.status,
1111
+ effectiveBalance: result.effectiveBalance,
1112
+ exit: {
1113
+ withdrawalId: result.exit.withdrawalId,
1114
+ amount: result.exit.amount,
1115
+ exitableAt: result.exit.exitableAt,
1116
+ recipientOrWithdrawer: EthAddress.fromString(result.exit.recipientOrWithdrawer),
1117
+ isRecipient: result.exit.isRecipient,
1118
+ exists: result.exit.exists
1119
+ },
1120
+ config: {
1121
+ publicKey: {
1122
+ x: result.config.publicKey.x,
1123
+ y: result.config.publicKey.y
1124
+ },
1125
+ withdrawer: EthAddress.fromString(result.config.withdrawer)
1126
+ }
1127
+ };
536
1128
  }
537
- getStatus(address) {
1129
+ async getStatus(address) {
538
1130
  if (address instanceof EthAddress) {
539
1131
  address = address.toString();
540
1132
  }
541
- return this.rollup.read.getStatus([
1133
+ return await this.rollup.read.getStatus([
542
1134
  address
543
1135
  ]);
544
1136
  }
545
- getBlobCommitmentsHash(checkpointNumber) {
546
- return this.rollup.read.getBlobCommitmentsHash([
1137
+ async getBlobCommitmentsHash(checkpointNumber) {
1138
+ return Buffer32.fromString(await this.rollup.read.getBlobCommitmentsHash([
547
1139
  BigInt(checkpointNumber)
548
- ]);
1140
+ ]));
549
1141
  }
550
- getCurrentBlobCommitmentsHash() {
551
- return this.rollup.read.getCurrentBlobCommitmentsHash();
1142
+ async getCurrentBlobCommitmentsHash() {
1143
+ return Buffer32.fromString(await this.rollup.read.getCurrentBlobCommitmentsHash());
552
1144
  }
553
- getStakingAsset() {
554
- return this.rollup.read.getStakingAsset();
1145
+ async getStakingAsset() {
1146
+ return EthAddress.fromString(await this.rollup.read.getStakingAsset());
555
1147
  }
556
- getRewardConfig() {
557
- return this.rollup.read.getRewardConfig();
1148
+ async getRewardConfig() {
1149
+ const result = await this.rollup.read.getRewardConfig();
1150
+ return {
1151
+ rewardDistributor: EthAddress.fromString(result.rewardDistributor),
1152
+ sequencerBps: BigInt(result.sequencerBps),
1153
+ booster: EthAddress.fromString(result.booster),
1154
+ checkpointReward: result.checkpointReward
1155
+ };
558
1156
  }
559
1157
  setupEpoch(l1TxUtils) {
560
1158
  return l1TxUtils.sendAndMonitorTransaction({
561
1159
  to: this.address,
1160
+ abi: RollupAbi,
562
1161
  data: encodeFunctionData({
563
1162
  abi: RollupAbi,
564
1163
  functionName: 'setupEpoch',
@@ -569,6 +1168,7 @@ export class RollupContract {
569
1168
  vote(l1TxUtils, proposalId) {
570
1169
  return l1TxUtils.sendAndMonitorTransaction({
571
1170
  to: this.address,
1171
+ abi: RollupAbi,
572
1172
  data: encodeFunctionData({
573
1173
  abi: RollupAbi,
574
1174
  functionName: 'vote',
@@ -628,61 +1228,32 @@ export class RollupContract {
628
1228
  }
629
1229
  });
630
1230
  }
1231
+ /** Fetches CheckpointProposed events within the given block range. */ async getCheckpointProposedEvents(fromBlock, toBlock) {
1232
+ const logs = await this.rollup.getEvents.CheckpointProposed({}, {
1233
+ fromBlock,
1234
+ toBlock
1235
+ });
1236
+ return logs.filter((log)=>log.blockNumber >= fromBlock && log.blockNumber <= toBlock).map((log)=>({
1237
+ l1BlockNumber: log.blockNumber,
1238
+ l1BlockHash: Buffer32.fromString(log.blockHash),
1239
+ l1TransactionHash: log.transactionHash,
1240
+ args: {
1241
+ checkpointNumber: CheckpointNumber.fromBigInt(log.args.checkpointNumber),
1242
+ archive: Fr.fromString(log.args.archive),
1243
+ versionedBlobHashes: log.args.versionedBlobHashes.map((h)=>Buffer.from(h.slice(2), 'hex')),
1244
+ attestationsHash: (()=>{
1245
+ if (!log.args.attestationsHash) {
1246
+ throw new Error(`CheckpointProposed event missing attestationsHash for checkpoint ${log.args.checkpointNumber}`);
1247
+ }
1248
+ return Buffer32.fromString(log.args.attestationsHash);
1249
+ })(),
1250
+ payloadDigest: (()=>{
1251
+ if (!log.args.payloadDigest) {
1252
+ throw new Error(`CheckpointProposed event missing payloadDigest for checkpoint ${log.args.checkpointNumber}`);
1253
+ }
1254
+ return Buffer32.fromString(log.args.payloadDigest);
1255
+ })()
1256
+ }
1257
+ }));
1258
+ }
631
1259
  }
632
- _ts_decorate([
633
- memoize
634
- ], RollupContract.prototype, "getL1StartBlock", null);
635
- _ts_decorate([
636
- memoize
637
- ], RollupContract.prototype, "getL1GenesisTime", null);
638
- _ts_decorate([
639
- memoize
640
- ], RollupContract.prototype, "getProofSubmissionEpochs", null);
641
- _ts_decorate([
642
- memoize
643
- ], RollupContract.prototype, "getEpochDuration", null);
644
- _ts_decorate([
645
- memoize
646
- ], RollupContract.prototype, "getSlotDuration", null);
647
- _ts_decorate([
648
- memoize
649
- ], RollupContract.prototype, "getTargetCommitteeSize", null);
650
- _ts_decorate([
651
- memoize
652
- ], RollupContract.prototype, "getEjectionThreshold", null);
653
- _ts_decorate([
654
- memoize
655
- ], RollupContract.prototype, "getLocalEjectionThreshold", null);
656
- _ts_decorate([
657
- memoize
658
- ], RollupContract.prototype, "getLagInEpochsForValidatorSet", null);
659
- _ts_decorate([
660
- memoize
661
- ], RollupContract.prototype, "getLagInEpochsForRandao", null);
662
- _ts_decorate([
663
- memoize
664
- ], RollupContract.prototype, "getActivationThreshold", null);
665
- _ts_decorate([
666
- memoize
667
- ], RollupContract.prototype, "getExitDelay", null);
668
- _ts_decorate([
669
- memoize
670
- ], RollupContract.prototype, "getManaTarget", null);
671
- _ts_decorate([
672
- memoize
673
- ], RollupContract.prototype, "getProvingCostPerMana", null);
674
- _ts_decorate([
675
- memoize
676
- ], RollupContract.prototype, "getProvingCostPerManaInFeeAsset", null);
677
- _ts_decorate([
678
- memoize
679
- ], RollupContract.prototype, "getManaLimit", null);
680
- _ts_decorate([
681
- memoize
682
- ], RollupContract.prototype, "getVersion", null);
683
- _ts_decorate([
684
- memoize
685
- ], RollupContract.prototype, "getGenesisArchiveTreeRoot", null);
686
- _ts_decorate([
687
- memoize
688
- ], RollupContract.prototype, "getRollupConstants", null);