@aztec/prover-client 0.0.1-commit.9b94fc1 → 0.0.1-commit.bf2612ae
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.
- package/dest/config.d.ts +2 -2
- package/dest/config.d.ts.map +1 -1
- package/dest/config.js +1 -1
- package/dest/light/index.d.ts +2 -0
- package/dest/light/index.d.ts.map +1 -0
- package/dest/light/index.js +1 -0
- package/dest/light/lightweight_checkpoint_builder.d.ts +30 -14
- package/dest/light/lightweight_checkpoint_builder.d.ts.map +1 -1
- package/dest/light/lightweight_checkpoint_builder.js +109 -22
- package/dest/mocks/fixtures.js +4 -4
- package/dest/mocks/test_context.d.ts +5 -3
- package/dest/mocks/test_context.d.ts.map +1 -1
- package/dest/mocks/test_context.js +25 -11
- package/dest/orchestrator/block-building-helpers.d.ts +4 -4
- package/dest/orchestrator/block-building-helpers.d.ts.map +1 -1
- package/dest/orchestrator/block-building-helpers.js +5 -4
- package/dest/orchestrator/block-proving-state.d.ts +5 -4
- package/dest/orchestrator/block-proving-state.d.ts.map +1 -1
- package/dest/orchestrator/block-proving-state.js +1 -1
- package/dest/orchestrator/checkpoint-proving-state.d.ts +20 -6
- package/dest/orchestrator/checkpoint-proving-state.d.ts.map +1 -1
- package/dest/orchestrator/checkpoint-proving-state.js +40 -5
- package/dest/orchestrator/epoch-proving-state.d.ts +8 -7
- package/dest/orchestrator/epoch-proving-state.d.ts.map +1 -1
- package/dest/orchestrator/epoch-proving-state.js +36 -2
- package/dest/orchestrator/orchestrator.d.ts +21 -8
- package/dest/orchestrator/orchestrator.d.ts.map +1 -1
- package/dest/orchestrator/orchestrator.js +479 -77
- package/dest/orchestrator/orchestrator_metrics.d.ts +1 -3
- package/dest/orchestrator/orchestrator_metrics.d.ts.map +1 -1
- package/dest/orchestrator/orchestrator_metrics.js +2 -15
- package/dest/orchestrator/tx-proving-state.d.ts +6 -5
- package/dest/orchestrator/tx-proving-state.d.ts.map +1 -1
- package/dest/orchestrator/tx-proving-state.js +8 -8
- package/dest/prover-client/factory.d.ts +3 -3
- package/dest/prover-client/factory.d.ts.map +1 -1
- package/dest/prover-client/prover-client.d.ts +3 -3
- package/dest/prover-client/prover-client.d.ts.map +1 -1
- package/dest/prover-client/prover-client.js +2 -2
- package/dest/prover-client/server-epoch-prover.d.ts +5 -5
- package/dest/prover-client/server-epoch-prover.d.ts.map +1 -1
- package/dest/proving_broker/broker_prover_facade.d.ts +4 -3
- package/dest/proving_broker/broker_prover_facade.d.ts.map +1 -1
- package/dest/proving_broker/broker_prover_facade.js +3 -10
- package/dest/proving_broker/config.d.ts +6 -2
- package/dest/proving_broker/config.d.ts.map +1 -1
- package/dest/proving_broker/config.js +8 -2
- package/dest/proving_broker/fixtures.js +1 -1
- package/dest/proving_broker/proving_agent.d.ts +3 -8
- package/dest/proving_broker/proving_agent.d.ts.map +1 -1
- package/dest/proving_broker/proving_agent.js +1 -16
- package/dest/proving_broker/proving_broker.d.ts +1 -1
- package/dest/proving_broker/proving_broker.d.ts.map +1 -1
- package/dest/proving_broker/proving_broker.js +4 -10
- package/dest/proving_broker/proving_broker_database/persisted.d.ts +3 -2
- package/dest/proving_broker/proving_broker_database/persisted.d.ts.map +1 -1
- package/dest/proving_broker/proving_broker_database/persisted.js +389 -1
- package/dest/proving_broker/proving_broker_instrumentation.d.ts +1 -1
- package/dest/proving_broker/proving_broker_instrumentation.d.ts.map +1 -1
- package/dest/proving_broker/proving_broker_instrumentation.js +11 -35
- package/dest/proving_broker/proving_job_controller.d.ts +1 -1
- package/dest/proving_broker/proving_job_controller.d.ts.map +1 -1
- package/dest/proving_broker/proving_job_controller.js +2 -3
- package/dest/test/mock_proof_store.d.ts +3 -3
- package/dest/test/mock_proof_store.d.ts.map +1 -1
- package/dest/test/mock_prover.d.ts +2 -2
- package/dest/test/mock_prover.d.ts.map +1 -1
- package/dest/test/mock_prover.js +4 -4
- package/package.json +20 -19
- package/src/config.ts +1 -1
- package/src/light/index.ts +1 -0
- package/src/light/lightweight_checkpoint_builder.ts +161 -29
- package/src/mocks/fixtures.ts +4 -4
- package/src/mocks/test_context.ts +25 -10
- package/src/orchestrator/block-building-helpers.ts +5 -4
- package/src/orchestrator/block-proving-state.ts +3 -2
- package/src/orchestrator/checkpoint-proving-state.ts +56 -8
- package/src/orchestrator/epoch-proving-state.ts +63 -12
- package/src/orchestrator/orchestrator.ts +76 -60
- package/src/orchestrator/orchestrator_metrics.ts +2 -25
- package/src/orchestrator/tx-proving-state.ts +10 -14
- package/src/prover-client/factory.ts +6 -2
- package/src/prover-client/prover-client.ts +11 -12
- package/src/prover-client/server-epoch-prover.ts +4 -4
- package/src/proving_broker/broker_prover_facade.ts +4 -14
- package/src/proving_broker/config.ts +10 -1
- package/src/proving_broker/fixtures.ts +1 -1
- package/src/proving_broker/proving_agent.ts +1 -17
- package/src/proving_broker/proving_broker.ts +4 -8
- package/src/proving_broker/proving_broker_database/persisted.ts +15 -1
- package/src/proving_broker/proving_broker_instrumentation.ts +10 -35
- package/src/proving_broker/proving_job_controller.ts +2 -3
- package/src/test/mock_prover.ts +2 -14
- package/dest/block-factory/index.d.ts +0 -2
- package/dest/block-factory/index.d.ts.map +0 -1
- package/dest/block-factory/index.js +0 -1
- package/dest/block-factory/light.d.ts +0 -38
- package/dest/block-factory/light.d.ts.map +0 -1
- package/dest/block-factory/light.js +0 -108
- package/dest/proving_broker/proving_agent_instrumentation.d.ts +0 -8
- package/dest/proving_broker/proving_agent_instrumentation.d.ts.map +0 -1
- package/dest/proving_broker/proving_agent_instrumentation.js +0 -16
- package/src/block-factory/index.ts +0 -1
- package/src/block-factory/light.ts +0 -137
- package/src/proving_broker/proving_agent_instrumentation.ts +0 -21
|
@@ -1,19 +1,386 @@
|
|
|
1
|
-
function
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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
|
+
};
|
|
6
369
|
}
|
|
370
|
+
function _apply_decs_2203_r(targetClass, memberDecs, classDecs, parentClass) {
|
|
371
|
+
return (_apply_decs_2203_r = applyDecs2203RFactory())(targetClass, memberDecs, classDecs, parentClass);
|
|
372
|
+
}
|
|
373
|
+
var _dec, _dec1, _dec2, _dec3, _dec4, _initProto;
|
|
7
374
|
import { L1_TO_L2_MSG_SUBTREE_HEIGHT, L1_TO_L2_MSG_SUBTREE_ROOT_SIBLING_PATH_LENGTH, NESTED_RECURSIVE_ROLLUP_HONK_PROOF_LENGTH, NUMBER_OF_L1_L2_MESSAGES_PER_ROLLUP, NUM_BASE_PARITY_PER_ROOT_PARITY } from '@aztec/constants';
|
|
375
|
+
import { BlockNumber } from '@aztec/foundation/branded-types';
|
|
8
376
|
import { padArrayEnd } from '@aztec/foundation/collection';
|
|
377
|
+
import { Fr } from '@aztec/foundation/curves/bn254';
|
|
9
378
|
import { AbortError } from '@aztec/foundation/error';
|
|
10
|
-
import { Fr } from '@aztec/foundation/fields';
|
|
11
379
|
import { createLogger } from '@aztec/foundation/log';
|
|
12
380
|
import { promiseWithResolvers } from '@aztec/foundation/promise';
|
|
13
381
|
import { assertLength } from '@aztec/foundation/serialize';
|
|
14
382
|
import { pushTestData } from '@aztec/foundation/testing';
|
|
15
383
|
import { elapsed } from '@aztec/foundation/timer';
|
|
16
|
-
import { readAvmMinimalPublicTxInputsFromFile } from '@aztec/simulator/public/fixtures';
|
|
17
384
|
import { BlockRootEmptyTxFirstRollupPrivateInputs, BlockRootFirstRollupPrivateInputs, BlockRootSingleTxFirstRollupPrivateInputs, BlockRootSingleTxRollupPrivateInputs, CheckpointRootSingleBlockRollupPrivateInputs, PrivateTxBaseRollupPrivateInputs } from '@aztec/stdlib/rollup';
|
|
18
385
|
import { MerkleTreeId } from '@aztec/stdlib/trees';
|
|
19
386
|
import { Attributes, getTelemetryClient, trackSpan, wrapCallbackInSpan } from '@aztec/telemetry-client';
|
|
@@ -23,6 +390,15 @@ import { EpochProvingState } from './epoch-proving-state.js';
|
|
|
23
390
|
import { ProvingOrchestratorMetrics } from './orchestrator_metrics.js';
|
|
24
391
|
import { TxProvingState } from './tx-proving-state.js';
|
|
25
392
|
const logger = createLogger('prover-client:orchestrator');
|
|
393
|
+
_dec = trackSpan('ProvingOrchestrator.startNewBlock', (blockNumber)=>({
|
|
394
|
+
[Attributes.BLOCK_NUMBER]: blockNumber
|
|
395
|
+
})), _dec1 = trackSpan('ProvingOrchestrator.addTxs', (txs)=>({
|
|
396
|
+
[Attributes.BLOCK_TXS_COUNT]: txs.length
|
|
397
|
+
})), _dec2 = trackSpan('ProvingOrchestrator.startChonkVerifierCircuits'), _dec3 = trackSpan('ProvingOrchestrator.setBlockCompleted', (blockNumber)=>({
|
|
398
|
+
[Attributes.BLOCK_NUMBER]: blockNumber
|
|
399
|
+
})), _dec4 = trackSpan('ProvingOrchestrator.prepareBaseRollupInputs', (tx)=>({
|
|
400
|
+
[Attributes.TX_HASH]: tx.hash.toString()
|
|
401
|
+
}));
|
|
26
402
|
/**
|
|
27
403
|
* Implements an event driven proving scheduler to build the recursive proof tree. The idea being:
|
|
28
404
|
* 1. Transactions are provided to the scheduler post simulation.
|
|
@@ -38,16 +414,48 @@ const logger = createLogger('prover-client:orchestrator');
|
|
|
38
414
|
dbProvider;
|
|
39
415
|
prover;
|
|
40
416
|
proverId;
|
|
417
|
+
cancelJobsOnStop;
|
|
418
|
+
static{
|
|
419
|
+
({ e: [_initProto] } = _apply_decs_2203_r(this, [
|
|
420
|
+
[
|
|
421
|
+
_dec,
|
|
422
|
+
2,
|
|
423
|
+
"startNewBlock"
|
|
424
|
+
],
|
|
425
|
+
[
|
|
426
|
+
_dec1,
|
|
427
|
+
2,
|
|
428
|
+
"addTxs"
|
|
429
|
+
],
|
|
430
|
+
[
|
|
431
|
+
_dec2,
|
|
432
|
+
2,
|
|
433
|
+
"startChonkVerifierCircuits"
|
|
434
|
+
],
|
|
435
|
+
[
|
|
436
|
+
_dec3,
|
|
437
|
+
2,
|
|
438
|
+
"setBlockCompleted"
|
|
439
|
+
],
|
|
440
|
+
[
|
|
441
|
+
_dec4,
|
|
442
|
+
2,
|
|
443
|
+
"prepareBaseRollupInputs"
|
|
444
|
+
]
|
|
445
|
+
], []));
|
|
446
|
+
}
|
|
41
447
|
provingState;
|
|
42
448
|
pendingProvingJobs;
|
|
43
449
|
provingPromise;
|
|
44
450
|
metrics;
|
|
451
|
+
// eslint-disable-next-line aztec-custom/no-non-primitive-in-collections
|
|
45
452
|
dbs;
|
|
46
|
-
constructor(dbProvider, prover, proverId, telemetryClient = getTelemetryClient()){
|
|
453
|
+
constructor(dbProvider, prover, proverId, cancelJobsOnStop = false, telemetryClient = getTelemetryClient()){
|
|
47
454
|
this.dbProvider = dbProvider;
|
|
48
455
|
this.prover = prover;
|
|
49
456
|
this.proverId = proverId;
|
|
50
|
-
this.
|
|
457
|
+
this.cancelJobsOnStop = cancelJobsOnStop;
|
|
458
|
+
this.provingState = (_initProto(this), undefined);
|
|
51
459
|
this.pendingProvingJobs = [];
|
|
52
460
|
this.provingPromise = undefined;
|
|
53
461
|
this.dbs = new Map();
|
|
@@ -59,6 +467,9 @@ const logger = createLogger('prover-client:orchestrator');
|
|
|
59
467
|
getProverId() {
|
|
60
468
|
return this.proverId;
|
|
61
469
|
}
|
|
470
|
+
getNumActiveForks() {
|
|
471
|
+
return this.dbs.size;
|
|
472
|
+
}
|
|
62
473
|
stop() {
|
|
63
474
|
this.cancel();
|
|
64
475
|
return Promise.resolve();
|
|
@@ -76,7 +487,14 @@ const logger = createLogger('prover-client:orchestrator');
|
|
|
76
487
|
this.provingState = new EpochProvingState(epochNumber, totalNumCheckpoints, finalBlobBatchingChallenges, (provingState)=>this.checkAndEnqueueCheckpointRootRollup(provingState), resolve, reject);
|
|
77
488
|
this.provingPromise = promise;
|
|
78
489
|
}
|
|
79
|
-
|
|
490
|
+
/**
|
|
491
|
+
* Starts a new checkpoint.
|
|
492
|
+
* @param checkpointIndex - The index of the checkpoint in the epoch.
|
|
493
|
+
* @param constants - The constants for this checkpoint.
|
|
494
|
+
* @param l1ToL2Messages - The set of L1 to L2 messages to be inserted at the beginning of this checkpoint.
|
|
495
|
+
* @param totalNumBlocks - The total number of blocks expected in the checkpoint (must be at least one).
|
|
496
|
+
* @param headerOfLastBlockInPreviousCheckpoint - The header of the last block in the previous checkpoint.
|
|
497
|
+
*/ async startNewCheckpoint(checkpointIndex, constants, l1ToL2Messages, totalNumBlocks, headerOfLastBlockInPreviousCheckpoint) {
|
|
80
498
|
if (!this.provingState) {
|
|
81
499
|
throw new Error('Empty epoch proving state. Call startNewEpoch before starting a checkpoint.');
|
|
82
500
|
}
|
|
@@ -86,8 +504,11 @@ const logger = createLogger('prover-client:orchestrator');
|
|
|
86
504
|
// Fork world state at the end of the immediately previous block.
|
|
87
505
|
const lastBlockNumber = headerOfLastBlockInPreviousCheckpoint.globalVariables.blockNumber;
|
|
88
506
|
const db = await this.dbProvider.fork(lastBlockNumber);
|
|
89
|
-
const firstBlockNumber = lastBlockNumber + 1;
|
|
90
|
-
this.dbs.set(firstBlockNumber,
|
|
507
|
+
const firstBlockNumber = BlockNumber(lastBlockNumber + 1);
|
|
508
|
+
this.dbs.set(firstBlockNumber, {
|
|
509
|
+
fork: db,
|
|
510
|
+
cleanupPromise: undefined
|
|
511
|
+
});
|
|
91
512
|
// Get archive sibling path before any block in this checkpoint lands.
|
|
92
513
|
const lastArchiveSiblingPath = await getLastSiblingPath(MerkleTreeId.ARCHIVE, db);
|
|
93
514
|
// Insert all the l1 to l2 messages into the db. And get the states before and after the insertion.
|
|
@@ -116,10 +537,13 @@ const logger = createLogger('prover-client:orchestrator');
|
|
|
116
537
|
// Fork the db only when it's not already set. The db for the first block is set in `startNewCheckpoint`.
|
|
117
538
|
if (!this.dbs.has(blockNumber)) {
|
|
118
539
|
// Fork world state at the end of the immediately previous block
|
|
119
|
-
const db = await this.dbProvider.fork(blockNumber - 1);
|
|
120
|
-
this.dbs.set(blockNumber,
|
|
540
|
+
const db = await this.dbProvider.fork(BlockNumber(blockNumber - 1));
|
|
541
|
+
this.dbs.set(blockNumber, {
|
|
542
|
+
fork: db,
|
|
543
|
+
cleanupPromise: undefined
|
|
544
|
+
});
|
|
121
545
|
}
|
|
122
|
-
const db = this.dbs.get(blockNumber);
|
|
546
|
+
const db = this.dbs.get(blockNumber).fork;
|
|
123
547
|
// Get archive snapshot and sibling path before any txs in this block lands.
|
|
124
548
|
const lastArchiveTreeSnapshot = await getTreeSnapshot(MerkleTreeId.ARCHIVE, db);
|
|
125
549
|
const lastArchiveSiblingPath = await getRootTreeSiblingPath(MerkleTreeId.ARCHIVE, db);
|
|
@@ -139,7 +563,8 @@ const logger = createLogger('prover-client:orchestrator');
|
|
|
139
563
|
const blockEndBlobFields = blockProvingState.getBlockEndBlobFields();
|
|
140
564
|
await endSpongeBlob.absorb(blockEndBlobFields);
|
|
141
565
|
blockProvingState.setEndSpongeBlob(endSpongeBlob);
|
|
142
|
-
//
|
|
566
|
+
// Try to accumulate the out hashes and blobs as far as we can:
|
|
567
|
+
await this.provingState.accumulateCheckpointOutHashes();
|
|
143
568
|
await this.provingState.setBlobAccumulators();
|
|
144
569
|
}
|
|
145
570
|
}
|
|
@@ -156,7 +581,7 @@ const logger = createLogger('prover-client:orchestrator');
|
|
|
156
581
|
logger.warn(`Provided no txs to orchestrator addTxs.`);
|
|
157
582
|
return;
|
|
158
583
|
}
|
|
159
|
-
const blockNumber = txs[0].globalVariables.blockNumber;
|
|
584
|
+
const blockNumber = BlockNumber(txs[0].globalVariables.blockNumber);
|
|
160
585
|
const provingState = this.provingState.getBlockProvingStateByBlockNumber(blockNumber);
|
|
161
586
|
if (!provingState) {
|
|
162
587
|
throw new Error(`Proving state for block ${blockNumber} not found. Call startNewBlock first.`);
|
|
@@ -168,7 +593,7 @@ const logger = createLogger('prover-client:orchestrator');
|
|
|
168
593
|
throw new Error(`Block ${blockNumber} has been initialized with transactions.`);
|
|
169
594
|
}
|
|
170
595
|
logger.info(`Adding ${txs.length} transactions to block ${blockNumber}`);
|
|
171
|
-
const db = this.dbs.get(blockNumber);
|
|
596
|
+
const db = this.dbs.get(blockNumber).fork;
|
|
172
597
|
const lastArchive = provingState.lastArchiveTreeSnapshot;
|
|
173
598
|
const newL1ToL2MessageTreeSnapshot = provingState.newL1ToL2MessageTreeSnapshot;
|
|
174
599
|
const spongeBlobState = provingState.getStartSpongeBlob().clone();
|
|
@@ -178,7 +603,7 @@ const logger = createLogger('prover-client:orchestrator');
|
|
|
178
603
|
throw new Error(`Invalid proving state when adding a tx`);
|
|
179
604
|
}
|
|
180
605
|
validateTx(tx);
|
|
181
|
-
logger.
|
|
606
|
+
logger.debug(`Received transaction: ${tx.hash}`);
|
|
182
607
|
const startSpongeBlob = spongeBlobState.clone();
|
|
183
608
|
const [hints, treeSnapshots] = await this.prepareBaseRollupInputs(tx, lastArchive, newL1ToL2MessageTreeSnapshot, startSpongeBlob, db);
|
|
184
609
|
if (!provingState.verifyState()) {
|
|
@@ -206,7 +631,8 @@ const logger = createLogger('prover-client:orchestrator');
|
|
|
206
631
|
const blockEndBlobFields = provingState.getBlockEndBlobFields();
|
|
207
632
|
await spongeBlobState.absorb(blockEndBlobFields);
|
|
208
633
|
provingState.setEndSpongeBlob(spongeBlobState);
|
|
209
|
-
// Txs have been added to the block. Now try to accumulate the blobs as far as we can:
|
|
634
|
+
// Txs have been added to the block. Now try to accumulate the out hashes and blobs as far as we can:
|
|
635
|
+
await this.provingState.accumulateCheckpointOutHashes();
|
|
210
636
|
await this.provingState.setBlobAccumulators();
|
|
211
637
|
}
|
|
212
638
|
/**
|
|
@@ -257,7 +683,7 @@ const logger = createLogger('prover-client:orchestrator');
|
|
|
257
683
|
throw new Error('Block header mismatch');
|
|
258
684
|
}
|
|
259
685
|
// Get db for this block
|
|
260
|
-
const db = this.dbs.get(provingState.blockNumber);
|
|
686
|
+
const db = this.dbs.get(provingState.blockNumber).fork;
|
|
261
687
|
// Update the archive tree, so we're ready to start processing the next block:
|
|
262
688
|
logger.verbose(`Updating archive tree with block ${provingState.blockNumber} header ${(await header.hash()).toString()}`);
|
|
263
689
|
await db.updateArchive(header);
|
|
@@ -284,7 +710,7 @@ const logger = createLogger('prover-client:orchestrator');
|
|
|
284
710
|
}
|
|
285
711
|
// Get db for this block
|
|
286
712
|
const blockNumber = provingState.blockNumber;
|
|
287
|
-
const db = this.dbs.get(blockNumber);
|
|
713
|
+
const db = this.dbs.get(blockNumber).fork;
|
|
288
714
|
const newArchive = await getTreeSnapshot(MerkleTreeId.ARCHIVE, db);
|
|
289
715
|
const syncedArchive = await getTreeSnapshot(MerkleTreeId.ARCHIVE, this.dbProvider.getSnapshot(blockNumber));
|
|
290
716
|
if (!syncedArchive.equals(newArchive)) {
|
|
@@ -302,14 +728,17 @@ const logger = createLogger('prover-client:orchestrator');
|
|
|
302
728
|
// is aborted and never reaches this point, it will leak the fork. We need to add a global cleanup,
|
|
303
729
|
// but have to make sure it only runs once all operations are completed, otherwise some function here
|
|
304
730
|
// will attempt to access the fork after it was closed.
|
|
305
|
-
|
|
306
|
-
void this.dbs.get(blockNumber)?.close().then(()=>this.dbs.delete(blockNumber)).catch((err)=>logger.error(`Error closing db for block ${blockNumber}`, err));
|
|
731
|
+
void this.cleanupDBFork(blockNumber);
|
|
307
732
|
}
|
|
308
733
|
/**
|
|
309
|
-
* Cancel any further proving
|
|
734
|
+
* Cancel any further proving.
|
|
735
|
+
* If cancelJobsOnStop is true, aborts all pending jobs with the broker (which marks them as 'Aborted').
|
|
736
|
+
* If cancelJobsOnStop is false (default), jobs remain in the broker queue and can be reused on restart/reorg.
|
|
310
737
|
*/ cancel() {
|
|
311
|
-
|
|
312
|
-
controller.
|
|
738
|
+
if (this.cancelJobsOnStop) {
|
|
739
|
+
for (const controller of this.pendingProvingJobs){
|
|
740
|
+
controller.abort();
|
|
741
|
+
}
|
|
313
742
|
}
|
|
314
743
|
this.provingState?.cancel();
|
|
315
744
|
}
|
|
@@ -331,6 +760,22 @@ const logger = createLogger('prover-client:orchestrator');
|
|
|
331
760
|
});
|
|
332
761
|
return epochProofResult;
|
|
333
762
|
}
|
|
763
|
+
async cleanupDBFork(blockNumber) {
|
|
764
|
+
logger.debug(`Cleaning up world state fork for ${blockNumber}`);
|
|
765
|
+
const fork = this.dbs.get(blockNumber);
|
|
766
|
+
if (!fork) {
|
|
767
|
+
return;
|
|
768
|
+
}
|
|
769
|
+
try {
|
|
770
|
+
if (!fork.cleanupPromise) {
|
|
771
|
+
fork.cleanupPromise = fork.fork.close();
|
|
772
|
+
}
|
|
773
|
+
await fork.cleanupPromise;
|
|
774
|
+
this.dbs.delete(blockNumber);
|
|
775
|
+
} catch (err) {
|
|
776
|
+
logger.error(`Error closing db for block ${blockNumber}`, err);
|
|
777
|
+
}
|
|
778
|
+
}
|
|
334
779
|
/**
|
|
335
780
|
* Enqueue a job to be scheduled
|
|
336
781
|
* @param provingState - The proving state object being operated on
|
|
@@ -539,16 +984,18 @@ const logger = createLogger('prover-client:orchestrator');
|
|
|
539
984
|
return this.prover.getBlockRootRollupProof(inputs, signal, provingState.epochNumber);
|
|
540
985
|
}
|
|
541
986
|
}), async (result)=>{
|
|
542
|
-
// If the proofs were slower than the block header building, then we need to try validating the block header hashes here.
|
|
543
|
-
await this.verifyBuiltBlockAgainstSyncedState(provingState);
|
|
544
987
|
logger.debug(`Completed ${rollupType} proof for block ${provingState.blockNumber}`);
|
|
545
988
|
const leafLocation = provingState.setBlockRootRollupProof(result);
|
|
546
989
|
const checkpointProvingState = provingState.parentCheckpoint;
|
|
990
|
+
// If the proofs were slower than the block header building, then we need to try validating the block header hashes here.
|
|
991
|
+
await this.verifyBuiltBlockAgainstSyncedState(provingState);
|
|
547
992
|
if (checkpointProvingState.totalNumBlocks === 1) {
|
|
548
993
|
this.checkAndEnqueueCheckpointRootRollup(checkpointProvingState);
|
|
549
994
|
} else {
|
|
550
995
|
this.checkAndEnqueueNextBlockMergeRollup(checkpointProvingState, leafLocation);
|
|
551
996
|
}
|
|
997
|
+
// We are finished with the block at this point, ensure the fork is cleaned up
|
|
998
|
+
void this.cleanupDBFork(provingState.blockNumber);
|
|
552
999
|
});
|
|
553
1000
|
}
|
|
554
1001
|
// Executes the base parity circuit and stores the intermediate state for the root parity circuit
|
|
@@ -771,37 +1218,15 @@ const logger = createLogger('prover-client:orchestrator');
|
|
|
771
1218
|
return;
|
|
772
1219
|
}
|
|
773
1220
|
const txProvingState = provingState.getTxProvingState(txIndex);
|
|
774
|
-
// This function tries to do AVM proving. If there is a failure, it fakes the proof unless AVM_PROVING_STRICT is defined.
|
|
775
|
-
// Nothing downstream depends on the AVM proof yet. So having this mode lets us incrementally build the AVM circuit.
|
|
776
1221
|
const doAvmProving = wrapCallbackInSpan(this.tracer, 'ProvingOrchestrator.prover.getAvmProof', {
|
|
777
1222
|
[Attributes.TX_HASH]: txProvingState.processedTx.hash.toString()
|
|
778
1223
|
}, async (signal)=>{
|
|
779
1224
|
const inputs = txProvingState.getAvmInputs();
|
|
780
|
-
|
|
781
|
-
// TODO(#14234)[Unconditional PIs validation]: Remove the whole try-catch logic and
|
|
782
|
-
// just keep the next line but removing the second argument (false).
|
|
783
|
-
return await this.prover.getAvmProof(inputs, false, signal, provingState.epochNumber);
|
|
784
|
-
} catch (err) {
|
|
785
|
-
if (process.env.AVM_PROVING_STRICT) {
|
|
786
|
-
logger.error(`Error thrown when proving AVM circuit with AVM_PROVING_STRICT on`, err);
|
|
787
|
-
throw err;
|
|
788
|
-
} else {
|
|
789
|
-
logger.warn(`Error thrown when proving AVM circuit but AVM_PROVING_STRICT is off. Use snapshotted
|
|
790
|
-
AVM inputs and carrying on. ${inspect(err)}.`);
|
|
791
|
-
try {
|
|
792
|
-
this.metrics.incAvmFallback();
|
|
793
|
-
const snapshotAvmPrivateInputs = readAvmMinimalPublicTxInputsFromFile();
|
|
794
|
-
return await this.prover.getAvmProof(snapshotAvmPrivateInputs, true, signal, provingState.epochNumber);
|
|
795
|
-
} catch (err) {
|
|
796
|
-
logger.error(`Error thrown when proving snapshotted AVM inputs.`, err);
|
|
797
|
-
throw err;
|
|
798
|
-
}
|
|
799
|
-
}
|
|
800
|
-
}
|
|
1225
|
+
return await this.prover.getAvmProof(inputs, signal, provingState.epochNumber);
|
|
801
1226
|
});
|
|
802
|
-
this.deferredProving(provingState, doAvmProving, (
|
|
1227
|
+
this.deferredProving(provingState, doAvmProving, (proof)=>{
|
|
803
1228
|
logger.debug(`Proven VM for tx index: ${txIndex}`);
|
|
804
|
-
txProvingState.setAvmProof(
|
|
1229
|
+
txProvingState.setAvmProof(proof);
|
|
805
1230
|
this.checkAndEnqueueBaseRollup(provingState, txIndex);
|
|
806
1231
|
});
|
|
807
1232
|
}
|
|
@@ -815,26 +1240,3 @@ const logger = createLogger('prover-client:orchestrator');
|
|
|
815
1240
|
this.enqueueBaseRollup(provingState, txIndex);
|
|
816
1241
|
}
|
|
817
1242
|
}
|
|
818
|
-
_ts_decorate([
|
|
819
|
-
trackSpan('ProvingOrchestrator.startNewBlock', (blockNumber)=>({
|
|
820
|
-
[Attributes.BLOCK_NUMBER]: blockNumber
|
|
821
|
-
}))
|
|
822
|
-
], ProvingOrchestrator.prototype, "startNewBlock", null);
|
|
823
|
-
_ts_decorate([
|
|
824
|
-
trackSpan('ProvingOrchestrator.addTxs', (txs)=>({
|
|
825
|
-
[Attributes.BLOCK_TXS_COUNT]: txs.length
|
|
826
|
-
}))
|
|
827
|
-
], ProvingOrchestrator.prototype, "addTxs", null);
|
|
828
|
-
_ts_decorate([
|
|
829
|
-
trackSpan('ProvingOrchestrator.startChonkVerifierCircuits')
|
|
830
|
-
], ProvingOrchestrator.prototype, "startChonkVerifierCircuits", null);
|
|
831
|
-
_ts_decorate([
|
|
832
|
-
trackSpan('ProvingOrchestrator.setBlockCompleted', (blockNumber)=>({
|
|
833
|
-
[Attributes.BLOCK_NUMBER]: blockNumber
|
|
834
|
-
}))
|
|
835
|
-
], ProvingOrchestrator.prototype, "setBlockCompleted", null);
|
|
836
|
-
_ts_decorate([
|
|
837
|
-
trackSpan('ProvingOrchestrator.prepareBaseRollupInputs', (tx)=>({
|
|
838
|
-
[Attributes.TX_HASH]: tx.hash.toString()
|
|
839
|
-
}))
|
|
840
|
-
], ProvingOrchestrator.prototype, "prepareBaseRollupInputs", null);
|