@aztec/sequencer-client 0.0.1-commit.5daedc8 → 0.0.1-commit.6201a7b05

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 (136) hide show
  1. package/dest/client/sequencer-client.d.ts +26 -16
  2. package/dest/client/sequencer-client.d.ts.map +1 -1
  3. package/dest/client/sequencer-client.js +76 -36
  4. package/dest/config.d.ts +35 -9
  5. package/dest/config.d.ts.map +1 -1
  6. package/dest/config.js +113 -50
  7. package/dest/global_variable_builder/fee_predictor.d.ts +37 -0
  8. package/dest/global_variable_builder/fee_predictor.d.ts.map +1 -0
  9. package/dest/global_variable_builder/fee_predictor.js +128 -0
  10. package/dest/global_variable_builder/fee_provider.d.ts +21 -0
  11. package/dest/global_variable_builder/fee_provider.d.ts.map +1 -0
  12. package/dest/global_variable_builder/fee_provider.js +58 -0
  13. package/dest/global_variable_builder/global_builder.d.ts +25 -17
  14. package/dest/global_variable_builder/global_builder.d.ts.map +1 -1
  15. package/dest/global_variable_builder/global_builder.js +44 -68
  16. package/dest/global_variable_builder/index.d.ts +4 -2
  17. package/dest/global_variable_builder/index.d.ts.map +1 -1
  18. package/dest/global_variable_builder/index.js +2 -0
  19. package/dest/index.d.ts +2 -3
  20. package/dest/index.d.ts.map +1 -1
  21. package/dest/index.js +1 -2
  22. package/dest/publisher/config.d.ts +53 -20
  23. package/dest/publisher/config.d.ts.map +1 -1
  24. package/dest/publisher/config.js +124 -39
  25. package/dest/publisher/index.d.ts +2 -1
  26. package/dest/publisher/index.d.ts.map +1 -1
  27. package/dest/publisher/l1_tx_failed_store/factory.d.ts +11 -0
  28. package/dest/publisher/l1_tx_failed_store/factory.d.ts.map +1 -0
  29. package/dest/publisher/l1_tx_failed_store/factory.js +22 -0
  30. package/dest/publisher/l1_tx_failed_store/failed_tx_store.d.ts +58 -0
  31. package/dest/publisher/l1_tx_failed_store/failed_tx_store.d.ts.map +1 -0
  32. package/dest/publisher/l1_tx_failed_store/failed_tx_store.js +1 -0
  33. package/dest/publisher/l1_tx_failed_store/file_store_failed_tx_store.d.ts +15 -0
  34. package/dest/publisher/l1_tx_failed_store/file_store_failed_tx_store.d.ts.map +1 -0
  35. package/dest/publisher/l1_tx_failed_store/file_store_failed_tx_store.js +34 -0
  36. package/dest/publisher/l1_tx_failed_store/index.d.ts +4 -0
  37. package/dest/publisher/l1_tx_failed_store/index.d.ts.map +1 -0
  38. package/dest/publisher/l1_tx_failed_store/index.js +2 -0
  39. package/dest/publisher/sequencer-publisher-factory.d.ts +15 -8
  40. package/dest/publisher/sequencer-publisher-factory.d.ts.map +1 -1
  41. package/dest/publisher/sequencer-publisher-factory.js +28 -4
  42. package/dest/publisher/sequencer-publisher-metrics.d.ts +3 -3
  43. package/dest/publisher/sequencer-publisher-metrics.d.ts.map +1 -1
  44. package/dest/publisher/sequencer-publisher-metrics.js +23 -86
  45. package/dest/publisher/sequencer-publisher.d.ts +114 -80
  46. package/dest/publisher/sequencer-publisher.d.ts.map +1 -1
  47. package/dest/publisher/sequencer-publisher.js +1010 -244
  48. package/dest/sequencer/chain_state_overrides.d.ts +25 -0
  49. package/dest/sequencer/chain_state_overrides.d.ts.map +1 -0
  50. package/dest/sequencer/chain_state_overrides.js +39 -0
  51. package/dest/sequencer/checkpoint_proposal_job.d.ts +138 -0
  52. package/dest/sequencer/checkpoint_proposal_job.d.ts.map +1 -0
  53. package/dest/sequencer/checkpoint_proposal_job.js +1665 -0
  54. package/dest/sequencer/checkpoint_proposal_job_metrics.d.ts +34 -0
  55. package/dest/sequencer/checkpoint_proposal_job_metrics.d.ts.map +1 -0
  56. package/dest/sequencer/checkpoint_proposal_job_metrics.js +72 -0
  57. package/dest/sequencer/checkpoint_voter.d.ts +34 -0
  58. package/dest/sequencer/checkpoint_voter.d.ts.map +1 -0
  59. package/dest/sequencer/checkpoint_voter.js +106 -0
  60. package/dest/sequencer/config.d.ts +3 -2
  61. package/dest/sequencer/config.d.ts.map +1 -1
  62. package/dest/sequencer/events.d.ts +52 -0
  63. package/dest/sequencer/events.d.ts.map +1 -0
  64. package/dest/sequencer/events.js +1 -0
  65. package/dest/sequencer/index.d.ts +4 -2
  66. package/dest/sequencer/index.d.ts.map +1 -1
  67. package/dest/sequencer/index.js +3 -1
  68. package/dest/sequencer/metrics.d.ts +42 -7
  69. package/dest/sequencer/metrics.d.ts.map +1 -1
  70. package/dest/sequencer/metrics.js +241 -72
  71. package/dest/sequencer/sequencer.d.ts +146 -135
  72. package/dest/sequencer/sequencer.d.ts.map +1 -1
  73. package/dest/sequencer/sequencer.js +841 -661
  74. package/dest/sequencer/timetable.d.ts +67 -16
  75. package/dest/sequencer/timetable.d.ts.map +1 -1
  76. package/dest/sequencer/timetable.js +158 -64
  77. package/dest/sequencer/types.d.ts +3 -0
  78. package/dest/sequencer/types.d.ts.map +1 -0
  79. package/dest/sequencer/types.js +1 -0
  80. package/dest/sequencer/utils.d.ts +14 -8
  81. package/dest/sequencer/utils.d.ts.map +1 -1
  82. package/dest/sequencer/utils.js +7 -4
  83. package/dest/test/index.d.ts +6 -7
  84. package/dest/test/index.d.ts.map +1 -1
  85. package/dest/test/mock_checkpoint_builder.d.ts +95 -0
  86. package/dest/test/mock_checkpoint_builder.d.ts.map +1 -0
  87. package/dest/test/mock_checkpoint_builder.js +231 -0
  88. package/dest/test/utils.d.ts +53 -0
  89. package/dest/test/utils.d.ts.map +1 -0
  90. package/dest/test/utils.js +105 -0
  91. package/package.json +31 -30
  92. package/src/client/sequencer-client.ts +102 -62
  93. package/src/config.ts +132 -59
  94. package/src/global_variable_builder/README.md +44 -0
  95. package/src/global_variable_builder/fee_predictor.ts +172 -0
  96. package/src/global_variable_builder/fee_provider.ts +75 -0
  97. package/src/global_variable_builder/global_builder.ts +64 -96
  98. package/src/global_variable_builder/index.ts +3 -1
  99. package/src/index.ts +1 -7
  100. package/src/publisher/config.ts +166 -51
  101. package/src/publisher/index.ts +3 -0
  102. package/src/publisher/l1_tx_failed_store/factory.ts +32 -0
  103. package/src/publisher/l1_tx_failed_store/failed_tx_store.ts +57 -0
  104. package/src/publisher/l1_tx_failed_store/file_store_failed_tx_store.ts +46 -0
  105. package/src/publisher/l1_tx_failed_store/index.ts +3 -0
  106. package/src/publisher/sequencer-publisher-factory.ts +43 -13
  107. package/src/publisher/sequencer-publisher-metrics.ts +19 -71
  108. package/src/publisher/sequencer-publisher.ts +763 -325
  109. package/src/sequencer/README.md +600 -0
  110. package/src/sequencer/chain_state_overrides.ts +87 -0
  111. package/src/sequencer/checkpoint_proposal_job.ts +1498 -0
  112. package/src/sequencer/checkpoint_proposal_job_metrics.ts +128 -0
  113. package/src/sequencer/checkpoint_voter.ts +119 -0
  114. package/src/sequencer/config.ts +2 -1
  115. package/src/sequencer/events.ts +32 -0
  116. package/src/sequencer/index.ts +3 -1
  117. package/src/sequencer/metrics.ts +302 -83
  118. package/src/sequencer/sequencer.ts +641 -863
  119. package/src/sequencer/timetable.ts +188 -81
  120. package/src/sequencer/types.ts +6 -0
  121. package/src/sequencer/utils.ts +18 -9
  122. package/src/test/index.ts +5 -6
  123. package/src/test/mock_checkpoint_builder.ts +323 -0
  124. package/src/test/utils.ts +185 -0
  125. package/dest/sequencer/block_builder.d.ts +0 -27
  126. package/dest/sequencer/block_builder.d.ts.map +0 -1
  127. package/dest/sequencer/block_builder.js +0 -134
  128. package/dest/tx_validator/nullifier_cache.d.ts +0 -14
  129. package/dest/tx_validator/nullifier_cache.d.ts.map +0 -1
  130. package/dest/tx_validator/nullifier_cache.js +0 -24
  131. package/dest/tx_validator/tx_validator_factory.d.ts +0 -17
  132. package/dest/tx_validator/tx_validator_factory.d.ts.map +0 -1
  133. package/dest/tx_validator/tx_validator_factory.js +0 -53
  134. package/src/sequencer/block_builder.ts +0 -222
  135. package/src/tx_validator/nullifier_cache.ts +0 -30
  136. package/src/tx_validator/tx_validator_factory.ts +0 -132
@@ -0,0 +1,1665 @@
1
+ function _ts_add_disposable_resource(env, value, async) {
2
+ if (value !== null && value !== void 0) {
3
+ if (typeof value !== "object" && typeof value !== "function") throw new TypeError("Object expected.");
4
+ var dispose, inner;
5
+ if (async) {
6
+ if (!Symbol.asyncDispose) throw new TypeError("Symbol.asyncDispose is not defined.");
7
+ dispose = value[Symbol.asyncDispose];
8
+ }
9
+ if (dispose === void 0) {
10
+ if (!Symbol.dispose) throw new TypeError("Symbol.dispose is not defined.");
11
+ dispose = value[Symbol.dispose];
12
+ if (async) inner = dispose;
13
+ }
14
+ if (typeof dispose !== "function") throw new TypeError("Object not disposable.");
15
+ if (inner) dispose = function() {
16
+ try {
17
+ inner.call(this);
18
+ } catch (e) {
19
+ return Promise.reject(e);
20
+ }
21
+ };
22
+ env.stack.push({
23
+ value: value,
24
+ dispose: dispose,
25
+ async: async
26
+ });
27
+ } else if (async) {
28
+ env.stack.push({
29
+ async: true
30
+ });
31
+ }
32
+ return value;
33
+ }
34
+ function _ts_dispose_resources(env) {
35
+ var _SuppressedError = typeof SuppressedError === "function" ? SuppressedError : function(error, suppressed, message) {
36
+ var e = new Error(message);
37
+ return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
38
+ };
39
+ return (_ts_dispose_resources = function _ts_dispose_resources(env) {
40
+ function fail(e) {
41
+ env.error = env.hasError ? new _SuppressedError(e, env.error, "An error was suppressed during disposal.") : e;
42
+ env.hasError = true;
43
+ }
44
+ var r, s = 0;
45
+ function next() {
46
+ while(r = env.stack.pop()){
47
+ try {
48
+ if (!r.async && s === 1) return s = 0, env.stack.push(r), Promise.resolve().then(next);
49
+ if (r.dispose) {
50
+ var result = r.dispose.call(r.value);
51
+ if (r.async) return s |= 2, Promise.resolve(result).then(next, function(e) {
52
+ fail(e);
53
+ return next();
54
+ });
55
+ } else s |= 1;
56
+ } catch (e) {
57
+ fail(e);
58
+ }
59
+ }
60
+ if (s === 1) return env.hasError ? Promise.reject(env.error) : Promise.resolve();
61
+ if (env.hasError) throw env.error;
62
+ }
63
+ return next();
64
+ })(env);
65
+ }
66
+ function applyDecs2203RFactory() {
67
+ function createAddInitializerMethod(initializers, decoratorFinishedRef) {
68
+ return function addInitializer(initializer) {
69
+ assertNotFinished(decoratorFinishedRef, "addInitializer");
70
+ assertCallable(initializer, "An initializer");
71
+ initializers.push(initializer);
72
+ };
73
+ }
74
+ function memberDec(dec, name, desc, initializers, kind, isStatic, isPrivate, metadata, value) {
75
+ var kindStr;
76
+ switch(kind){
77
+ case 1:
78
+ kindStr = "accessor";
79
+ break;
80
+ case 2:
81
+ kindStr = "method";
82
+ break;
83
+ case 3:
84
+ kindStr = "getter";
85
+ break;
86
+ case 4:
87
+ kindStr = "setter";
88
+ break;
89
+ default:
90
+ kindStr = "field";
91
+ }
92
+ var ctx = {
93
+ kind: kindStr,
94
+ name: isPrivate ? "#" + name : name,
95
+ static: isStatic,
96
+ private: isPrivate,
97
+ metadata: metadata
98
+ };
99
+ var decoratorFinishedRef = {
100
+ v: false
101
+ };
102
+ ctx.addInitializer = createAddInitializerMethod(initializers, decoratorFinishedRef);
103
+ var get, set;
104
+ if (kind === 0) {
105
+ if (isPrivate) {
106
+ get = desc.get;
107
+ set = desc.set;
108
+ } else {
109
+ get = function() {
110
+ return this[name];
111
+ };
112
+ set = function(v) {
113
+ this[name] = v;
114
+ };
115
+ }
116
+ } else if (kind === 2) {
117
+ get = function() {
118
+ return desc.value;
119
+ };
120
+ } else {
121
+ if (kind === 1 || kind === 3) {
122
+ get = function() {
123
+ return desc.get.call(this);
124
+ };
125
+ }
126
+ if (kind === 1 || kind === 4) {
127
+ set = function(v) {
128
+ desc.set.call(this, v);
129
+ };
130
+ }
131
+ }
132
+ ctx.access = get && set ? {
133
+ get: get,
134
+ set: set
135
+ } : get ? {
136
+ get: get
137
+ } : {
138
+ set: set
139
+ };
140
+ try {
141
+ return dec(value, ctx);
142
+ } finally{
143
+ decoratorFinishedRef.v = true;
144
+ }
145
+ }
146
+ function assertNotFinished(decoratorFinishedRef, fnName) {
147
+ if (decoratorFinishedRef.v) {
148
+ throw new Error("attempted to call " + fnName + " after decoration was finished");
149
+ }
150
+ }
151
+ function assertCallable(fn, hint) {
152
+ if (typeof fn !== "function") {
153
+ throw new TypeError(hint + " must be a function");
154
+ }
155
+ }
156
+ function assertValidReturnValue(kind, value) {
157
+ var type = typeof value;
158
+ if (kind === 1) {
159
+ if (type !== "object" || value === null) {
160
+ throw new TypeError("accessor decorators must return an object with get, set, or init properties or void 0");
161
+ }
162
+ if (value.get !== undefined) {
163
+ assertCallable(value.get, "accessor.get");
164
+ }
165
+ if (value.set !== undefined) {
166
+ assertCallable(value.set, "accessor.set");
167
+ }
168
+ if (value.init !== undefined) {
169
+ assertCallable(value.init, "accessor.init");
170
+ }
171
+ } else if (type !== "function") {
172
+ var hint;
173
+ if (kind === 0) {
174
+ hint = "field";
175
+ } else if (kind === 10) {
176
+ hint = "class";
177
+ } else {
178
+ hint = "method";
179
+ }
180
+ throw new TypeError(hint + " decorators must return a function or void 0");
181
+ }
182
+ }
183
+ function applyMemberDec(ret, base, decInfo, name, kind, isStatic, isPrivate, initializers, metadata) {
184
+ var decs = decInfo[0];
185
+ var desc, init, value;
186
+ if (isPrivate) {
187
+ if (kind === 0 || kind === 1) {
188
+ desc = {
189
+ get: decInfo[3],
190
+ set: decInfo[4]
191
+ };
192
+ } else if (kind === 3) {
193
+ desc = {
194
+ get: decInfo[3]
195
+ };
196
+ } else if (kind === 4) {
197
+ desc = {
198
+ set: decInfo[3]
199
+ };
200
+ } else {
201
+ desc = {
202
+ value: decInfo[3]
203
+ };
204
+ }
205
+ } else if (kind !== 0) {
206
+ desc = Object.getOwnPropertyDescriptor(base, name);
207
+ }
208
+ if (kind === 1) {
209
+ value = {
210
+ get: desc.get,
211
+ set: desc.set
212
+ };
213
+ } else if (kind === 2) {
214
+ value = desc.value;
215
+ } else if (kind === 3) {
216
+ value = desc.get;
217
+ } else if (kind === 4) {
218
+ value = desc.set;
219
+ }
220
+ var newValue, get, set;
221
+ if (typeof decs === "function") {
222
+ newValue = memberDec(decs, name, desc, initializers, kind, isStatic, isPrivate, metadata, value);
223
+ if (newValue !== void 0) {
224
+ assertValidReturnValue(kind, newValue);
225
+ if (kind === 0) {
226
+ init = newValue;
227
+ } else if (kind === 1) {
228
+ init = newValue.init;
229
+ get = newValue.get || value.get;
230
+ set = newValue.set || value.set;
231
+ value = {
232
+ get: get,
233
+ set: set
234
+ };
235
+ } else {
236
+ value = newValue;
237
+ }
238
+ }
239
+ } else {
240
+ for(var i = decs.length - 1; i >= 0; i--){
241
+ var dec = decs[i];
242
+ newValue = memberDec(dec, name, desc, initializers, kind, isStatic, isPrivate, metadata, value);
243
+ if (newValue !== void 0) {
244
+ assertValidReturnValue(kind, newValue);
245
+ var newInit;
246
+ if (kind === 0) {
247
+ newInit = newValue;
248
+ } else if (kind === 1) {
249
+ newInit = newValue.init;
250
+ get = newValue.get || value.get;
251
+ set = newValue.set || value.set;
252
+ value = {
253
+ get: get,
254
+ set: set
255
+ };
256
+ } else {
257
+ value = newValue;
258
+ }
259
+ if (newInit !== void 0) {
260
+ if (init === void 0) {
261
+ init = newInit;
262
+ } else if (typeof init === "function") {
263
+ init = [
264
+ init,
265
+ newInit
266
+ ];
267
+ } else {
268
+ init.push(newInit);
269
+ }
270
+ }
271
+ }
272
+ }
273
+ }
274
+ if (kind === 0 || kind === 1) {
275
+ if (init === void 0) {
276
+ init = function(instance, init) {
277
+ return init;
278
+ };
279
+ } else if (typeof init !== "function") {
280
+ var ownInitializers = init;
281
+ init = function(instance, init) {
282
+ var value = init;
283
+ for(var i = 0; i < ownInitializers.length; i++){
284
+ value = ownInitializers[i].call(instance, value);
285
+ }
286
+ return value;
287
+ };
288
+ } else {
289
+ var originalInitializer = init;
290
+ init = function(instance, init) {
291
+ return originalInitializer.call(instance, init);
292
+ };
293
+ }
294
+ ret.push(init);
295
+ }
296
+ if (kind !== 0) {
297
+ if (kind === 1) {
298
+ desc.get = value.get;
299
+ desc.set = value.set;
300
+ } else if (kind === 2) {
301
+ desc.value = value;
302
+ } else if (kind === 3) {
303
+ desc.get = value;
304
+ } else if (kind === 4) {
305
+ desc.set = value;
306
+ }
307
+ if (isPrivate) {
308
+ if (kind === 1) {
309
+ ret.push(function(instance, args) {
310
+ return value.get.call(instance, args);
311
+ });
312
+ ret.push(function(instance, args) {
313
+ return value.set.call(instance, args);
314
+ });
315
+ } else if (kind === 2) {
316
+ ret.push(value);
317
+ } else {
318
+ ret.push(function(instance, args) {
319
+ return value.call(instance, args);
320
+ });
321
+ }
322
+ } else {
323
+ Object.defineProperty(base, name, desc);
324
+ }
325
+ }
326
+ }
327
+ function applyMemberDecs(Class, decInfos, metadata) {
328
+ var ret = [];
329
+ var protoInitializers;
330
+ var staticInitializers;
331
+ var existingProtoNonFields = new Map();
332
+ var existingStaticNonFields = new Map();
333
+ for(var i = 0; i < decInfos.length; i++){
334
+ var decInfo = decInfos[i];
335
+ if (!Array.isArray(decInfo)) continue;
336
+ var kind = decInfo[1];
337
+ var name = decInfo[2];
338
+ var isPrivate = decInfo.length > 3;
339
+ var isStatic = kind >= 5;
340
+ var base;
341
+ var initializers;
342
+ if (isStatic) {
343
+ base = Class;
344
+ kind = kind - 5;
345
+ staticInitializers = staticInitializers || [];
346
+ initializers = staticInitializers;
347
+ } else {
348
+ base = Class.prototype;
349
+ protoInitializers = protoInitializers || [];
350
+ initializers = protoInitializers;
351
+ }
352
+ if (kind !== 0 && !isPrivate) {
353
+ var existingNonFields = isStatic ? existingStaticNonFields : existingProtoNonFields;
354
+ var existingKind = existingNonFields.get(name) || 0;
355
+ if (existingKind === true || existingKind === 3 && kind !== 4 || existingKind === 4 && kind !== 3) {
356
+ 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);
357
+ } else if (!existingKind && kind > 2) {
358
+ existingNonFields.set(name, kind);
359
+ } else {
360
+ existingNonFields.set(name, true);
361
+ }
362
+ }
363
+ applyMemberDec(ret, base, decInfo, name, kind, isStatic, isPrivate, initializers, metadata);
364
+ }
365
+ pushInitializers(ret, protoInitializers);
366
+ pushInitializers(ret, staticInitializers);
367
+ return ret;
368
+ }
369
+ function pushInitializers(ret, initializers) {
370
+ if (initializers) {
371
+ ret.push(function(instance) {
372
+ for(var i = 0; i < initializers.length; i++){
373
+ initializers[i].call(instance);
374
+ }
375
+ return instance;
376
+ });
377
+ }
378
+ }
379
+ function applyClassDecs(targetClass, classDecs, metadata) {
380
+ if (classDecs.length > 0) {
381
+ var initializers = [];
382
+ var newClass = targetClass;
383
+ var name = targetClass.name;
384
+ for(var i = classDecs.length - 1; i >= 0; i--){
385
+ var decoratorFinishedRef = {
386
+ v: false
387
+ };
388
+ try {
389
+ var nextNewClass = classDecs[i](newClass, {
390
+ kind: "class",
391
+ name: name,
392
+ addInitializer: createAddInitializerMethod(initializers, decoratorFinishedRef),
393
+ metadata
394
+ });
395
+ } finally{
396
+ decoratorFinishedRef.v = true;
397
+ }
398
+ if (nextNewClass !== undefined) {
399
+ assertValidReturnValue(10, nextNewClass);
400
+ newClass = nextNewClass;
401
+ }
402
+ }
403
+ return [
404
+ defineMetadata(newClass, metadata),
405
+ function() {
406
+ for(var i = 0; i < initializers.length; i++){
407
+ initializers[i].call(newClass);
408
+ }
409
+ }
410
+ ];
411
+ }
412
+ }
413
+ function defineMetadata(Class, metadata) {
414
+ return Object.defineProperty(Class, Symbol.metadata || Symbol.for("Symbol.metadata"), {
415
+ configurable: true,
416
+ enumerable: true,
417
+ value: metadata
418
+ });
419
+ }
420
+ return function applyDecs2203R(targetClass, memberDecs, classDecs, parentClass) {
421
+ if (parentClass !== void 0) {
422
+ var parentMetadata = parentClass[Symbol.metadata || Symbol.for("Symbol.metadata")];
423
+ }
424
+ var metadata = Object.create(parentMetadata === void 0 ? null : parentMetadata);
425
+ var e = applyMemberDecs(targetClass, memberDecs, metadata);
426
+ if (!classDecs.length) defineMetadata(targetClass, metadata);
427
+ return {
428
+ e: e,
429
+ get c () {
430
+ return applyClassDecs(targetClass, classDecs, metadata);
431
+ }
432
+ };
433
+ };
434
+ }
435
+ function _apply_decs_2203_r(targetClass, memberDecs, classDecs, parentClass) {
436
+ return (_apply_decs_2203_r = applyDecs2203RFactory())(targetClass, memberDecs, classDecs, parentClass);
437
+ }
438
+ var _dec, _dec1, _dec2, _dec3, _dec4, _dec5, _dec6, _dec7, _initProto;
439
+ import { BlockNumber, CheckpointNumber, IndexWithinCheckpoint } from '@aztec/foundation/branded-types';
440
+ import { randomInt } from '@aztec/foundation/crypto/random';
441
+ import { flipSignature, generateRecoverableSignature, generateUnrecoverableSignature } from '@aztec/foundation/crypto/secp256k1-signer';
442
+ import { filter } from '@aztec/foundation/iterator';
443
+ import { createLogger } from '@aztec/foundation/log';
444
+ import { retryUntil } from '@aztec/foundation/retry';
445
+ import { sleep, sleepUntil } from '@aztec/foundation/sleep';
446
+ import { Timer } from '@aztec/foundation/timer';
447
+ import { isErrorClass, unfreeze } from '@aztec/foundation/types';
448
+ import { CommitteeAttestationsAndSigners, MaliciousCommitteeAttestationsAndSigners } from '@aztec/stdlib/block';
449
+ import { validateCheckpoint } from '@aztec/stdlib/checkpoint';
450
+ import { computeQuorum, getSlotStartBuildTimestamp, getTimestampForSlot } from '@aztec/stdlib/epoch-helpers';
451
+ import { Gas } from '@aztec/stdlib/gas';
452
+ import { InsufficientValidTxsError } from '@aztec/stdlib/interfaces/server';
453
+ import { computeInHashFromL1ToL2Messages } from '@aztec/stdlib/messaging';
454
+ import { orderAttestations, trimAttestations } from '@aztec/stdlib/p2p';
455
+ import { AttestationTimeoutError } from '@aztec/stdlib/validators';
456
+ import { Attributes, trackSpan } from '@aztec/telemetry-client';
457
+ import { DutyAlreadySignedError, SlashingProtectionError } from '@aztec/validator-ha-signer/errors';
458
+ import { buildPipelinedParentSimulationOverridesPlan, buildSubmissionSimulationOverridesPlan } from './chain_state_overrides.js';
459
+ import { CheckpointVoter } from './checkpoint_voter.js';
460
+ import { SequencerInterruptedError } from './errors.js';
461
+ import { SequencerState } from './utils.js';
462
+ /** How much time to sleep while waiting for min transactions to accumulate for a block */ const TXS_POLLING_MS = 500;
463
+ _dec = trackSpan('CheckpointProposalJob.execute'), _dec1 = trackSpan('CheckpointProposalJob.proposeCheckpoint', function() {
464
+ return {
465
+ // nullish operator needed for tests
466
+ [Attributes.COINBASE]: this.validatorClient.getCoinbaseForAttestor(this.attestorAddress)?.toString(),
467
+ [Attributes.SLOT_NUMBER]: this.targetSlot
468
+ };
469
+ }), _dec2 = trackSpan('CheckpointProposalJob.buildBlocksForCheckpoint'), _dec3 = trackSpan('CheckpointProposalJob.waitUntilNextSubslot'), _dec4 = trackSpan('CheckpointProposalJob.buildSingleBlock'), _dec5 = trackSpan('CheckpointProposalJob.waitForMinTxs'), _dec6 = trackSpan('CheckpointProposalJob.waitForAttestations'), _dec7 = trackSpan('CheckpointProposalJob.waitUntilTimeInSlot');
470
+ /**
471
+ * Handles the execution of a checkpoint proposal after the initial preparation phase.
472
+ * This includes building blocks, collecting attestations, and publishing the checkpoint to L1,
473
+ * as well as enqueueing votes for slashing and governance proposals. This class is created from
474
+ * the Sequencer once the check for being the proposer for the slot has succeeded.
475
+ */ export class CheckpointProposalJob {
476
+ slotNow;
477
+ targetSlot;
478
+ targetEpoch;
479
+ checkpointNumber;
480
+ syncedToBlockNumber;
481
+ proposer;
482
+ publisher;
483
+ attestorAddress;
484
+ invalidateCheckpoint;
485
+ validatorClient;
486
+ globalsBuilder;
487
+ p2pClient;
488
+ worldState;
489
+ l1ToL2MessageSource;
490
+ l2BlockSource;
491
+ checkpointsBuilder;
492
+ blockSink;
493
+ l1Constants;
494
+ signatureContext;
495
+ config;
496
+ timetable;
497
+ slasherClient;
498
+ epochCache;
499
+ dateProvider;
500
+ metrics;
501
+ checkpointMetrics;
502
+ eventEmitter;
503
+ setStateFn;
504
+ tracer;
505
+ proposedCheckpointData;
506
+ static{
507
+ ({ e: [_initProto] } = _apply_decs_2203_r(this, [
508
+ [
509
+ _dec,
510
+ 2,
511
+ "execute"
512
+ ],
513
+ [
514
+ _dec1,
515
+ 2,
516
+ "proposeCheckpoint"
517
+ ],
518
+ [
519
+ _dec2,
520
+ 2,
521
+ "buildBlocksForCheckpoint"
522
+ ],
523
+ [
524
+ _dec3,
525
+ 2,
526
+ "waitUntilNextSubslot"
527
+ ],
528
+ [
529
+ _dec4,
530
+ 2,
531
+ "buildSingleBlock"
532
+ ],
533
+ [
534
+ _dec5,
535
+ 2,
536
+ "waitForMinTxs"
537
+ ],
538
+ [
539
+ _dec6,
540
+ 2,
541
+ "waitForAttestations"
542
+ ],
543
+ [
544
+ _dec7,
545
+ 2,
546
+ "waitUntilTimeInSlot"
547
+ ]
548
+ ], []));
549
+ }
550
+ log;
551
+ checkpointEventLog;
552
+ /** Tracks the fire-and-forget L1 submission promise so it can be awaited during shutdown. */ pendingL1Submission;
553
+ /** Pipelined parent chain state used while building and later submitting this checkpoint. */ pipelinedParentSimulationOverridesPlan;
554
+ getSignatureContext() {
555
+ return this.signatureContext;
556
+ }
557
+ constructor(slotNow, targetSlot, targetEpoch, checkpointNumber, syncedToBlockNumber, // TODO(palla/mbps): Can we remove the proposer in favor of attestorAddress? Need to check fisherman-node flows.
558
+ proposer, publisher, attestorAddress, invalidateCheckpoint, validatorClient, globalsBuilder, p2pClient, worldState, l1ToL2MessageSource, l2BlockSource, checkpointsBuilder, blockSink, l1Constants, signatureContext, config, timetable, slasherClient, epochCache, dateProvider, metrics, checkpointMetrics, eventEmitter, setStateFn, tracer, bindings, proposedCheckpointData){
559
+ this.slotNow = slotNow;
560
+ this.targetSlot = targetSlot;
561
+ this.targetEpoch = targetEpoch;
562
+ this.checkpointNumber = checkpointNumber;
563
+ this.syncedToBlockNumber = syncedToBlockNumber;
564
+ this.proposer = proposer;
565
+ this.publisher = publisher;
566
+ this.attestorAddress = attestorAddress;
567
+ this.invalidateCheckpoint = invalidateCheckpoint;
568
+ this.validatorClient = validatorClient;
569
+ this.globalsBuilder = globalsBuilder;
570
+ this.p2pClient = p2pClient;
571
+ this.worldState = worldState;
572
+ this.l1ToL2MessageSource = l1ToL2MessageSource;
573
+ this.l2BlockSource = l2BlockSource;
574
+ this.checkpointsBuilder = checkpointsBuilder;
575
+ this.blockSink = blockSink;
576
+ this.l1Constants = l1Constants;
577
+ this.signatureContext = signatureContext;
578
+ this.config = config;
579
+ this.timetable = timetable;
580
+ this.slasherClient = slasherClient;
581
+ this.epochCache = epochCache;
582
+ this.dateProvider = dateProvider;
583
+ this.metrics = metrics;
584
+ this.checkpointMetrics = checkpointMetrics;
585
+ this.eventEmitter = eventEmitter;
586
+ this.setStateFn = setStateFn;
587
+ this.tracer = tracer;
588
+ this.proposedCheckpointData = proposedCheckpointData;
589
+ _initProto(this);
590
+ this.log = createLogger('sequencer:checkpoint-proposal', {
591
+ ...bindings,
592
+ instanceId: `slot-${this.slotNow}`
593
+ });
594
+ this.checkpointEventLog = createLogger('sequencer:checkpoint-events', {
595
+ ...bindings,
596
+ instanceId: `slot-${this.slotNow}`
597
+ });
598
+ }
599
+ /** Awaits the pending L1 submission if one is in progress. Call during shutdown. */ async awaitPendingSubmission() {
600
+ this.log.info('Awaiting pending L1 payload submission');
601
+ await this.pendingL1Submission;
602
+ }
603
+ logCheckpointEvent(eventName, message, fields) {
604
+ this.checkpointEventLog.debug(message, {
605
+ eventName: `sequencer-checkpoint-${eventName}`,
606
+ ...fields
607
+ });
608
+ }
609
+ /**
610
+ * Executes the checkpoint proposal job.
611
+ * Builds blocks, assembles checkpoint, and broadcasts the proposal (blocking).
612
+ * Attestation collection, signing, and L1 submission are backgrounded so the
613
+ * work loop can return to IDLE immediately for consecutive slot proposals.
614
+ * Returns the built checkpoint if successful, undefined otherwise.
615
+ */ async execute() {
616
+ // Enqueue governance and slashing votes (returns promises that will be awaited later)
617
+ // In fisherman mode, we simulate slashing but don't actually publish to L1
618
+ // These are constant for the whole slot, so we only enqueue them once
619
+ const votesPromises = new CheckpointVoter(this.targetSlot, this.publisher, this.attestorAddress, this.validatorClient, this.slasherClient, this.l1Constants, this.config, this.metrics, this.log).enqueueVotes();
620
+ // Build blocks, assemble checkpoint, and broadcast proposal (BLOCKING).
621
+ // Returns after broadcast — attestation collection is deferred.
622
+ const broadcast = await this.proposeCheckpoint();
623
+ if (!broadcast) {
624
+ await Promise.all(votesPromises);
625
+ // Still submit votes even without a checkpoint
626
+ if (!this.config.fishermanMode) {
627
+ this.pendingL1Submission = this.publisher.sendRequestsAt(this.dateProvider.nowAsDate()).then(()=>{});
628
+ }
629
+ return undefined;
630
+ }
631
+ const { checkpoint } = broadcast;
632
+ this.metrics.recordCheckpointProposalSuccess();
633
+ // Do not post anything to L1 if we are fishermen, but do perform L1 fee analysis
634
+ if (this.config.fishermanMode) {
635
+ await this.handleCheckpointEndAsFisherman(checkpoint);
636
+ return checkpoint;
637
+ }
638
+ // Background the attestation → signing → L1 pipeline so the work loop is unblocked
639
+ this.pendingL1Submission = this.waitForAttestationsAndEnqueueSubmissionAsync(broadcast, votesPromises);
640
+ // Return the built checkpoint immediately — the work loop is now unblocked
641
+ return checkpoint;
642
+ }
643
+ /**
644
+ * Background pipeline: collects attestations, signs them, enqueues the checkpoint, and submits to L1.
645
+ * Runs as a fire-and-forget task stored in `pendingL1Submission` so the work loop is unblocked.
646
+ */ async waitForAttestationsAndEnqueueSubmissionAsync(broadcast, votesPromises) {
647
+ const { checkpoint } = broadcast;
648
+ const isPipelining = this.epochCache.isProposerPipeliningEnabled();
649
+ try {
650
+ // Wait for all votes actions, enqueued at the beginning, to resolve
651
+ await Promise.all(votesPromises);
652
+ // Try to collect attestations from the committee
653
+ const signedAttestations = await this.getSignedCommitteeAttestations(broadcast);
654
+ // If pipelining, wait for the previous checkpoint to land on L1 before submitting,
655
+ // so we can check it matches the proposed checkpoint we used as parent, and has valid attestations.
656
+ if (signedAttestations && (!isPipelining || await this.waitForValidParentCheckpointOnL1())) {
657
+ await this.enqueueCheckpointForSubmission({
658
+ checkpoint,
659
+ ...signedAttestations
660
+ });
661
+ }
662
+ // If we failed to collect attestations, at least check if we need to issue an invalidation
663
+ // Note that if we are not pipelining, we enqueued the invalidation at the beginning
664
+ if (!signedAttestations && isPipelining && await this.waitForSyncedL2SlotNumber(this.slotNow)) {
665
+ const validationStatus = await this.l2BlockSource.getPendingChainValidationStatus();
666
+ if (!validationStatus.valid) {
667
+ this.log.warn(`Checkpoint ${validationStatus.checkpoint.checkpointNumber} has invalid attestations, enqueuing invalidation in spite of attestation collection failure`, {
668
+ checkpoint: validationStatus.checkpoint,
669
+ reason: validationStatus.reason
670
+ });
671
+ await this.enqueueInvalidation(validationStatus);
672
+ }
673
+ }
674
+ // Send whatever was enqueued: votes + (propose | invalidation | nothing).
675
+ // Compute the earliest time to submit: pipeline slot start when pipelining, now otherwise.
676
+ const submitAfter = isPipelining ? new Date(Number(getTimestampForSlot(this.targetSlot, this.l1Constants)) * 1000) : new Date(this.dateProvider.now());
677
+ const l1Response = await this.publisher.sendRequestsAt(submitAfter);
678
+ const proposedAction = l1Response?.successfulActions.find((a)=>a === 'propose');
679
+ if (proposedAction) {
680
+ this.logCheckpointEvent('published', `Checkpoint published for slot ${this.targetSlot}`, {
681
+ slot: this.targetSlot,
682
+ checkpointNumber: this.checkpointNumber,
683
+ successfulActions: l1Response?.successfulActions,
684
+ sentActions: l1Response?.sentActions
685
+ });
686
+ this.eventEmitter.emit('checkpoint-published', {
687
+ checkpoint: this.checkpointNumber,
688
+ slot: this.targetSlot
689
+ });
690
+ const coinbase = checkpoint.header.coinbase;
691
+ await this.metrics.incFilledSlot(this.publisher.getSenderAddress().toString(), coinbase);
692
+ } else {
693
+ this.logCheckpointEvent('publish-failed', `Checkpoint publish failed for slot ${this.targetSlot}`, {
694
+ slot: this.targetSlot,
695
+ checkpointNumber: this.checkpointNumber,
696
+ successfulActions: l1Response?.successfulActions,
697
+ failedActions: l1Response?.failedActions,
698
+ sentActions: l1Response?.sentActions,
699
+ expiredActions: l1Response?.expiredActions,
700
+ reason: 'propose_action_not_successful'
701
+ });
702
+ this.log.warn(`Checkpoint publish failed for slot ${this.targetSlot}`, {
703
+ slot: this.targetSlot,
704
+ checkpointNumber: this.checkpointNumber,
705
+ successfulActions: l1Response?.successfulActions,
706
+ failedActions: l1Response?.failedActions,
707
+ sentActions: l1Response?.sentActions,
708
+ expiredActions: l1Response?.expiredActions,
709
+ reason: 'propose_action_not_successful'
710
+ });
711
+ this.eventEmitter.emit('checkpoint-publish-failed', {
712
+ ...l1Response,
713
+ slot: this.targetSlot
714
+ });
715
+ if (isPipelining) {
716
+ this.metrics.recordPipelineDiscard();
717
+ }
718
+ }
719
+ } catch (err) {
720
+ if (err instanceof SequencerInterruptedError) {
721
+ return;
722
+ }
723
+ this.logCheckpointEvent('publish-failed', `Checkpoint publish failed for slot ${this.targetSlot}`, {
724
+ slot: this.targetSlot,
725
+ checkpointNumber: this.checkpointNumber,
726
+ reason: err instanceof Error ? err.message : String(err)
727
+ });
728
+ this.log.error(`Background attestation/L1 pipeline failed for slot ${this.targetSlot}`, err, {
729
+ slot: this.targetSlot,
730
+ checkpointNumber: this.checkpointNumber,
731
+ reason: err instanceof Error ? err.message : String(err)
732
+ });
733
+ this.eventEmitter.emit('checkpoint-publish-failed', {
734
+ slot: this.targetSlot
735
+ });
736
+ if (isPipelining) {
737
+ this.metrics.recordPipelineDiscard();
738
+ }
739
+ }
740
+ }
741
+ /** Enqueues the checkpoint for L1 submission. Called after pipeline sleep in execute(). */ async enqueueCheckpointForSubmission(result) {
742
+ const { checkpoint, attestations, attestationsSignature } = result;
743
+ this.setStateFn(SequencerState.PUBLISHING_CHECKPOINT, this.targetSlot);
744
+ const aztecSlotDuration = this.l1Constants.slotDuration;
745
+ const submissionSlotStart = Number(getTimestampForSlot(this.targetSlot, this.l1Constants));
746
+ const txTimeoutAt = new Date((submissionSlotStart + aztecSlotDuration) * 1000);
747
+ // If we have been configured to potentially skip publishing checkpoint then roll the dice here
748
+ if (this.config.skipPublishingCheckpointsPercent !== undefined && this.config.skipPublishingCheckpointsPercent > 0) {
749
+ const roll = Math.max(0, randomInt(100));
750
+ if (roll < this.config.skipPublishingCheckpointsPercent) {
751
+ this.log.warn(`Skipping publishing proposal for checkpoint ${checkpoint.number}. Configured percentage: ${this.config.skipPublishingCheckpointsPercent}, generated value: ${roll}`);
752
+ return;
753
+ }
754
+ }
755
+ const isPipelining = this.epochCache.isProposerPipeliningEnabled();
756
+ const submissionSimulationOverridesPlan = buildSubmissionSimulationOverridesPlan({
757
+ pipelinedParentPlan: this.pipelinedParentSimulationOverridesPlan,
758
+ invalidateToPendingCheckpointNumber: this.invalidateCheckpoint?.forcePendingCheckpointNumber,
759
+ lastArchiveRoot: checkpoint.header.lastArchiveRoot,
760
+ pipeliningEnabled: isPipelining
761
+ });
762
+ await this.publisher.enqueueProposeCheckpoint(checkpoint, attestations, attestationsSignature, {
763
+ txTimeoutAt,
764
+ ...submissionSimulationOverridesPlan ? {
765
+ simulationOverridesPlan: submissionSimulationOverridesPlan
766
+ } : {}
767
+ });
768
+ }
769
+ /**
770
+ * Wait until the archiver syncs past the given L2 slot number.
771
+ * The deadline is the end of `this.targetSlot`, beyond which any pipelined work would miss its
772
+ * L1 submission window and is no longer useful.
773
+ */ async waitForSyncedL2SlotNumber(waitForSlot) {
774
+ const targetSlotStart = Number(getTimestampForSlot(this.targetSlot, this.l1Constants));
775
+ const targetSlotEndMs = (targetSlotStart + this.l1Constants.slotDuration) * 1000;
776
+ const syncDelayTolerance = this.l1Constants.ethereumSlotDuration * 2 * 1000;
777
+ const timeoutSeconds = Math.max(0.1, (targetSlotEndMs + syncDelayTolerance - this.dateProvider.now()) / 1000);
778
+ try {
779
+ return await retryUntil(async ()=>{
780
+ const syncedSlot = await this.l2BlockSource.getSyncedL2SlotNumber();
781
+ return syncedSlot !== undefined && syncedSlot >= waitForSlot;
782
+ }, `archiver sync past slot ${waitForSlot}`, timeoutSeconds, 0.2);
783
+ } catch {
784
+ this.log.warn(`Archiver did not sync L1 past slot ${waitForSlot} before slot ${this.targetSlot} expired, discarding pipelined work`, {
785
+ checkpointNumber: this.checkpointNumber
786
+ });
787
+ this.emitPipelinedCheckpointDiscarded('archiver-sync-timeout');
788
+ return false;
789
+ }
790
+ }
791
+ /**
792
+ * Waits for the parent checkpoint to land on L1 before submitting a pipelined checkpoint.
793
+ * Polls until the archiver has synced L1 past the parent's slot, then verifies:
794
+ * - If we built on a proposed parent: it must have landed on L1 with matching hash and valid attestations.
795
+ * - If we built without a proposed parent: no new checkpoint must have appeared for that slot.
796
+ * If the parent has invalid attestations, enqueues an invalidation. Returns whether to proceed with the proposal.
797
+ */ async waitForValidParentCheckpointOnL1() {
798
+ const parentCheckpointNumber = CheckpointNumber(this.checkpointNumber - 1);
799
+ // Wait until archiver has synced L1 past the parent's slot (slotNow)
800
+ if (!await this.waitForSyncedL2SlotNumber(this.slotNow)) {
801
+ return false;
802
+ }
803
+ const tips = await this.l2BlockSource.getL2Tips();
804
+ const checkpointedNumber = tips.checkpointed.checkpoint.number;
805
+ // We built on top of a proposed checkpoint. Verify it landed on L1 as expected.
806
+ if (this.proposedCheckpointData) {
807
+ // After syncing from L1 we see the chain tip has invalid attestations. This means the parent checkpoint was posted
808
+ // with invalid attestations, or it built on top of something with invalid attestations and didnt invalidate them.
809
+ // Either way, we thought our parent would be valid, so we have to throw away our work. But at least we'll try and
810
+ // invalidate on L1 so we clean up the chain for the next proposer. And we'll slash them, but that's handled elsewhere.
811
+ const validationStatus = await this.l2BlockSource.getPendingChainValidationStatus();
812
+ if (!validationStatus.valid) {
813
+ this.log.warn(`Parent checkpoint ${parentCheckpointNumber} has invalid attestations, discarding pipelined work`, {
814
+ checkpointNumber: this.checkpointNumber,
815
+ reason: validationStatus.reason
816
+ });
817
+ this.emitPipelinedCheckpointDiscarded('parent-invalid-attestations');
818
+ await this.enqueueInvalidation(validationStatus);
819
+ return false;
820
+ }
821
+ // The pending chain is valid. But did the parent checkpoint land on L1 at all?
822
+ if (checkpointedNumber < parentCheckpointNumber) {
823
+ this.log.warn(`Parent checkpoint ${parentCheckpointNumber} did not land on L1, discarding pipelined work`, {
824
+ checkpointNumber: this.checkpointNumber,
825
+ checkpointedNumber
826
+ });
827
+ this.emitPipelinedCheckpointDiscarded('parent-not-on-l1');
828
+ return false;
829
+ }
830
+ // It landed. But is it the one we were expecting?
831
+ const expectedHash = this.proposedCheckpointData.header.hash().toString();
832
+ if (tips.checkpointed.checkpoint.hash !== expectedHash) {
833
+ this.log.warn(`Parent checkpoint ${parentCheckpointNumber} hash mismatch on L1, discarding pipelined work`, {
834
+ checkpointNumber: this.checkpointNumber,
835
+ expectedHash,
836
+ actualHash: tips.checkpointed.checkpoint.hash
837
+ });
838
+ this.emitPipelinedCheckpointDiscarded('parent-hash-mismatch');
839
+ return false;
840
+ }
841
+ return true;
842
+ } else {
843
+ // We didn't see a proposed checkpoint at build time, so we built on checkpointed parent from two slots ago.
844
+ // But if a new checkpoint for the previous slot appeared on L1 in the meantime, our checkpoint assumed the wrong parent,
845
+ // so we have to discard our work. This can happen if we're somehow cut off from p2p and fail to see the checkpoint
846
+ // proposal for the previous slot.
847
+ if (checkpointedNumber > parentCheckpointNumber) {
848
+ this.log.warn(`Unexpected checkpoint ${checkpointedNumber} landed on L1 after we built on top of parent ${parentCheckpointNumber}, discarding pipelined work`, {
849
+ checkpointNumber: this.checkpointNumber,
850
+ checkpointedNumber
851
+ });
852
+ this.emitPipelinedCheckpointDiscarded('unexpected-parent-appeared');
853
+ return false;
854
+ }
855
+ return true;
856
+ }
857
+ }
858
+ /** Emits the pipelined-checkpoint-discarded event and records the metric. */ emitPipelinedCheckpointDiscarded(reason) {
859
+ this.metrics.recordPipelineParentCheckpointMismatch(reason);
860
+ this.eventEmitter.emit('pipelined-checkpoint-discarded', {
861
+ slot: this.targetSlot,
862
+ checkpointNumber: this.checkpointNumber,
863
+ reason
864
+ });
865
+ }
866
+ /** Simulates and enqueues an invalidation request for the invalid parent checkpoint. */ async enqueueInvalidation(validationStatus) {
867
+ if (this.config.skipInvalidateBlockAsProposer) {
868
+ this.log.warn(`Skipping checkpoint invalidation as proposer due to test configuration`);
869
+ return;
870
+ }
871
+ const invalidateRequest = await this.publisher.simulateInvalidateCheckpoint(validationStatus);
872
+ if (invalidateRequest) {
873
+ const submissionSlotStart = Number(getTimestampForSlot(this.targetSlot, this.l1Constants));
874
+ const txTimeoutAt = new Date((submissionSlotStart + this.l1Constants.slotDuration) * 1000);
875
+ this.publisher.enqueueInvalidateCheckpoint(invalidateRequest, {
876
+ txTimeoutAt
877
+ });
878
+ } else {
879
+ this.log.info(`Invalidation simulation returned undefined, checkpoint may have been removed already`, {
880
+ checkpointNumber: this.checkpointNumber
881
+ });
882
+ }
883
+ }
884
+ async proposeCheckpoint() {
885
+ try {
886
+ const env = {
887
+ stack: [],
888
+ error: void 0,
889
+ hasError: false
890
+ };
891
+ try {
892
+ const now = this.dateProvider.now();
893
+ if (this.epochCache.isProposerPipeliningEnabled() && this.proposedCheckpointData) {
894
+ // Measure against the wall-clock slot whose build window we are currently using.
895
+ // In pipelining mode `targetSlot` is intentionally one slot ahead, which makes the
896
+ // target-slot boundary a full slot away from the actual build start time.
897
+ const slotBoundaryMs = Number(getTimestampForSlot(this.slotNow, this.l1Constants)) * 1000;
898
+ this.checkpointMetrics.recordPipelinedCheckpointBuildStartOffsetFromSlotBoundary(now - slotBoundaryMs);
899
+ }
900
+ this.checkpointMetrics.startCheckpointTiming(now);
901
+ // Get operator configured coinbase and fee recipient for this attestor
902
+ const coinbase = this.validatorClient.getCoinbaseForAttestor(this.attestorAddress);
903
+ const feeRecipient = this.validatorClient.getFeeRecipientForAttestor(this.attestorAddress);
904
+ // Start the checkpoint
905
+ this.setStateFn(SequencerState.INITIALIZING_CHECKPOINT, this.targetSlot);
906
+ this.logCheckpointEvent('slot-started', `Starting checkpoint proposal for slot ${this.targetSlot}`, {
907
+ buildSlot: this.slotNow,
908
+ submissionSlot: this.targetSlot,
909
+ slot: this.targetSlot,
910
+ checkpointNumber: this.checkpointNumber,
911
+ pipelining: this.epochCache.isProposerPipeliningEnabled(),
912
+ proposer: this.proposer?.toString(),
913
+ attestorAddress: this.attestorAddress.toString(),
914
+ publisherAddress: this.publisher.getSenderAddress().toString(),
915
+ coinbase: coinbase.toString()
916
+ });
917
+ this.metrics.incOpenSlot(this.targetSlot, this.proposer?.toString() ?? 'unknown');
918
+ // Enqueues checkpoint invalidation (constant for the whole slot)
919
+ if (this.invalidateCheckpoint && !this.config.skipInvalidateBlockAsProposer) {
920
+ this.publisher.enqueueInvalidateCheckpoint(this.invalidateCheckpoint);
921
+ }
922
+ // Create checkpoint builder for the slot.
923
+ // When pipelining, force the proposed checkpoint number and fee header to our parent so the
924
+ // fee computation sees the same chain tip that L1 will see once the previous pipelined checkpoint lands.
925
+ const isPipelining = this.epochCache.isProposerPipeliningEnabled();
926
+ this.pipelinedParentSimulationOverridesPlan = isPipelining ? await buildPipelinedParentSimulationOverridesPlan({
927
+ checkpointNumber: this.checkpointNumber,
928
+ proposedCheckpointData: this.proposedCheckpointData,
929
+ rollup: this.publisher.rollupContract,
930
+ log: this.log
931
+ }) : undefined;
932
+ const checkpointGlobalVariables = await this.globalsBuilder.buildCheckpointGlobalVariables(coinbase, feeRecipient, this.targetSlot, this.pipelinedParentSimulationOverridesPlan);
933
+ // Collect L1 to L2 messages for the checkpoint and compute their hash
934
+ const l1ToL2Messages = await this.l1ToL2MessageSource.getL1ToL2Messages(this.checkpointNumber);
935
+ const inHash = computeInHashFromL1ToL2Messages(l1ToL2Messages);
936
+ // Collect the out hashes of all the checkpoints before this one in the same epoch
937
+ const previousCheckpointOutHashes = (await this.l2BlockSource.getCheckpointsDataForEpoch(this.targetEpoch)).filter((c)=>c.checkpointNumber < this.checkpointNumber).map((c)=>c.checkpointOutHash);
938
+ // Get the fee asset price modifier from the oracle
939
+ const feeAssetPriceModifier = await this.publisher.getFeeAssetPriceModifier();
940
+ const fork = _ts_add_disposable_resource(env, await this.worldState.fork(this.syncedToBlockNumber, {
941
+ closeDelayMs: 12_000
942
+ }), true);
943
+ // Create checkpoint builder for the entire slot
944
+ const checkpointBuilder = await this.checkpointsBuilder.startCheckpoint(this.checkpointNumber, checkpointGlobalVariables, feeAssetPriceModifier, l1ToL2Messages, previousCheckpointOutHashes, fork, this.log.getBindings());
945
+ // Options for the validator client when creating block and checkpoint proposals
946
+ const blockProposalOptions = {
947
+ publishFullTxs: !!this.config.publishTxsWithProposals,
948
+ broadcastInvalidBlockProposal: this.config.broadcastInvalidBlockProposal
949
+ };
950
+ const checkpointProposalOptions = {
951
+ publishFullTxs: !!this.config.publishTxsWithProposals,
952
+ broadcastInvalidCheckpointProposal: this.config.broadcastInvalidBlockProposal
953
+ };
954
+ let blocksInCheckpoint = [];
955
+ let blockPendingBroadcast = undefined;
956
+ const checkpointBuildTimer = new Timer();
957
+ try {
958
+ // Main loop: build blocks for the checkpoint
959
+ const result = await this.buildBlocksForCheckpoint(checkpointBuilder, checkpointGlobalVariables.timestamp, inHash, blockProposalOptions);
960
+ blocksInCheckpoint = result.blocksInCheckpoint;
961
+ blockPendingBroadcast = result.blockPendingBroadcast;
962
+ } catch (err) {
963
+ // These errors are expected in HA mode, so we yield and let another HA node handle the slot
964
+ // The only distinction between the 2 errors is SlashingProtectionError throws when the payload is different,
965
+ // which is normal for block building (may have picked different txs)
966
+ if (this.handleHASigningError(err, 'Block proposal')) {
967
+ return undefined;
968
+ }
969
+ throw err;
970
+ }
971
+ if (blocksInCheckpoint.length === 0) {
972
+ this.logCheckpointEvent('build-failed', `Checkpoint build failed for slot ${this.targetSlot}`, {
973
+ slot: this.targetSlot,
974
+ checkpointNumber: this.checkpointNumber,
975
+ reason: 'no_blocks_built'
976
+ });
977
+ this.log.warn(`No blocks were built for slot ${this.targetSlot}`, {
978
+ slot: this.targetSlot,
979
+ checkpointNumber: this.checkpointNumber,
980
+ reason: 'no_blocks_built'
981
+ });
982
+ this.eventEmitter.emit('checkpoint-empty', {
983
+ slot: this.targetSlot
984
+ });
985
+ return undefined;
986
+ }
987
+ const minBlocksForCheckpoint = this.config.minBlocksForCheckpoint;
988
+ if (minBlocksForCheckpoint !== undefined && blocksInCheckpoint.length < minBlocksForCheckpoint) {
989
+ this.logCheckpointEvent('build-failed', `Checkpoint build failed for slot ${this.targetSlot}`, {
990
+ slot: this.targetSlot,
991
+ checkpointNumber: this.checkpointNumber,
992
+ blocksBuilt: blocksInCheckpoint.length,
993
+ minBlocksForCheckpoint,
994
+ reason: 'min_blocks_not_met'
995
+ });
996
+ this.log.warn(`Checkpoint has fewer blocks than minimum (${blocksInCheckpoint.length} < ${minBlocksForCheckpoint}), skipping proposal`, {
997
+ slot: this.targetSlot,
998
+ checkpointNumber: this.checkpointNumber,
999
+ blocksBuilt: blocksInCheckpoint.length,
1000
+ minBlocksForCheckpoint,
1001
+ reason: 'min_blocks_not_met'
1002
+ });
1003
+ return undefined;
1004
+ }
1005
+ // Assemble and broadcast the checkpoint proposal, including the last block that was not
1006
+ // broadcasted yet, and wait to collect the committee attestations.
1007
+ this.setStateFn(SequencerState.ASSEMBLING_CHECKPOINT, this.targetSlot);
1008
+ const checkpoint = await checkpointBuilder.completeCheckpoint();
1009
+ // Final validation: per-block limits are only checked if the operator set them explicitly.
1010
+ // Otherwise, checkpoint-level budgets were already enforced by the redistribution logic.
1011
+ try {
1012
+ validateCheckpoint(checkpoint, {
1013
+ rollupManaLimit: this.l1Constants.rollupManaLimit,
1014
+ maxL2BlockGas: this.config.maxL2BlockGas,
1015
+ maxDABlockGas: this.config.maxDABlockGas,
1016
+ maxTxsPerBlock: this.config.maxTxsPerBlock,
1017
+ maxTxsPerCheckpoint: this.config.maxTxsPerCheckpoint
1018
+ });
1019
+ } catch (err) {
1020
+ this.logCheckpointEvent('build-failed', `Checkpoint build failed for slot ${this.targetSlot}`, {
1021
+ slot: this.targetSlot,
1022
+ checkpointNumber: this.checkpointNumber,
1023
+ blocksBuilt: blocksInCheckpoint.length,
1024
+ reason: 'invalid_checkpoint',
1025
+ checkpoint: checkpoint.header.toInspect()
1026
+ });
1027
+ this.log.error(`Built an invalid checkpoint at slot ${this.slotNow} (skipping proposal)`, err, {
1028
+ slot: this.targetSlot,
1029
+ checkpointNumber: this.checkpointNumber,
1030
+ blocksBuilt: blocksInCheckpoint.length,
1031
+ reason: 'invalid_checkpoint',
1032
+ checkpoint: checkpoint.header.toInspect()
1033
+ });
1034
+ return undefined;
1035
+ }
1036
+ // Record checkpoint-level build metrics
1037
+ this.checkpointMetrics.recordCheckpointBuild(checkpointBuildTimer.ms(), blocksInCheckpoint.length, checkpoint.getStats().txCount, Number(checkpoint.header.totalManaUsed.toBigInt()));
1038
+ this.logCheckpointEvent('built', `Checkpoint built for slot ${this.targetSlot}`, {
1039
+ slot: this.targetSlot,
1040
+ buildSlot: this.slotNow,
1041
+ checkpointNumber: this.checkpointNumber,
1042
+ proposer: this.proposer?.toString(),
1043
+ attestorAddress: this.attestorAddress.toString(),
1044
+ publisherAddress: this.publisher.getSenderAddress().toString(),
1045
+ blocksBuilt: blocksInCheckpoint.length,
1046
+ txCount: checkpoint.getStats().txCount,
1047
+ totalMana: Number(checkpoint.header.totalManaUsed.toBigInt())
1048
+ });
1049
+ // In fisherman mode, return the checkpoint without broadcasting or collecting attestations
1050
+ if (this.config.fishermanMode) {
1051
+ this.log.info(`Built checkpoint for slot ${this.targetSlot} with ${blocksInCheckpoint.length} blocks. ` + `Skipping proposal in fisherman mode.`, {
1052
+ slot: this.targetSlot,
1053
+ checkpoint: checkpoint.header.toInspect(),
1054
+ blocksBuilt: blocksInCheckpoint.length
1055
+ });
1056
+ this.metrics.recordCheckpointSuccess();
1057
+ // Return a broadcast result with a dummy proposal — fisherman mode skips attestation collection
1058
+ return {
1059
+ checkpoint,
1060
+ proposal: undefined,
1061
+ blockProposedAt: this.dateProvider.now()
1062
+ };
1063
+ }
1064
+ // Create the checkpoint proposal and broadcast it
1065
+ const proposal = await this.validatorClient.createCheckpointProposal(checkpoint.header, checkpoint.archive.root, this.checkpointNumber, feeAssetPriceModifier, blockPendingBroadcast, this.proposer, checkpointProposalOptions);
1066
+ const blockProposedAt = this.dateProvider.now();
1067
+ if (!this.config.skipBroadcastProposals) {
1068
+ await this.p2pClient.broadcastCheckpointProposal(proposal);
1069
+ this.checkpointMetrics.noteCheckpointBroadcast(this.dateProvider.now());
1070
+ }
1071
+ // Return immediately after broadcast — attestation collection happens in the background
1072
+ return {
1073
+ checkpoint,
1074
+ proposal,
1075
+ blockProposedAt
1076
+ };
1077
+ } catch (e) {
1078
+ env.error = e;
1079
+ env.hasError = true;
1080
+ } finally{
1081
+ const result = _ts_dispose_resources(env);
1082
+ if (result) await result;
1083
+ }
1084
+ } catch (err) {
1085
+ if (err && (err instanceof DutyAlreadySignedError || err instanceof SlashingProtectionError)) {
1086
+ // swallow this error. It's already been logged by a function deeper in the stack
1087
+ return undefined;
1088
+ }
1089
+ this.log.error(`Error building checkpoint at slot ${this.targetSlot}`, err);
1090
+ return undefined;
1091
+ }
1092
+ }
1093
+ /**
1094
+ * Builds blocks for a checkpoint within the current slot.
1095
+ */ async buildBlocksForCheckpoint(checkpointBuilder, timestamp, inHash, blockProposalOptions) {
1096
+ const blocksInCheckpoint = [];
1097
+ const txHashesAlreadyIncluded = new Set();
1098
+ const initialBlockNumber = BlockNumber(this.syncedToBlockNumber + 1);
1099
+ // Last block in the checkpoint will usually be flagged as pending broadcast, so we send it along with the checkpoint proposal
1100
+ let blockPendingBroadcast = undefined;
1101
+ while(true){
1102
+ const blocksBuilt = blocksInCheckpoint.length;
1103
+ const indexWithinCheckpoint = IndexWithinCheckpoint(blocksBuilt);
1104
+ const blockNumber = BlockNumber(initialBlockNumber + blocksBuilt);
1105
+ const secondsIntoSlot = this.getSecondsIntoSlot();
1106
+ const timingInfo = this.timetable.canStartNextBlock(secondsIntoSlot);
1107
+ if (!timingInfo.canStart) {
1108
+ this.log.debug(`Not enough time left in slot to start another block`, {
1109
+ slot: this.targetSlot,
1110
+ blocksBuilt,
1111
+ secondsIntoSlot
1112
+ });
1113
+ break;
1114
+ }
1115
+ const buildResult = await this.buildSingleBlock(checkpointBuilder, {
1116
+ // Create all blocks with the same timestamp
1117
+ blockTimestamp: timestamp,
1118
+ // Create an empty block if we haven't already and this is the last one
1119
+ forceCreate: timingInfo.isLastBlock && blocksBuilt === 0 && this.config.buildCheckpointIfEmpty,
1120
+ // Build deadline is only set if we are enforcing the timetable
1121
+ buildDeadline: timingInfo.deadline ? new Date((this.getSlotStartBuildTimestamp() + timingInfo.deadline) * 1000) : undefined,
1122
+ blockNumber,
1123
+ indexWithinCheckpoint,
1124
+ txHashesAlreadyIncluded
1125
+ });
1126
+ // If we failed to build the block due to insufficient txs, we try again if there is still time left in the slot
1127
+ if ('failure' in buildResult) {
1128
+ // If this was the last subslot, or we're running with a single block per slot, we're done
1129
+ if (timingInfo.isLastBlock || timingInfo.deadline === undefined) {
1130
+ break;
1131
+ }
1132
+ // Otherwise, if there is still time for more blocks, we wait until the next subslot and try again
1133
+ await this.waitUntilNextSubslot(timingInfo.deadline);
1134
+ continue;
1135
+ }
1136
+ // If there was an error building the block, we just exit the loop and give up the rest of the slot.
1137
+ // We don't want to risk building more blocks if something went wrong.
1138
+ if ('error' in buildResult) {
1139
+ if (!(buildResult.error instanceof SequencerInterruptedError)) {
1140
+ this.log.warn(`Halting block building for slot ${this.targetSlot}`, {
1141
+ slot: this.targetSlot,
1142
+ blocksBuilt,
1143
+ error: buildResult.error
1144
+ });
1145
+ }
1146
+ break;
1147
+ }
1148
+ const { block, usedTxs } = buildResult;
1149
+ this.checkpointMetrics.noteCheckpointBlockBuilt(this.dateProvider.now(), {
1150
+ isFirstBlock: blocksBuilt === 0,
1151
+ isLastBlock: timingInfo.isLastBlock
1152
+ });
1153
+ blocksInCheckpoint.push(block);
1154
+ usedTxs.forEach((tx)=>txHashesAlreadyIncluded.add(tx.txHash.toString()));
1155
+ // Sign the block proposal. This will throw if HA signing fails.
1156
+ const proposal = await this.createBlockProposal(block, inHash, usedTxs, blockProposalOptions);
1157
+ // Sync the proposed block to the archiver to make it available, only after we've managed to sign the proposal,
1158
+ // so we avoid polluting our archive with a block that would fail.
1159
+ // We wait for the sync to succeed, as this helps catch consistency errors, even if it means we lose some time for block-building.
1160
+ // If this throws, we abort the entire checkpoint.
1161
+ await this.syncProposedBlockToArchiver(block);
1162
+ // If this is the last block, do not broadcast it, since it will be included in the checkpoint proposal.
1163
+ if (timingInfo.isLastBlock) {
1164
+ this.log.verbose(`Completed final block ${blockNumber} for slot ${this.targetSlot}`, {
1165
+ slot: this.targetSlot,
1166
+ blockNumber,
1167
+ blocksBuilt
1168
+ });
1169
+ blockPendingBroadcast = proposal;
1170
+ break;
1171
+ }
1172
+ // Once we have a signed proposal and the archiver agreed with our proposed block, then we broadcast it.
1173
+ if (proposal && !this.config.skipBroadcastProposals) {
1174
+ await this.p2pClient.broadcastProposal(proposal);
1175
+ }
1176
+ // Wait until the next block's start time
1177
+ await this.waitUntilNextSubslot(timingInfo.deadline);
1178
+ }
1179
+ this.log.verbose(`Block building loop completed for slot ${this.targetSlot}`, {
1180
+ slot: this.targetSlot,
1181
+ blocksBuilt: blocksInCheckpoint.length
1182
+ });
1183
+ return {
1184
+ blocksInCheckpoint,
1185
+ blockPendingBroadcast
1186
+ };
1187
+ }
1188
+ /** Creates a block proposal for a given block via the validator client (unless in fisherman mode) */ createBlockProposal(block, inHash, usedTxs, blockProposalOptions) {
1189
+ if (this.config.fishermanMode) {
1190
+ this.log.info(`Skipping block proposal for block ${block.number} in fisherman mode`);
1191
+ return Promise.resolve(undefined);
1192
+ }
1193
+ return this.validatorClient.createBlockProposal(block.header, this.checkpointNumber, block.indexWithinCheckpoint, inHash, block.archive.root, usedTxs, this.proposer, blockProposalOptions);
1194
+ }
1195
+ /** Sleeps until it is time to produce the next block in the slot */ async waitUntilNextSubslot(nextSubslotStart) {
1196
+ this.setStateFn(SequencerState.WAITING_UNTIL_NEXT_BLOCK, this.targetSlot);
1197
+ this.log.verbose(`Waiting until time for the next block at ${nextSubslotStart}s into slot`, {
1198
+ slot: this.targetSlot
1199
+ });
1200
+ await this.waitUntilTimeInSlot(nextSubslotStart);
1201
+ }
1202
+ /** Builds a single block. Called from the main block building loop. */ async buildSingleBlock(checkpointBuilder, opts) {
1203
+ const { blockTimestamp, forceCreate, blockNumber, indexWithinCheckpoint, buildDeadline, txHashesAlreadyIncluded } = opts;
1204
+ this.log.verbose(`Preparing block ${blockNumber} index ${indexWithinCheckpoint} at checkpoint ${this.checkpointNumber} for slot ${this.targetSlot}`, {
1205
+ ...checkpointBuilder.getConstantData(),
1206
+ ...opts
1207
+ });
1208
+ try {
1209
+ // Wait until we have enough txs to build the block
1210
+ const { availableTxs, canStartBuilding, minTxs } = await this.waitForMinTxs(opts);
1211
+ if (!canStartBuilding) {
1212
+ this.logCheckpointEvent('block-build-failed', `Block build failed for slot ${this.targetSlot}`, {
1213
+ reason: 'insufficient_txs',
1214
+ blockNumber,
1215
+ slot: this.targetSlot,
1216
+ checkpointNumber: this.checkpointNumber,
1217
+ indexWithinCheckpoint,
1218
+ availableTxs,
1219
+ minTxs
1220
+ });
1221
+ this.log.warn(`Not enough txs to build block ${blockNumber} at index ${indexWithinCheckpoint} in slot ${this.targetSlot} (got ${availableTxs} txs but needs ${minTxs})`, {
1222
+ reason: 'insufficient_txs',
1223
+ blockNumber,
1224
+ slot: this.targetSlot,
1225
+ checkpointNumber: this.checkpointNumber,
1226
+ indexWithinCheckpoint,
1227
+ availableTxs,
1228
+ minTxs
1229
+ });
1230
+ this.eventEmitter.emit('block-tx-count-check-failed', {
1231
+ minTxs,
1232
+ availableTxs,
1233
+ slot: this.targetSlot
1234
+ });
1235
+ this.metrics.recordBlockProposalFailed('insufficient_txs');
1236
+ return {
1237
+ failure: 'insufficient-txs'
1238
+ };
1239
+ }
1240
+ // Create iterator to pending txs. We filter out txs already included in previous blocks in the checkpoint
1241
+ // just in case p2p failed to sync the provisional block and didn't get to remove those txs from the mempool yet.
1242
+ const pendingTxs = filter(this.p2pClient.iterateEligiblePendingTxs(), (tx)=>!txHashesAlreadyIncluded.has(tx.txHash.toString()));
1243
+ this.log.debug(`Building block ${blockNumber} at index ${indexWithinCheckpoint} for slot ${this.targetSlot} with ${availableTxs} available txs`, {
1244
+ slot: this.targetSlot,
1245
+ blockNumber,
1246
+ indexWithinCheckpoint
1247
+ });
1248
+ this.setStateFn(SequencerState.CREATING_BLOCK, this.targetSlot);
1249
+ // Per-block limits are operator overrides (from SEQ_MAX_L2_BLOCK_GAS etc.) further capped
1250
+ // by remaining checkpoint-level budgets inside CheckpointBuilder before each block is built.
1251
+ // minValidTxs is passed into the builder so it can reject the block *before* updating state.
1252
+ const minValidTxs = forceCreate ? 0 : this.config.minValidTxsPerBlock ?? minTxs;
1253
+ const blockBuilderOptions = {
1254
+ maxTransactions: this.config.maxTxsPerBlock,
1255
+ maxBlockGas: this.config.maxL2BlockGas !== undefined || this.config.maxDABlockGas !== undefined ? new Gas(this.config.maxDABlockGas ?? Infinity, this.config.maxL2BlockGas ?? Infinity) : undefined,
1256
+ deadline: buildDeadline,
1257
+ isBuildingProposal: true,
1258
+ minValidTxs,
1259
+ maxBlocksPerCheckpoint: this.timetable.maxNumberOfBlocks,
1260
+ perBlockAllocationMultiplier: this.config.perBlockAllocationMultiplier
1261
+ };
1262
+ // Actually build the block by executing txs. The builder throws InsufficientValidTxsError
1263
+ // if the number of successfully processed txs is below minValidTxs, ensuring state is not
1264
+ // updated for blocks that will be discarded.
1265
+ const buildResult = await this.buildSingleBlockWithCheckpointBuilder(checkpointBuilder, pendingTxs, blockNumber, blockTimestamp, blockBuilderOptions);
1266
+ // If any txs failed during execution, drop them from the mempool so we don't pick them up again
1267
+ await this.dropFailedTxsFromP2P(buildResult.failedTxs);
1268
+ if (buildResult.status === 'insufficient-valid-txs') {
1269
+ this.logCheckpointEvent('block-build-failed', `Block build failed for slot ${this.targetSlot}`, {
1270
+ reason: 'insufficient_valid_txs',
1271
+ slot: this.targetSlot,
1272
+ checkpointNumber: this.checkpointNumber,
1273
+ blockNumber,
1274
+ numTxs: buildResult.processedCount,
1275
+ indexWithinCheckpoint,
1276
+ minValidTxs
1277
+ });
1278
+ this.log.warn(`Block ${blockNumber} at index ${indexWithinCheckpoint} on slot ${this.targetSlot} has too few valid txs to be proposed`, {
1279
+ reason: 'insufficient_valid_txs',
1280
+ slot: this.targetSlot,
1281
+ checkpointNumber: this.checkpointNumber,
1282
+ blockNumber,
1283
+ numTxs: buildResult.processedCount,
1284
+ indexWithinCheckpoint,
1285
+ minValidTxs
1286
+ });
1287
+ this.eventEmitter.emit('block-build-failed', {
1288
+ reason: `Insufficient valid txs`,
1289
+ slot: this.targetSlot
1290
+ });
1291
+ this.metrics.recordBlockProposalFailed('insufficient_valid_txs');
1292
+ return {
1293
+ failure: 'insufficient-valid-txs'
1294
+ };
1295
+ }
1296
+ // Block creation succeeded, emit stats and metrics
1297
+ const { block, publicProcessorDuration, usedTxs, blockBuildDuration, numTxs } = buildResult;
1298
+ const blockStats = {
1299
+ eventName: 'l2-block-built',
1300
+ duration: blockBuildDuration,
1301
+ publicProcessDuration: publicProcessorDuration,
1302
+ ...block.getStats()
1303
+ };
1304
+ const blockHash = await block.hash();
1305
+ const txHashes = block.body.txEffects.map((tx)=>tx.txHash);
1306
+ const manaPerSec = block.header.totalManaUsed.toNumberUnsafe() / (blockBuildDuration / 1000);
1307
+ this.log.info(`Built block ${block.number} at checkpoint ${this.checkpointNumber} for slot ${this.targetSlot} with ${numTxs} txs`, {
1308
+ blockHash,
1309
+ txHashes,
1310
+ manaPerSec,
1311
+ ...blockStats
1312
+ });
1313
+ // `slot` is the target/submission slot (may be one ahead when pipelining),
1314
+ // `buildSlot` is the wall-clock slot during which the block was actually built.
1315
+ this.eventEmitter.emit('block-proposed', {
1316
+ blockNumber: block.number,
1317
+ slot: this.targetSlot,
1318
+ buildSlot: this.slotNow
1319
+ });
1320
+ this.metrics.recordBuiltBlock(blockBuildDuration, block.header.totalManaUsed.toNumberUnsafe(), this.targetSlot);
1321
+ return {
1322
+ block,
1323
+ usedTxs
1324
+ };
1325
+ } catch (err) {
1326
+ this.eventEmitter.emit('block-build-failed', {
1327
+ reason: err.message,
1328
+ slot: this.targetSlot
1329
+ });
1330
+ this.logCheckpointEvent('block-build-failed', `Block build failed for slot ${this.targetSlot}`, {
1331
+ reason: err instanceof Error ? err.message : String(err),
1332
+ slot: this.targetSlot,
1333
+ checkpointNumber: this.checkpointNumber,
1334
+ blockNumber
1335
+ });
1336
+ this.log.error(`Error building block`, err, {
1337
+ reason: err instanceof Error ? err.message : String(err),
1338
+ slot: this.targetSlot,
1339
+ checkpointNumber: this.checkpointNumber,
1340
+ blockNumber
1341
+ });
1342
+ this.metrics.recordBlockProposalFailed(err.name || 'unknown_error');
1343
+ this.metrics.recordFailedBlock();
1344
+ return {
1345
+ error: err
1346
+ };
1347
+ }
1348
+ }
1349
+ /** Uses the checkpoint builder to build a block, catching InsufficientValidTxsError. */ async buildSingleBlockWithCheckpointBuilder(checkpointBuilder, pendingTxs, blockNumber, blockTimestamp, blockBuilderOptions) {
1350
+ try {
1351
+ const workTimer = new Timer();
1352
+ const result = await checkpointBuilder.buildBlock(pendingTxs, blockNumber, blockTimestamp, blockBuilderOptions);
1353
+ const blockBuildDuration = workTimer.ms();
1354
+ return {
1355
+ ...result,
1356
+ blockBuildDuration,
1357
+ status: 'success'
1358
+ };
1359
+ } catch (err) {
1360
+ if (isErrorClass(err, InsufficientValidTxsError)) {
1361
+ return {
1362
+ failedTxs: err.failedTxs,
1363
+ processedCount: err.processedCount,
1364
+ status: 'insufficient-valid-txs'
1365
+ };
1366
+ }
1367
+ throw err;
1368
+ }
1369
+ }
1370
+ /** Waits until minTxs are available on the pool for building a block. */ async waitForMinTxs(opts) {
1371
+ const { indexWithinCheckpoint, blockNumber, buildDeadline, forceCreate } = opts;
1372
+ // We only allow a block with 0 txs in the first block of the checkpoint
1373
+ const minTxs = indexWithinCheckpoint > 0 && this.config.minTxsPerBlock === 0 ? 1 : this.config.minTxsPerBlock;
1374
+ // Deadline is undefined if we are not enforcing the timetable, meaning we'll exit immediately when out of time
1375
+ const startBuildingDeadline = buildDeadline ? new Date(buildDeadline.getTime() - this.timetable.minExecutionTime * 1000) : undefined;
1376
+ let availableTxs = await this.p2pClient.getPendingTxCount();
1377
+ while(!forceCreate && availableTxs < minTxs){
1378
+ // If we're past deadline, or we have no deadline, give up
1379
+ const now = this.dateProvider.nowAsDate();
1380
+ if (startBuildingDeadline === undefined || now >= startBuildingDeadline) {
1381
+ return {
1382
+ canStartBuilding: false,
1383
+ availableTxs,
1384
+ minTxs
1385
+ };
1386
+ }
1387
+ // Wait a bit before checking again
1388
+ this.setStateFn(SequencerState.WAITING_FOR_TXS, this.targetSlot);
1389
+ this.log.verbose(`Waiting for enough txs to build block ${blockNumber} at index ${indexWithinCheckpoint} in slot ${this.targetSlot} (have ${availableTxs} but need ${minTxs})`, {
1390
+ blockNumber,
1391
+ slot: this.targetSlot,
1392
+ indexWithinCheckpoint
1393
+ });
1394
+ await this.waitForTxsPollingInterval();
1395
+ availableTxs = await this.p2pClient.getPendingTxCount();
1396
+ }
1397
+ return {
1398
+ canStartBuilding: true,
1399
+ availableTxs,
1400
+ minTxs
1401
+ };
1402
+ }
1403
+ async getSignedCommitteeAttestations(broadcast) {
1404
+ const { proposal, blockProposedAt } = broadcast;
1405
+ this.setStateFn(SequencerState.COLLECTING_ATTESTATIONS, this.targetSlot);
1406
+ const attestations = await this.waitForAttestations(proposal);
1407
+ if (!attestations) {
1408
+ return undefined;
1409
+ }
1410
+ this.checkpointMetrics.recordCheckpointAttestationDelay(this.dateProvider.now() - blockProposedAt);
1411
+ // Proposer must sign over the attestations before pushing them to L1
1412
+ const signer = this.proposer ?? this.publisher.getSenderAddress();
1413
+ try {
1414
+ const attestationsSignature = await this.validatorClient.signAttestationsAndSigners(attestations, signer, this.targetSlot, this.checkpointNumber);
1415
+ return {
1416
+ attestations,
1417
+ attestationsSignature
1418
+ };
1419
+ } catch (err) {
1420
+ if (this.handleHASigningError(err, 'Attestations signature')) {
1421
+ return;
1422
+ }
1423
+ this.log.error(`Error signing attestations for checkpoint proposal at slot ${proposal.slotNumber}`, err);
1424
+ return undefined;
1425
+ }
1426
+ }
1427
+ /**
1428
+ * Waits for enough attestations to be collected via p2p.
1429
+ * This is run after all blocks for the checkpoint have been built.
1430
+ */ async waitForAttestations(proposal) {
1431
+ if (this.config.fishermanMode) {
1432
+ this.log.debug('Skipping attestation collection in fisherman mode');
1433
+ return CommitteeAttestationsAndSigners.empty(this.getSignatureContext());
1434
+ }
1435
+ const slotNumber = proposal.slotNumber;
1436
+ const { committee, seed, epoch } = await this.epochCache.getCommittee(slotNumber);
1437
+ if (!committee) {
1438
+ throw new Error('No committee when collecting attestations');
1439
+ } else if (committee.length === 0) {
1440
+ this.log.verbose(`Attesting committee is empty`);
1441
+ return CommitteeAttestationsAndSigners.empty(this.getSignatureContext());
1442
+ } else {
1443
+ this.log.debug(`Attesting committee length is ${committee.length}`, {
1444
+ committee
1445
+ });
1446
+ }
1447
+ const numberOfRequiredAttestations = computeQuorum(committee.length);
1448
+ if (this.config.skipCollectingAttestations) {
1449
+ this.log.warn('Skipping attestation collection as per config (attesting with own keys only)');
1450
+ const attestations = await this.validatorClient?.collectOwnAttestations(proposal, this.checkpointNumber);
1451
+ this.logCheckpointAttestations('collected', committee, attestations ?? [], numberOfRequiredAttestations, {
1452
+ reason: 'collect_own_only'
1453
+ });
1454
+ return new CommitteeAttestationsAndSigners(orderAttestations(attestations ?? [], committee), this.getSignatureContext());
1455
+ }
1456
+ const attestationTimeAllowed = this.config.enforceTimeTable ? this.timetable.getCheckpointAttestationDeadline() : this.l1Constants.slotDuration;
1457
+ const attestationDeadline = new Date((this.getSlotStartBuildTimestamp() + attestationTimeAllowed) * 1000);
1458
+ this.metrics.recordRequiredAttestations(numberOfRequiredAttestations, attestationTimeAllowed);
1459
+ const collectAttestationsTimer = new Timer();
1460
+ let collectedAttestationsCount = 0;
1461
+ try {
1462
+ const attestations = await this.validatorClient.collectAttestations(proposal, numberOfRequiredAttestations, attestationDeadline, this.checkpointNumber);
1463
+ collectedAttestationsCount = attestations.length;
1464
+ // Trim attestations to minimum required to save L1 calldata gas
1465
+ const localAddresses = this.validatorClient.getValidatorAddresses();
1466
+ const trimmed = trimAttestations(attestations, numberOfRequiredAttestations, this.attestorAddress, localAddresses);
1467
+ if (trimmed.length < attestations.length) {
1468
+ this.log.debug(`Trimmed attestations from ${attestations.length} to ${trimmed.length} for L1 submission`);
1469
+ }
1470
+ // Rollup contract requires that the signatures are provided in the order of the committee
1471
+ const sorted = orderAttestations(trimmed, committee);
1472
+ this.logCheckpointAttestations('collected', committee, attestations, numberOfRequiredAttestations, {
1473
+ submittedCount: trimmed.length
1474
+ });
1475
+ // Manipulate the attestations if we've been configured to do so
1476
+ if (this.config.injectFakeAttestation || this.config.injectHighSValueAttestation || this.config.injectUnrecoverableSignatureAttestation || this.config.shuffleAttestationOrdering) {
1477
+ return this.manipulateAttestations(proposal.slotNumber, epoch, seed, committee, sorted);
1478
+ }
1479
+ return new CommitteeAttestationsAndSigners(sorted, this.getSignatureContext());
1480
+ } catch (err) {
1481
+ if (err && err instanceof AttestationTimeoutError) {
1482
+ collectedAttestationsCount = err.collectedCount;
1483
+ this.logCheckpointAttestations('failed', committee, undefined, numberOfRequiredAttestations, {
1484
+ collectedCount: collectedAttestationsCount,
1485
+ reason: 'timeout'
1486
+ });
1487
+ this.log.error(`Timeout while waiting for attestations for checkpoint proposal at slot ${proposal.slotNumber} (collected ${collectedAttestationsCount}/${numberOfRequiredAttestations})`, err);
1488
+ } else {
1489
+ this.logCheckpointAttestations('failed', committee, undefined, numberOfRequiredAttestations, {
1490
+ collectedCount: collectedAttestationsCount,
1491
+ reason: err instanceof Error ? err.message : String(err)
1492
+ });
1493
+ this.log.error(`Error collecting attestations for checkpoint proposal at slot ${proposal.slotNumber}`, err);
1494
+ }
1495
+ return undefined;
1496
+ } finally{
1497
+ this.metrics.recordCollectedAttestations(collectedAttestationsCount, collectAttestationsTimer.ms());
1498
+ }
1499
+ }
1500
+ logCheckpointAttestations(status, committee, attestations, requiredAttestations, opts = {}) {
1501
+ const signedValidators = attestations?.map((attestation)=>attestation.getSender()?.toString()).filter((address)=>address !== undefined) ?? [];
1502
+ const collectedCount = opts.collectedCount ?? new Set(signedValidators).size;
1503
+ const missingValidatorCount = status === 'failed' ? Math.max(0, requiredAttestations - collectedCount) : undefined;
1504
+ this.logCheckpointEvent(`attestations-${status}`, `Checkpoint attestations ${status} for slot ${this.targetSlot}`, {
1505
+ slot: this.targetSlot,
1506
+ checkpointNumber: this.checkpointNumber,
1507
+ committeeSize: committee.length,
1508
+ requiredAttestations,
1509
+ collectedAttestations: collectedCount,
1510
+ ...opts.submittedCount !== undefined && {
1511
+ submittedAttestations: opts.submittedCount
1512
+ },
1513
+ ...missingValidatorCount !== undefined && {
1514
+ missingValidatorCount
1515
+ },
1516
+ ...opts.reason !== undefined && {
1517
+ reason: opts.reason
1518
+ }
1519
+ });
1520
+ }
1521
+ /** Breaks the attestations before publishing based on attack configs */ manipulateAttestations(slotNumber, epoch, seed, committee, attestations) {
1522
+ // Compute the proposer index in the committee, since we dont want to tweak it.
1523
+ // Otherwise, the L1 rollup contract will reject the block outright.
1524
+ const proposerIndex = Number(this.epochCache.computeProposerIndex(slotNumber, epoch, seed, BigInt(committee.length)));
1525
+ if (this.config.injectFakeAttestation || this.config.injectHighSValueAttestation || this.config.injectUnrecoverableSignatureAttestation) {
1526
+ // Find non-empty attestations that are not from the proposer
1527
+ const nonProposerIndices = [];
1528
+ for(let i = 0; i < attestations.length; i++){
1529
+ if (!attestations[i].signature.isEmpty() && i !== proposerIndex) {
1530
+ nonProposerIndices.push(i);
1531
+ }
1532
+ }
1533
+ if (nonProposerIndices.length > 0) {
1534
+ const targetIndex = nonProposerIndices[randomInt(nonProposerIndices.length)];
1535
+ if (this.config.injectHighSValueAttestation) {
1536
+ this.log.warn(`Injecting high-s value attestation in checkpoint for slot ${slotNumber} at index ${targetIndex}`);
1537
+ unfreeze(attestations[targetIndex]).signature = flipSignature(attestations[targetIndex].signature);
1538
+ } else if (this.config.injectUnrecoverableSignatureAttestation) {
1539
+ this.log.warn(`Injecting unrecoverable signature attestation in checkpoint for slot ${slotNumber} at index ${targetIndex}`);
1540
+ unfreeze(attestations[targetIndex]).signature = generateUnrecoverableSignature();
1541
+ } else {
1542
+ this.log.warn(`Injecting fake attestation in checkpoint for slot ${slotNumber} at index ${targetIndex}`);
1543
+ unfreeze(attestations[targetIndex]).signature = generateRecoverableSignature();
1544
+ }
1545
+ }
1546
+ return new CommitteeAttestationsAndSigners(attestations, this.getSignatureContext());
1547
+ }
1548
+ if (this.config.shuffleAttestationOrdering) {
1549
+ this.log.warn(`Shuffling attestation ordering in checkpoint for slot ${slotNumber} (proposer #${proposerIndex})`);
1550
+ const shuffled = [
1551
+ ...attestations
1552
+ ];
1553
+ // Find two non-proposer positions that both have non-empty signatures to swap.
1554
+ // This ensures the bitmap doesn't change, so the MaliciousCommitteeAttestationsAndSigners
1555
+ // signers array stays correctly aligned with L1's committee reconstruction.
1556
+ const swappable = [];
1557
+ for(let k = 0; k < shuffled.length; k++){
1558
+ if (!shuffled[k].signature.isEmpty() && k !== proposerIndex) {
1559
+ swappable.push(k);
1560
+ }
1561
+ }
1562
+ if (swappable.length >= 2) {
1563
+ const [i, j] = [
1564
+ swappable[0],
1565
+ swappable[1]
1566
+ ];
1567
+ [shuffled[i], shuffled[j]] = [
1568
+ shuffled[j],
1569
+ shuffled[i]
1570
+ ];
1571
+ }
1572
+ const signers = new CommitteeAttestationsAndSigners(attestations, this.getSignatureContext()).getSigners();
1573
+ return new MaliciousCommitteeAttestationsAndSigners(shuffled, signers, this.getSignatureContext());
1574
+ }
1575
+ return new CommitteeAttestationsAndSigners(attestations, this.getSignatureContext());
1576
+ }
1577
+ async dropFailedTxsFromP2P(failedTxs) {
1578
+ if (failedTxs.length === 0) {
1579
+ return;
1580
+ }
1581
+ const failedTxData = failedTxs.map((fail)=>fail.tx);
1582
+ const failedTxHashes = failedTxData.map((tx)=>tx.getTxHash());
1583
+ this.log.verbose(`Dropping failed txs ${failedTxHashes.join(', ')}`);
1584
+ await this.p2pClient.handleFailedExecution(failedTxHashes);
1585
+ }
1586
+ /**
1587
+ * Adds the proposed block to the archiver so it's available via P2P.
1588
+ * Gossip doesn't echo messages back to the sender, so the proposer's archiver/world-state
1589
+ * would never receive its own block without this explicit sync.
1590
+ *
1591
+ * In fisherman mode we skip this push: the fisherman builds blocks locally for validation
1592
+ * and fee analysis only, and pushing them to the archiver causes spurious reorg cascades
1593
+ * whenever the real proposer's block arrives from L1.
1594
+ */ async syncProposedBlockToArchiver(block) {
1595
+ if (this.config.skipPushProposedBlocksToArchiver || this.config.fishermanMode) {
1596
+ this.log.warn(`Skipping push of proposed block ${block.number} to archiver`, {
1597
+ blockNumber: block.number,
1598
+ slot: block.header.globalVariables.slotNumber
1599
+ });
1600
+ return;
1601
+ }
1602
+ this.log.debug(`Syncing proposed block ${block.number} to archiver`, {
1603
+ blockNumber: block.number,
1604
+ slot: block.header.globalVariables.slotNumber
1605
+ });
1606
+ await this.blockSink.addBlock(block);
1607
+ }
1608
+ /** Runs fee analysis and logs checkpoint outcome as fisherman */ async handleCheckpointEndAsFisherman(checkpoint) {
1609
+ // Perform L1 fee analysis before clearing requests
1610
+ // The callback is invoked asynchronously after the next block is mined
1611
+ const feeAnalysis = await this.publisher.analyzeL1Fees(this.targetSlot, (analysis)=>this.metrics.recordFishermanFeeAnalysis(analysis));
1612
+ if (checkpoint) {
1613
+ this.log.info(`Validation checkpoint building SUCCEEDED for slot ${this.targetSlot}`, {
1614
+ ...checkpoint.toCheckpointInfo(),
1615
+ ...checkpoint.getStats(),
1616
+ feeAnalysisId: feeAnalysis?.id
1617
+ });
1618
+ } else {
1619
+ this.log.warn(`Validation block building FAILED for slot ${this.targetSlot}`, {
1620
+ slot: this.targetSlot,
1621
+ feeAnalysisId: feeAnalysis?.id
1622
+ });
1623
+ this.metrics.recordCheckpointProposalFailed('block_build_failed');
1624
+ }
1625
+ this.publisher.clearPendingRequests();
1626
+ }
1627
+ /**
1628
+ * Helper to handle HA double-signing errors. Returns true if the error was handled (caller should yield).
1629
+ */ handleHASigningError(err, errorContext) {
1630
+ if (err instanceof DutyAlreadySignedError) {
1631
+ this.log.info(`${errorContext} for slot ${this.targetSlot} already signed by another HA node, yielding`, {
1632
+ slot: this.targetSlot,
1633
+ signedByNode: err.signedByNode
1634
+ });
1635
+ return true;
1636
+ }
1637
+ if (err instanceof SlashingProtectionError) {
1638
+ this.log.info(`${errorContext} for slot ${this.targetSlot} blocked by slashing protection, yielding`, {
1639
+ slot: this.targetSlot,
1640
+ existingMessageHash: err.existingMessageHash,
1641
+ attemptedMessageHash: err.attemptedMessageHash
1642
+ });
1643
+ return true;
1644
+ }
1645
+ return false;
1646
+ }
1647
+ /** Waits until a specific time within the current slot */ async waitUntilTimeInSlot(targetSecondsIntoSlot) {
1648
+ const slotStartTimestamp = this.getSlotStartBuildTimestamp();
1649
+ const targetTimestamp = slotStartTimestamp + targetSecondsIntoSlot;
1650
+ await sleepUntil(new Date(targetTimestamp * 1000), this.dateProvider.nowAsDate());
1651
+ }
1652
+ /** Waits the polling interval for transactions. Extracted for test overriding. */ async waitForTxsPollingInterval() {
1653
+ await sleep(TXS_POLLING_MS);
1654
+ }
1655
+ getSlotStartBuildTimestamp() {
1656
+ return getSlotStartBuildTimestamp(this.slotNow, this.l1Constants);
1657
+ }
1658
+ getSecondsIntoSlot() {
1659
+ const slotStartTimestamp = this.getSlotStartBuildTimestamp();
1660
+ return Number((this.dateProvider.now() / 1000 - slotStartTimestamp).toFixed(3));
1661
+ }
1662
+ getPublisher() {
1663
+ return this.publisher;
1664
+ }
1665
+ }