@aztec/ethereum 0.0.1-commit.6c91f13 → 0.0.1-commit.6d3c34e
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/contracts/fee_asset_handler.d.ts +6 -5
- package/dest/contracts/fee_asset_handler.d.ts.map +1 -1
- package/dest/contracts/fee_asset_handler.js +9 -9
- package/dest/contracts/governance_proposer.js +382 -8
- package/dest/contracts/index.d.ts +2 -1
- package/dest/contracts/index.d.ts.map +1 -1
- package/dest/contracts/index.js +1 -0
- package/dest/contracts/outbox.d.ts +41 -0
- package/dest/contracts/outbox.d.ts.map +1 -0
- package/dest/contracts/outbox.js +86 -0
- package/dest/contracts/rollup.d.ts +128 -95
- package/dest/contracts/rollup.d.ts.map +1 -1
- package/dest/contracts/rollup.js +602 -127
- package/dest/deploy_aztec_l1_contracts.d.ts +10 -2
- package/dest/deploy_aztec_l1_contracts.d.ts.map +1 -1
- package/dest/deploy_aztec_l1_contracts.js +60 -11
- package/dest/l1_artifacts.d.ts +3512 -1082
- package/dest/l1_artifacts.d.ts.map +1 -1
- package/dest/l1_tx_utils/fee-strategies/index.d.ts +3 -2
- package/dest/l1_tx_utils/fee-strategies/index.d.ts.map +1 -1
- package/dest/l1_tx_utils/fee-strategies/index.js +2 -1
- package/dest/l1_tx_utils/fee-strategies/p75_competitive.d.ts +2 -12
- package/dest/l1_tx_utils/fee-strategies/p75_competitive.d.ts.map +1 -1
- package/dest/l1_tx_utils/fee-strategies/p75_competitive.js +35 -17
- package/dest/l1_tx_utils/fee-strategies/p75_competitive_blob_txs_only.d.ts +2 -11
- package/dest/l1_tx_utils/fee-strategies/p75_competitive_blob_txs_only.d.ts.map +1 -1
- package/dest/l1_tx_utils/fee-strategies/p75_competitive_blob_txs_only.js +36 -18
- package/dest/l1_tx_utils/fee-strategies/types.d.ts +14 -27
- package/dest/l1_tx_utils/fee-strategies/types.d.ts.map +1 -1
- package/dest/l1_tx_utils/fee-strategies/types.js +0 -21
- package/dest/l1_tx_utils/l1_fee_analyzer.d.ts +2 -2
- package/dest/l1_tx_utils/l1_fee_analyzer.d.ts.map +1 -1
- package/dest/l1_tx_utils/l1_fee_analyzer.js +3 -3
- package/dest/l1_tx_utils/readonly_l1_tx_utils.d.ts +1 -5
- package/dest/l1_tx_utils/readonly_l1_tx_utils.d.ts.map +1 -1
- package/dest/l1_tx_utils/readonly_l1_tx_utils.js +14 -51
- package/dest/queries.js +2 -2
- package/dest/test/chain_monitor.js +1 -2
- package/dest/test/rollup_cheat_codes.d.ts +2 -1
- package/dest/test/rollup_cheat_codes.d.ts.map +1 -1
- package/dest/test/rollup_cheat_codes.js +9 -1
- package/package.json +5 -5
- package/src/contracts/fee_asset_handler.ts +8 -7
- package/src/contracts/index.ts +1 -0
- package/src/contracts/outbox.ts +98 -0
- package/src/contracts/rollup.ts +240 -92
- package/src/deploy_aztec_l1_contracts.ts +61 -13
- package/src/l1_tx_utils/fee-strategies/index.ts +1 -1
- package/src/l1_tx_utils/fee-strategies/p75_competitive.ts +45 -41
- package/src/l1_tx_utils/fee-strategies/p75_competitive_blob_txs_only.ts +48 -44
- package/src/l1_tx_utils/fee-strategies/types.ts +14 -46
- package/src/l1_tx_utils/l1_fee_analyzer.ts +2 -3
- package/src/l1_tx_utils/readonly_l1_tx_utils.ts +20 -59
- package/src/queries.ts +2 -2
- package/src/test/chain_monitor.ts +1 -1
- package/src/test/rollup_cheat_codes.ts +10 -1
package/dest/contracts/rollup.js
CHANGED
|
@@ -1,10 +1,379 @@
|
|
|
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 _initProto;
|
|
7
374
|
import { CheckpointNumber, EpochNumber, SlotNumber } from '@aztec/foundation/branded-types';
|
|
375
|
+
import { Buffer32 } from '@aztec/foundation/buffer';
|
|
376
|
+
import { Fr } from '@aztec/foundation/curves/bn254';
|
|
8
377
|
import { memoize } from '@aztec/foundation/decorators';
|
|
9
378
|
import { EthAddress } from '@aztec/foundation/eth-address';
|
|
10
379
|
import { makeBackoff, retry } from '@aztec/foundation/retry';
|
|
@@ -25,8 +394,117 @@ export var SlashingProposerType = /*#__PURE__*/ function(SlashingProposerType) {
|
|
|
25
394
|
SlashingProposerType[SlashingProposerType["Empire"] = 2] = "Empire";
|
|
26
395
|
return SlashingProposerType;
|
|
27
396
|
}({});
|
|
397
|
+
/**
|
|
398
|
+
* Status of a validator/attester in the staking system.
|
|
399
|
+
* Matches the Status enum in StakingLib.sol
|
|
400
|
+
*/ export var AttesterStatus = /*#__PURE__*/ function(AttesterStatus) {
|
|
401
|
+
AttesterStatus[AttesterStatus["NONE"] = 0] = "NONE";
|
|
402
|
+
AttesterStatus[AttesterStatus["VALIDATING"] = 1] = "VALIDATING";
|
|
403
|
+
AttesterStatus[AttesterStatus["ZOMBIE"] = 2] = "ZOMBIE";
|
|
404
|
+
AttesterStatus[AttesterStatus["EXITING"] = 3] = "EXITING";
|
|
405
|
+
return AttesterStatus;
|
|
406
|
+
}({});
|
|
28
407
|
export class RollupContract {
|
|
29
408
|
client;
|
|
409
|
+
static{
|
|
410
|
+
({ e: [_initProto] } = _apply_decs_2203_r(this, [
|
|
411
|
+
[
|
|
412
|
+
memoize,
|
|
413
|
+
2,
|
|
414
|
+
"getL1StartBlock"
|
|
415
|
+
],
|
|
416
|
+
[
|
|
417
|
+
memoize,
|
|
418
|
+
2,
|
|
419
|
+
"getL1GenesisTime"
|
|
420
|
+
],
|
|
421
|
+
[
|
|
422
|
+
memoize,
|
|
423
|
+
2,
|
|
424
|
+
"getProofSubmissionEpochs"
|
|
425
|
+
],
|
|
426
|
+
[
|
|
427
|
+
memoize,
|
|
428
|
+
2,
|
|
429
|
+
"getEpochDuration"
|
|
430
|
+
],
|
|
431
|
+
[
|
|
432
|
+
memoize,
|
|
433
|
+
2,
|
|
434
|
+
"getSlotDuration"
|
|
435
|
+
],
|
|
436
|
+
[
|
|
437
|
+
memoize,
|
|
438
|
+
2,
|
|
439
|
+
"getTargetCommitteeSize"
|
|
440
|
+
],
|
|
441
|
+
[
|
|
442
|
+
memoize,
|
|
443
|
+
2,
|
|
444
|
+
"getEjectionThreshold"
|
|
445
|
+
],
|
|
446
|
+
[
|
|
447
|
+
memoize,
|
|
448
|
+
2,
|
|
449
|
+
"getLocalEjectionThreshold"
|
|
450
|
+
],
|
|
451
|
+
[
|
|
452
|
+
memoize,
|
|
453
|
+
2,
|
|
454
|
+
"getLagInEpochsForValidatorSet"
|
|
455
|
+
],
|
|
456
|
+
[
|
|
457
|
+
memoize,
|
|
458
|
+
2,
|
|
459
|
+
"getLagInEpochsForRandao"
|
|
460
|
+
],
|
|
461
|
+
[
|
|
462
|
+
memoize,
|
|
463
|
+
2,
|
|
464
|
+
"getActivationThreshold"
|
|
465
|
+
],
|
|
466
|
+
[
|
|
467
|
+
memoize,
|
|
468
|
+
2,
|
|
469
|
+
"getExitDelay"
|
|
470
|
+
],
|
|
471
|
+
[
|
|
472
|
+
memoize,
|
|
473
|
+
2,
|
|
474
|
+
"getManaTarget"
|
|
475
|
+
],
|
|
476
|
+
[
|
|
477
|
+
memoize,
|
|
478
|
+
2,
|
|
479
|
+
"getProvingCostPerMana"
|
|
480
|
+
],
|
|
481
|
+
[
|
|
482
|
+
memoize,
|
|
483
|
+
2,
|
|
484
|
+
"getProvingCostPerManaInFeeAsset"
|
|
485
|
+
],
|
|
486
|
+
[
|
|
487
|
+
memoize,
|
|
488
|
+
2,
|
|
489
|
+
"getManaLimit"
|
|
490
|
+
],
|
|
491
|
+
[
|
|
492
|
+
memoize,
|
|
493
|
+
2,
|
|
494
|
+
"getVersion"
|
|
495
|
+
],
|
|
496
|
+
[
|
|
497
|
+
memoize,
|
|
498
|
+
2,
|
|
499
|
+
"getGenesisArchiveTreeRoot"
|
|
500
|
+
],
|
|
501
|
+
[
|
|
502
|
+
memoize,
|
|
503
|
+
2,
|
|
504
|
+
"getRollupConstants"
|
|
505
|
+
]
|
|
506
|
+
], []));
|
|
507
|
+
}
|
|
30
508
|
rollup;
|
|
31
509
|
static cachedStfStorageSlot;
|
|
32
510
|
static get checkBlobStorageSlot() {
|
|
@@ -50,6 +528,7 @@ export class RollupContract {
|
|
|
50
528
|
}
|
|
51
529
|
constructor(client, address){
|
|
52
530
|
this.client = client;
|
|
531
|
+
_initProto(this);
|
|
53
532
|
if (address instanceof EthAddress) {
|
|
54
533
|
address = address.toString();
|
|
55
534
|
}
|
|
@@ -59,8 +538,8 @@ export class RollupContract {
|
|
|
59
538
|
client
|
|
60
539
|
});
|
|
61
540
|
}
|
|
62
|
-
getGSE() {
|
|
63
|
-
return this.rollup.read.getGSE();
|
|
541
|
+
async getGSE() {
|
|
542
|
+
return EthAddress.fromString(await this.rollup.read.getGSE());
|
|
64
543
|
}
|
|
65
544
|
get address() {
|
|
66
545
|
return this.rollup.address;
|
|
@@ -109,17 +588,17 @@ export class RollupContract {
|
|
|
109
588
|
getL1GenesisTime() {
|
|
110
589
|
return this.rollup.read.getGenesisTime();
|
|
111
590
|
}
|
|
112
|
-
getProofSubmissionEpochs() {
|
|
113
|
-
return this.rollup.read.getProofSubmissionEpochs();
|
|
591
|
+
async getProofSubmissionEpochs() {
|
|
592
|
+
return Number(await this.rollup.read.getProofSubmissionEpochs());
|
|
114
593
|
}
|
|
115
|
-
getEpochDuration() {
|
|
116
|
-
return this.rollup.read.getEpochDuration();
|
|
594
|
+
async getEpochDuration() {
|
|
595
|
+
return Number(await this.rollup.read.getEpochDuration());
|
|
117
596
|
}
|
|
118
597
|
async getSlotDuration() {
|
|
119
598
|
return Number(await this.rollup.read.getSlotDuration());
|
|
120
599
|
}
|
|
121
|
-
getTargetCommitteeSize() {
|
|
122
|
-
return this.rollup.read.getTargetCommitteeSize();
|
|
600
|
+
async getTargetCommitteeSize() {
|
|
601
|
+
return Number(await this.rollup.read.getTargetCommitteeSize());
|
|
123
602
|
}
|
|
124
603
|
getEjectionThreshold() {
|
|
125
604
|
return this.rollup.read.getEjectionThreshold();
|
|
@@ -127,17 +606,17 @@ export class RollupContract {
|
|
|
127
606
|
getLocalEjectionThreshold() {
|
|
128
607
|
return this.rollup.read.getLocalEjectionThreshold();
|
|
129
608
|
}
|
|
130
|
-
getLagInEpochsForValidatorSet() {
|
|
131
|
-
return this.rollup.read.getLagInEpochsForValidatorSet();
|
|
609
|
+
async getLagInEpochsForValidatorSet() {
|
|
610
|
+
return Number(await this.rollup.read.getLagInEpochsForValidatorSet());
|
|
132
611
|
}
|
|
133
|
-
getLagInEpochsForRandao() {
|
|
134
|
-
return this.rollup.read.getLagInEpochsForRandao();
|
|
612
|
+
async getLagInEpochsForRandao() {
|
|
613
|
+
return Number(await this.rollup.read.getLagInEpochsForRandao());
|
|
135
614
|
}
|
|
136
615
|
getActivationThreshold() {
|
|
137
616
|
return this.rollup.read.getActivationThreshold();
|
|
138
617
|
}
|
|
139
|
-
getExitDelay() {
|
|
140
|
-
return this.rollup.read.getExitDelay();
|
|
618
|
+
async getExitDelay() {
|
|
619
|
+
return Number(await this.rollup.read.getExitDelay());
|
|
141
620
|
}
|
|
142
621
|
getManaTarget() {
|
|
143
622
|
return this.rollup.read.getManaTarget();
|
|
@@ -155,9 +634,9 @@ export class RollupContract {
|
|
|
155
634
|
return this.rollup.read.getVersion();
|
|
156
635
|
}
|
|
157
636
|
async getGenesisArchiveTreeRoot() {
|
|
158
|
-
return await this.rollup.read.archiveAt([
|
|
637
|
+
return Fr.fromString(await this.rollup.read.archiveAt([
|
|
159
638
|
0n
|
|
160
|
-
]);
|
|
639
|
+
]));
|
|
161
640
|
}
|
|
162
641
|
/**
|
|
163
642
|
* Returns rollup constants used for epoch queries.
|
|
@@ -179,23 +658,23 @@ export class RollupContract {
|
|
|
179
658
|
proofSubmissionEpochs: Number(proofSubmissionEpochs)
|
|
180
659
|
};
|
|
181
660
|
}
|
|
182
|
-
getSlasherAddress() {
|
|
183
|
-
return this.rollup.read.getSlasher();
|
|
661
|
+
async getSlasherAddress() {
|
|
662
|
+
return EthAddress.fromString(await this.rollup.read.getSlasher());
|
|
184
663
|
}
|
|
185
664
|
/**
|
|
186
665
|
* Returns a SlasherContract instance for interacting with the slasher contract.
|
|
187
666
|
*/ async getSlasherContract() {
|
|
188
|
-
const slasherAddress =
|
|
667
|
+
const slasherAddress = await this.getSlasherAddress();
|
|
189
668
|
if (slasherAddress.isZero()) {
|
|
190
669
|
return undefined;
|
|
191
670
|
}
|
|
192
671
|
return new SlasherContract(this.client, slasherAddress);
|
|
193
672
|
}
|
|
194
|
-
getOwner() {
|
|
195
|
-
return this.rollup.read.owner();
|
|
673
|
+
async getOwner() {
|
|
674
|
+
return EthAddress.fromString(await this.rollup.read.owner());
|
|
196
675
|
}
|
|
197
|
-
getActiveAttesterCount() {
|
|
198
|
-
return this.rollup.read.getActiveAttesterCount();
|
|
676
|
+
async getActiveAttesterCount() {
|
|
677
|
+
return Number(await this.rollup.read.getActiveAttesterCount());
|
|
199
678
|
}
|
|
200
679
|
async getSlashingProposerAddress() {
|
|
201
680
|
const slasher = await this.getSlasherContract();
|
|
@@ -216,10 +695,14 @@ export class RollupContract {
|
|
|
216
695
|
async getSlotNumber() {
|
|
217
696
|
return SlotNumber.fromBigInt(await this.rollup.read.getCurrentSlot());
|
|
218
697
|
}
|
|
219
|
-
getL1FeesAt(timestamp) {
|
|
220
|
-
|
|
698
|
+
async getL1FeesAt(timestamp) {
|
|
699
|
+
const result = await this.rollup.read.getL1FeesAt([
|
|
221
700
|
timestamp
|
|
222
701
|
]);
|
|
702
|
+
return {
|
|
703
|
+
baseFee: result.baseFee,
|
|
704
|
+
blobFee: result.blobFee
|
|
705
|
+
};
|
|
223
706
|
}
|
|
224
707
|
getFeeAssetPerEth() {
|
|
225
708
|
return this.rollup.read.getFeeAssetPerEth();
|
|
@@ -240,15 +723,15 @@ export class RollupContract {
|
|
|
240
723
|
}
|
|
241
724
|
throw e;
|
|
242
725
|
});
|
|
243
|
-
return result;
|
|
726
|
+
return result ? result.map((addr)=>EthAddress.fromString(addr)) : undefined;
|
|
244
727
|
}
|
|
245
|
-
getSampleSeedAt(timestamp) {
|
|
246
|
-
return this.rollup.read.getSampleSeedAt([
|
|
728
|
+
async getSampleSeedAt(timestamp) {
|
|
729
|
+
return Buffer32.fromBigInt(await this.rollup.read.getSampleSeedAt([
|
|
247
730
|
timestamp
|
|
248
|
-
]);
|
|
731
|
+
]));
|
|
249
732
|
}
|
|
250
|
-
getCurrentSampleSeed() {
|
|
251
|
-
return this.rollup.read.getCurrentSampleSeed();
|
|
733
|
+
async getCurrentSampleSeed() {
|
|
734
|
+
return Buffer32.fromBigInt(await this.rollup.read.getCurrentSampleSeed());
|
|
252
735
|
}
|
|
253
736
|
async getCurrentEpoch() {
|
|
254
737
|
return EpochNumber.fromBigInt(await this.rollup.read.getCurrentEpoch());
|
|
@@ -267,7 +750,7 @@ export class RollupContract {
|
|
|
267
750
|
}
|
|
268
751
|
throw e;
|
|
269
752
|
});
|
|
270
|
-
return result;
|
|
753
|
+
return result ? result.map((addr)=>EthAddress.fromString(addr)) : undefined;
|
|
271
754
|
}
|
|
272
755
|
async getCurrentProposer() {
|
|
273
756
|
const { result } = await this.client.simulateContract({
|
|
@@ -276,7 +759,7 @@ export class RollupContract {
|
|
|
276
759
|
functionName: 'getCurrentProposer',
|
|
277
760
|
args: []
|
|
278
761
|
});
|
|
279
|
-
return result;
|
|
762
|
+
return EthAddress.fromString(result);
|
|
280
763
|
}
|
|
281
764
|
async getProposerAt(timestamp) {
|
|
282
765
|
const { result } = await this.client.simulateContract({
|
|
@@ -287,12 +770,27 @@ export class RollupContract {
|
|
|
287
770
|
timestamp
|
|
288
771
|
]
|
|
289
772
|
});
|
|
290
|
-
return result;
|
|
773
|
+
return EthAddress.fromString(result);
|
|
291
774
|
}
|
|
292
|
-
getCheckpoint(checkpointNumber) {
|
|
293
|
-
|
|
775
|
+
async getCheckpoint(checkpointNumber) {
|
|
776
|
+
const result = await this.rollup.read.getCheckpoint([
|
|
294
777
|
BigInt(checkpointNumber)
|
|
295
778
|
]);
|
|
779
|
+
return {
|
|
780
|
+
archive: Fr.fromString(result.archive),
|
|
781
|
+
headerHash: Buffer32.fromString(result.headerHash),
|
|
782
|
+
blobCommitmentsHash: Buffer32.fromString(result.blobCommitmentsHash),
|
|
783
|
+
attestationsHash: Buffer32.fromString(result.attestationsHash),
|
|
784
|
+
payloadDigest: Buffer32.fromString(result.payloadDigest),
|
|
785
|
+
slotNumber: SlotNumber.fromBigInt(result.slotNumber),
|
|
786
|
+
feeHeader: {
|
|
787
|
+
excessMana: result.feeHeader.excessMana,
|
|
788
|
+
manaUsed: result.feeHeader.manaUsed,
|
|
789
|
+
feeAssetPriceNumerator: result.feeHeader.feeAssetPriceNumerator,
|
|
790
|
+
congestionCost: result.feeHeader.congestionCost,
|
|
791
|
+
proverCost: result.feeHeader.proverCost
|
|
792
|
+
}
|
|
793
|
+
};
|
|
296
794
|
}
|
|
297
795
|
/** Returns the pending checkpoint from the rollup contract */ getPendingCheckpoint() {
|
|
298
796
|
// We retry because of race conditions during prunes: we may get a pending checkpoint number which is immediately
|
|
@@ -319,11 +817,11 @@ export class RollupContract {
|
|
|
319
817
|
BigInt(slot)
|
|
320
818
|
]);
|
|
321
819
|
}
|
|
322
|
-
getEntryQueueLength() {
|
|
323
|
-
return this.rollup.read.getEntryQueueLength();
|
|
820
|
+
async getEntryQueueLength() {
|
|
821
|
+
return Number(await this.rollup.read.getEntryQueueLength());
|
|
324
822
|
}
|
|
325
|
-
getAvailableValidatorFlushes() {
|
|
326
|
-
return this.rollup.read.getAvailableValidatorFlushes();
|
|
823
|
+
async getAvailableValidatorFlushes() {
|
|
824
|
+
return Number(await this.rollup.read.getAvailableValidatorFlushes());
|
|
327
825
|
}
|
|
328
826
|
async getNextFlushableEpoch() {
|
|
329
827
|
return EpochNumber.fromBigInt(await this.rollup.read.getNextFlushableEpoch());
|
|
@@ -365,8 +863,9 @@ export class RollupContract {
|
|
|
365
863
|
BigInt(slotNumber)
|
|
366
864
|
]));
|
|
367
865
|
}
|
|
368
|
-
getEpochProofPublicInputs(args) {
|
|
369
|
-
|
|
866
|
+
async getEpochProofPublicInputs(args) {
|
|
867
|
+
const result = await this.rollup.read.getEpochProofPublicInputs(args);
|
|
868
|
+
return result.map(Fr.fromString);
|
|
370
869
|
}
|
|
371
870
|
async validateHeader(args, account) {
|
|
372
871
|
try {
|
|
@@ -482,8 +981,8 @@ export class RollupContract {
|
|
|
482
981
|
prover
|
|
483
982
|
]);
|
|
484
983
|
}
|
|
485
|
-
|
|
486
|
-
return this.rollup.read.
|
|
984
|
+
getManaMinFeeAt(timestamp, inFeeAsset) {
|
|
985
|
+
return this.rollup.read.getManaMinFeeAt([
|
|
487
986
|
timestamp,
|
|
488
987
|
inFeeAsset
|
|
489
988
|
]);
|
|
@@ -495,9 +994,16 @@ export class RollupContract {
|
|
|
495
994
|
}
|
|
496
995
|
async status(checkpointNumber, options) {
|
|
497
996
|
await checkBlockTag(options?.blockNumber, this.client);
|
|
498
|
-
|
|
997
|
+
const result = await this.rollup.read.status([
|
|
499
998
|
BigInt(checkpointNumber)
|
|
500
999
|
], options);
|
|
1000
|
+
return {
|
|
1001
|
+
provenCheckpointNumber: CheckpointNumber.fromBigInt(result[0]),
|
|
1002
|
+
provenArchive: Fr.fromString(result[1]),
|
|
1003
|
+
pendingCheckpointNumber: CheckpointNumber.fromBigInt(result[2]),
|
|
1004
|
+
pendingArchive: Fr.fromString(result[3]),
|
|
1005
|
+
archiveOfMyCheckpoint: Fr.fromString(result[4])
|
|
1006
|
+
};
|
|
501
1007
|
}
|
|
502
1008
|
async canPruneAtTime(timestamp, options) {
|
|
503
1009
|
await checkBlockTag(options?.blockNumber, this.client);
|
|
@@ -505,13 +1011,13 @@ export class RollupContract {
|
|
|
505
1011
|
timestamp
|
|
506
1012
|
], options);
|
|
507
1013
|
}
|
|
508
|
-
archive() {
|
|
509
|
-
return this.rollup.read.archive();
|
|
1014
|
+
async archive() {
|
|
1015
|
+
return Fr.fromString(await this.rollup.read.archive());
|
|
510
1016
|
}
|
|
511
|
-
archiveAt(checkpointNumber) {
|
|
512
|
-
return this.rollup.read.archiveAt([
|
|
1017
|
+
async archiveAt(checkpointNumber) {
|
|
1018
|
+
return Fr.fromString(await this.rollup.read.archiveAt([
|
|
513
1019
|
BigInt(checkpointNumber)
|
|
514
|
-
]);
|
|
1020
|
+
]));
|
|
515
1021
|
}
|
|
516
1022
|
getSequencerRewards(address) {
|
|
517
1023
|
if (address instanceof EthAddress) {
|
|
@@ -535,40 +1041,66 @@ export class RollupContract {
|
|
|
535
1041
|
const gse = new GSEContract(this.client, await this.getGSE());
|
|
536
1042
|
const ts = (await this.client.getBlock()).timestamp;
|
|
537
1043
|
const indices = Array.from({
|
|
538
|
-
length:
|
|
1044
|
+
length: attesterSize
|
|
539
1045
|
}, (_, i)=>BigInt(i));
|
|
540
1046
|
const chunks = chunk(indices, 1000);
|
|
541
|
-
|
|
1047
|
+
const results = await Promise.all(chunks.map((chunk)=>gse.getAttestersFromIndicesAtTime(this.address, ts, chunk)));
|
|
1048
|
+
return results.flat().map((addr)=>EthAddress.fromString(addr));
|
|
542
1049
|
}
|
|
543
|
-
getAttesterView(address) {
|
|
1050
|
+
async getAttesterView(address) {
|
|
544
1051
|
if (address instanceof EthAddress) {
|
|
545
1052
|
address = address.toString();
|
|
546
1053
|
}
|
|
547
|
-
|
|
1054
|
+
const result = await this.rollup.read.getAttesterView([
|
|
548
1055
|
address
|
|
549
1056
|
]);
|
|
1057
|
+
return {
|
|
1058
|
+
status: result.status,
|
|
1059
|
+
effectiveBalance: result.effectiveBalance,
|
|
1060
|
+
exit: {
|
|
1061
|
+
withdrawalId: result.exit.withdrawalId,
|
|
1062
|
+
amount: result.exit.amount,
|
|
1063
|
+
exitableAt: result.exit.exitableAt,
|
|
1064
|
+
recipientOrWithdrawer: EthAddress.fromString(result.exit.recipientOrWithdrawer),
|
|
1065
|
+
isRecipient: result.exit.isRecipient,
|
|
1066
|
+
exists: result.exit.exists
|
|
1067
|
+
},
|
|
1068
|
+
config: {
|
|
1069
|
+
publicKey: {
|
|
1070
|
+
x: result.config.publicKey.x,
|
|
1071
|
+
y: result.config.publicKey.y
|
|
1072
|
+
},
|
|
1073
|
+
withdrawer: EthAddress.fromString(result.config.withdrawer)
|
|
1074
|
+
}
|
|
1075
|
+
};
|
|
550
1076
|
}
|
|
551
|
-
getStatus(address) {
|
|
1077
|
+
async getStatus(address) {
|
|
552
1078
|
if (address instanceof EthAddress) {
|
|
553
1079
|
address = address.toString();
|
|
554
1080
|
}
|
|
555
|
-
return this.rollup.read.getStatus([
|
|
1081
|
+
return await this.rollup.read.getStatus([
|
|
556
1082
|
address
|
|
557
1083
|
]);
|
|
558
1084
|
}
|
|
559
|
-
getBlobCommitmentsHash(checkpointNumber) {
|
|
560
|
-
return this.rollup.read.getBlobCommitmentsHash([
|
|
1085
|
+
async getBlobCommitmentsHash(checkpointNumber) {
|
|
1086
|
+
return Buffer32.fromString(await this.rollup.read.getBlobCommitmentsHash([
|
|
561
1087
|
BigInt(checkpointNumber)
|
|
562
|
-
]);
|
|
1088
|
+
]));
|
|
563
1089
|
}
|
|
564
|
-
getCurrentBlobCommitmentsHash() {
|
|
565
|
-
return this.rollup.read.getCurrentBlobCommitmentsHash();
|
|
1090
|
+
async getCurrentBlobCommitmentsHash() {
|
|
1091
|
+
return Buffer32.fromString(await this.rollup.read.getCurrentBlobCommitmentsHash());
|
|
566
1092
|
}
|
|
567
|
-
getStakingAsset() {
|
|
568
|
-
return this.rollup.read.getStakingAsset();
|
|
1093
|
+
async getStakingAsset() {
|
|
1094
|
+
return EthAddress.fromString(await this.rollup.read.getStakingAsset());
|
|
569
1095
|
}
|
|
570
|
-
getRewardConfig() {
|
|
571
|
-
|
|
1096
|
+
async getRewardConfig() {
|
|
1097
|
+
const result = await this.rollup.read.getRewardConfig();
|
|
1098
|
+
return {
|
|
1099
|
+
rewardDistributor: EthAddress.fromString(result.rewardDistributor),
|
|
1100
|
+
sequencerBps: BigInt(result.sequencerBps),
|
|
1101
|
+
booster: EthAddress.fromString(result.booster),
|
|
1102
|
+
checkpointReward: result.checkpointReward
|
|
1103
|
+
};
|
|
572
1104
|
}
|
|
573
1105
|
setupEpoch(l1TxUtils) {
|
|
574
1106
|
return l1TxUtils.sendAndMonitorTransaction({
|
|
@@ -643,60 +1175,3 @@ export class RollupContract {
|
|
|
643
1175
|
});
|
|
644
1176
|
}
|
|
645
1177
|
}
|
|
646
|
-
_ts_decorate([
|
|
647
|
-
memoize
|
|
648
|
-
], RollupContract.prototype, "getL1StartBlock", null);
|
|
649
|
-
_ts_decorate([
|
|
650
|
-
memoize
|
|
651
|
-
], RollupContract.prototype, "getL1GenesisTime", null);
|
|
652
|
-
_ts_decorate([
|
|
653
|
-
memoize
|
|
654
|
-
], RollupContract.prototype, "getProofSubmissionEpochs", null);
|
|
655
|
-
_ts_decorate([
|
|
656
|
-
memoize
|
|
657
|
-
], RollupContract.prototype, "getEpochDuration", null);
|
|
658
|
-
_ts_decorate([
|
|
659
|
-
memoize
|
|
660
|
-
], RollupContract.prototype, "getSlotDuration", null);
|
|
661
|
-
_ts_decorate([
|
|
662
|
-
memoize
|
|
663
|
-
], RollupContract.prototype, "getTargetCommitteeSize", null);
|
|
664
|
-
_ts_decorate([
|
|
665
|
-
memoize
|
|
666
|
-
], RollupContract.prototype, "getEjectionThreshold", null);
|
|
667
|
-
_ts_decorate([
|
|
668
|
-
memoize
|
|
669
|
-
], RollupContract.prototype, "getLocalEjectionThreshold", null);
|
|
670
|
-
_ts_decorate([
|
|
671
|
-
memoize
|
|
672
|
-
], RollupContract.prototype, "getLagInEpochsForValidatorSet", null);
|
|
673
|
-
_ts_decorate([
|
|
674
|
-
memoize
|
|
675
|
-
], RollupContract.prototype, "getLagInEpochsForRandao", null);
|
|
676
|
-
_ts_decorate([
|
|
677
|
-
memoize
|
|
678
|
-
], RollupContract.prototype, "getActivationThreshold", null);
|
|
679
|
-
_ts_decorate([
|
|
680
|
-
memoize
|
|
681
|
-
], RollupContract.prototype, "getExitDelay", null);
|
|
682
|
-
_ts_decorate([
|
|
683
|
-
memoize
|
|
684
|
-
], RollupContract.prototype, "getManaTarget", null);
|
|
685
|
-
_ts_decorate([
|
|
686
|
-
memoize
|
|
687
|
-
], RollupContract.prototype, "getProvingCostPerMana", null);
|
|
688
|
-
_ts_decorate([
|
|
689
|
-
memoize
|
|
690
|
-
], RollupContract.prototype, "getProvingCostPerManaInFeeAsset", null);
|
|
691
|
-
_ts_decorate([
|
|
692
|
-
memoize
|
|
693
|
-
], RollupContract.prototype, "getManaLimit", null);
|
|
694
|
-
_ts_decorate([
|
|
695
|
-
memoize
|
|
696
|
-
], RollupContract.prototype, "getVersion", null);
|
|
697
|
-
_ts_decorate([
|
|
698
|
-
memoize
|
|
699
|
-
], RollupContract.prototype, "getGenesisArchiveTreeRoot", null);
|
|
700
|
-
_ts_decorate([
|
|
701
|
-
memoize
|
|
702
|
-
], RollupContract.prototype, "getRollupConstants", null);
|