@aztec/ethereum 0.0.1-commit.b655e406 → 0.0.1-commit.c0b82b2
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/account.d.ts +1 -1
- package/dest/chain.d.ts +1 -1
- package/dest/client.d.ts +1 -1
- package/dest/client.js +6 -2
- package/dest/config.d.ts +22 -68
- package/dest/config.d.ts.map +1 -1
- package/dest/config.js +61 -380
- package/dest/constants.d.ts +1 -1
- package/dest/contracts/empire_base.d.ts +9 -5
- package/dest/contracts/empire_base.d.ts.map +1 -1
- package/dest/contracts/empire_base.js +1 -1
- package/dest/contracts/empire_slashing_proposer.d.ts +8 -4
- package/dest/contracts/empire_slashing_proposer.d.ts.map +1 -1
- package/dest/contracts/empire_slashing_proposer.js +39 -17
- package/dest/contracts/errors.d.ts +1 -1
- package/dest/contracts/errors.d.ts.map +1 -1
- 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 +11 -9
- package/dest/contracts/fee_asset_price_oracle.d.ts +101 -0
- package/dest/contracts/fee_asset_price_oracle.d.ts.map +1 -0
- package/dest/contracts/fee_asset_price_oracle.js +651 -0
- package/dest/contracts/fee_juice.d.ts +1 -1
- package/dest/contracts/fee_juice.d.ts.map +1 -1
- package/dest/contracts/governance.d.ts +18 -16
- package/dest/contracts/governance.d.ts.map +1 -1
- package/dest/contracts/governance.js +14 -4
- package/dest/contracts/governance_proposer.d.ts +8 -4
- package/dest/contracts/governance_proposer.d.ts.map +1 -1
- package/dest/contracts/governance_proposer.js +412 -11
- package/dest/contracts/gse.d.ts +1 -1
- package/dest/contracts/gse.d.ts.map +1 -1
- package/dest/contracts/inbox.d.ts +24 -3
- package/dest/contracts/inbox.d.ts.map +1 -1
- package/dest/contracts/inbox.js +36 -1
- package/dest/contracts/index.d.ts +4 -1
- package/dest/contracts/index.d.ts.map +1 -1
- package/dest/contracts/index.js +3 -0
- package/dest/contracts/log.d.ts +13 -0
- package/dest/contracts/log.d.ts.map +1 -0
- package/dest/contracts/log.js +1 -0
- package/dest/contracts/multicall.d.ts +2 -2
- package/dest/contracts/multicall.d.ts.map +1 -1
- package/dest/contracts/multicall.js +2 -1
- 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/registry.d.ts +1 -1
- package/dest/contracts/registry.d.ts.map +1 -1
- package/dest/contracts/rollup.d.ts +195 -123
- package/dest/contracts/rollup.d.ts.map +1 -1
- package/dest/contracts/rollup.js +765 -187
- package/dest/contracts/slasher_contract.d.ts +1 -1
- package/dest/contracts/slasher_contract.d.ts.map +1 -1
- package/dest/contracts/tally_slashing_proposer.d.ts +9 -7
- package/dest/contracts/tally_slashing_proposer.d.ts.map +1 -1
- package/dest/contracts/tally_slashing_proposer.js +11 -4
- package/dest/contracts/utils.d.ts +1 -1
- package/dest/deploy_aztec_l1_contracts.d.ts +259 -0
- package/dest/deploy_aztec_l1_contracts.d.ts.map +1 -0
- package/dest/deploy_aztec_l1_contracts.js +413 -0
- package/dest/deploy_l1_contract.d.ts +68 -0
- package/dest/deploy_l1_contract.d.ts.map +1 -0
- package/dest/deploy_l1_contract.js +312 -0
- package/dest/eth-signer/eth-signer.d.ts +1 -1
- package/dest/eth-signer/index.d.ts +1 -1
- package/dest/forwarder_proxy.d.ts +32 -0
- package/dest/forwarder_proxy.d.ts.map +1 -0
- package/dest/forwarder_proxy.js +93 -0
- package/dest/generated/l1-contracts-defaults.d.ts +30 -0
- package/dest/generated/l1-contracts-defaults.d.ts.map +1 -0
- package/dest/generated/l1-contracts-defaults.js +30 -0
- package/dest/l1_artifacts.d.ts +7608 -2048
- package/dest/l1_artifacts.d.ts.map +1 -1
- package/dest/l1_contract_addresses.d.ts +3 -3
- package/dest/l1_contract_addresses.d.ts.map +1 -1
- package/dest/l1_contract_addresses.js +3 -3
- package/dest/l1_reader.d.ts +3 -1
- package/dest/l1_reader.d.ts.map +1 -1
- package/dest/l1_reader.js +6 -0
- package/dest/l1_tx_utils/config.d.ts +11 -5
- package/dest/l1_tx_utils/config.d.ts.map +1 -1
- package/dest/l1_tx_utils/config.js +43 -7
- package/dest/l1_tx_utils/constants.d.ts +8 -2
- package/dest/l1_tx_utils/constants.d.ts.map +1 -1
- package/dest/l1_tx_utils/constants.js +27 -2
- package/dest/l1_tx_utils/factory.d.ts +18 -10
- package/dest/l1_tx_utils/factory.d.ts.map +1 -1
- package/dest/l1_tx_utils/factory.js +17 -7
- package/dest/l1_tx_utils/fee-strategies/index.d.ts +10 -0
- package/dest/l1_tx_utils/fee-strategies/index.d.ts.map +1 -0
- package/dest/l1_tx_utils/fee-strategies/index.js +12 -0
- package/dest/l1_tx_utils/fee-strategies/p75_competitive.d.ts +8 -0
- package/dest/l1_tx_utils/fee-strategies/p75_competitive.d.ts.map +1 -0
- package/dest/l1_tx_utils/fee-strategies/p75_competitive.js +129 -0
- package/dest/l1_tx_utils/fee-strategies/p75_competitive_blob_txs_only.d.ts +23 -0
- package/dest/l1_tx_utils/fee-strategies/p75_competitive_blob_txs_only.d.ts.map +1 -0
- package/dest/l1_tx_utils/fee-strategies/p75_competitive_blob_txs_only.js +191 -0
- package/dest/l1_tx_utils/fee-strategies/types.d.ts +51 -0
- package/dest/l1_tx_utils/fee-strategies/types.d.ts.map +1 -0
- package/dest/l1_tx_utils/fee-strategies/types.js +3 -0
- package/dest/l1_tx_utils/forwarder_l1_tx_utils.d.ts +41 -0
- package/dest/l1_tx_utils/forwarder_l1_tx_utils.d.ts.map +1 -0
- package/dest/l1_tx_utils/forwarder_l1_tx_utils.js +42 -0
- package/dest/l1_tx_utils/index-blobs.d.ts +3 -0
- package/dest/l1_tx_utils/index-blobs.d.ts.map +1 -0
- package/dest/l1_tx_utils/index-blobs.js +2 -0
- package/dest/l1_tx_utils/index.d.ts +4 -1
- package/dest/l1_tx_utils/index.d.ts.map +1 -1
- package/dest/l1_tx_utils/index.js +3 -0
- package/dest/l1_tx_utils/interfaces.d.ts +2 -2
- package/dest/l1_tx_utils/interfaces.d.ts.map +1 -1
- package/dest/l1_tx_utils/l1_fee_analyzer.d.ts +233 -0
- package/dest/l1_tx_utils/l1_fee_analyzer.d.ts.map +1 -0
- package/dest/l1_tx_utils/l1_fee_analyzer.js +506 -0
- package/dest/l1_tx_utils/l1_tx_utils.d.ts +16 -8
- package/dest/l1_tx_utils/l1_tx_utils.d.ts.map +1 -1
- package/dest/l1_tx_utils/l1_tx_utils.js +64 -46
- package/dest/l1_tx_utils/readonly_l1_tx_utils.d.ts +19 -30
- package/dest/l1_tx_utils/readonly_l1_tx_utils.d.ts.map +1 -1
- package/dest/l1_tx_utils/readonly_l1_tx_utils.js +55 -163
- package/dest/l1_tx_utils/signer.d.ts +1 -1
- package/dest/l1_tx_utils/tx_delayer.d.ts +56 -0
- package/dest/l1_tx_utils/tx_delayer.d.ts.map +1 -0
- package/dest/{test → l1_tx_utils}/tx_delayer.js +65 -36
- package/dest/l1_tx_utils/types.d.ts +1 -1
- package/dest/l1_tx_utils/types.d.ts.map +1 -1
- package/dest/l1_tx_utils/utils.d.ts +1 -1
- package/dest/l1_types.d.ts +1 -1
- package/dest/publisher_manager.d.ts +3 -2
- package/dest/publisher_manager.d.ts.map +1 -1
- package/dest/publisher_manager.js +2 -2
- package/dest/queries.d.ts +2 -2
- package/dest/queries.d.ts.map +1 -1
- package/dest/queries.js +16 -6
- package/dest/test/chain_monitor.d.ts +27 -24
- package/dest/test/chain_monitor.d.ts.map +1 -1
- package/dest/test/chain_monitor.js +33 -36
- package/dest/test/eth_cheat_codes.d.ts +11 -3
- package/dest/test/eth_cheat_codes.d.ts.map +1 -1
- package/dest/test/eth_cheat_codes.js +11 -3
- package/dest/test/eth_cheat_codes_with_state.d.ts +1 -1
- package/dest/test/eth_cheat_codes_with_state.d.ts.map +1 -1
- package/dest/test/index.d.ts +1 -3
- package/dest/test/index.d.ts.map +1 -1
- package/dest/test/index.js +0 -2
- package/dest/test/rollup_cheat_codes.d.ts +17 -13
- package/dest/test/rollup_cheat_codes.d.ts.map +1 -1
- package/dest/test/rollup_cheat_codes.js +62 -38
- package/dest/test/start_anvil.d.ts +11 -2
- package/dest/test/start_anvil.d.ts.map +1 -1
- package/dest/test/start_anvil.js +128 -28
- package/dest/test/upgrade_utils.d.ts +1 -1
- package/dest/test/upgrade_utils.js +2 -2
- package/dest/types.d.ts +57 -2
- package/dest/types.d.ts.map +1 -1
- package/dest/utils.d.ts +16 -3
- package/dest/utils.d.ts.map +1 -1
- package/dest/utils.js +64 -0
- package/dest/zkPassportVerifierAddress.d.ts +1 -1
- package/package.json +34 -16
- package/src/client.ts +2 -2
- package/src/config.ts +74 -460
- package/src/contracts/README.md +157 -0
- package/src/contracts/empire_base.ts +8 -5
- package/src/contracts/empire_slashing_proposer.ts +38 -32
- package/src/contracts/fee_asset_handler.ts +10 -7
- package/src/contracts/fee_asset_price_oracle.ts +280 -0
- package/src/contracts/governance.ts +13 -4
- package/src/contracts/governance_proposer.ts +26 -6
- package/src/contracts/inbox.ts +55 -3
- package/src/contracts/index.ts +3 -0
- package/src/contracts/log.ts +13 -0
- package/src/contracts/multicall.ts +5 -2
- package/src/contracts/outbox.ts +98 -0
- package/src/contracts/rollup.ts +446 -167
- package/src/contracts/tally_slashing_proposer.ts +15 -8
- package/src/deploy_aztec_l1_contracts.ts +650 -0
- package/src/deploy_l1_contract.ts +362 -0
- package/src/forwarder_proxy.ts +108 -0
- package/src/generated/l1-contracts-defaults.ts +32 -0
- package/src/l1_contract_addresses.ts +22 -20
- package/src/l1_reader.ts +8 -0
- package/src/l1_tx_utils/config.ts +52 -11
- package/src/l1_tx_utils/constants.ts +13 -2
- package/src/l1_tx_utils/factory.ts +31 -31
- package/src/l1_tx_utils/fee-strategies/index.ts +22 -0
- package/src/l1_tx_utils/fee-strategies/p75_competitive.ts +163 -0
- package/src/l1_tx_utils/fee-strategies/p75_competitive_blob_txs_only.ts +245 -0
- package/src/l1_tx_utils/fee-strategies/types.ts +56 -0
- package/src/l1_tx_utils/forwarder_l1_tx_utils.ts +108 -0
- package/src/l1_tx_utils/index-blobs.ts +2 -0
- package/src/l1_tx_utils/index.ts +3 -0
- package/src/l1_tx_utils/interfaces.ts +1 -1
- package/src/l1_tx_utils/l1_fee_analyzer.ts +803 -0
- package/src/l1_tx_utils/l1_tx_utils.ts +71 -36
- package/src/l1_tx_utils/readonly_l1_tx_utils.ts +69 -209
- package/src/{test → l1_tx_utils}/tx_delayer.ts +82 -52
- package/src/publisher_manager.ts +4 -2
- package/src/queries.ts +17 -6
- package/src/test/chain_monitor.ts +51 -49
- package/src/test/eth_cheat_codes.ts +9 -3
- package/src/test/index.ts +0 -2
- package/src/test/rollup_cheat_codes.ts +63 -43
- package/src/test/start_anvil.ts +148 -27
- package/src/test/upgrade_utils.ts +2 -2
- package/src/types.ts +62 -0
- package/src/utils.ts +83 -1
- package/dest/deploy_l1_contracts.d.ts +0 -226
- package/dest/deploy_l1_contracts.d.ts.map +0 -1
- package/dest/deploy_l1_contracts.js +0 -1473
- package/dest/index.d.ts +0 -18
- package/dest/index.d.ts.map +0 -1
- package/dest/index.js +0 -17
- package/dest/l1_tx_utils/l1_tx_utils_with_blobs.d.ts +0 -26
- package/dest/l1_tx_utils/l1_tx_utils_with_blobs.d.ts.map +0 -1
- package/dest/l1_tx_utils/l1_tx_utils_with_blobs.js +0 -26
- package/dest/test/delayed_tx_utils.d.ts +0 -13
- package/dest/test/delayed_tx_utils.d.ts.map +0 -1
- package/dest/test/delayed_tx_utils.js +0 -28
- package/dest/test/tx_delayer.d.ts +0 -36
- package/dest/test/tx_delayer.d.ts.map +0 -1
- package/src/deploy_l1_contracts.ts +0 -1849
- package/src/index.ts +0 -17
- package/src/l1_tx_utils/l1_tx_utils_with_blobs.ts +0 -77
- package/src/test/delayed_tx_utils.ts +0 -52
package/dest/contracts/rollup.js
CHANGED
|
@@ -1,11 +1,383 @@
|
|
|
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;
|
|
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';
|
|
7
377
|
import { memoize } from '@aztec/foundation/decorators';
|
|
8
378
|
import { EthAddress } from '@aztec/foundation/eth-address';
|
|
379
|
+
import { makeBackoff, retry } from '@aztec/foundation/retry';
|
|
380
|
+
import { EscapeHatchAbi } from '@aztec/l1-artifacts/EscapeHatchAbi';
|
|
9
381
|
import { RollupAbi } from '@aztec/l1-artifacts/RollupAbi';
|
|
10
382
|
import { RollupStorage } from '@aztec/l1-artifacts/RollupStorage';
|
|
11
383
|
import chunk from 'lodash.chunk';
|
|
@@ -23,10 +395,120 @@ export var SlashingProposerType = /*#__PURE__*/ function(SlashingProposerType) {
|
|
|
23
395
|
SlashingProposerType[SlashingProposerType["Empire"] = 2] = "Empire";
|
|
24
396
|
return SlashingProposerType;
|
|
25
397
|
}({});
|
|
398
|
+
/**
|
|
399
|
+
* Status of a validator/attester in the staking system.
|
|
400
|
+
* Matches the Status enum in StakingLib.sol
|
|
401
|
+
*/ export var AttesterStatus = /*#__PURE__*/ function(AttesterStatus) {
|
|
402
|
+
AttesterStatus[AttesterStatus["NONE"] = 0] = "NONE";
|
|
403
|
+
AttesterStatus[AttesterStatus["VALIDATING"] = 1] = "VALIDATING";
|
|
404
|
+
AttesterStatus[AttesterStatus["ZOMBIE"] = 2] = "ZOMBIE";
|
|
405
|
+
AttesterStatus[AttesterStatus["EXITING"] = 3] = "EXITING";
|
|
406
|
+
return AttesterStatus;
|
|
407
|
+
}({});
|
|
26
408
|
export class RollupContract {
|
|
27
409
|
client;
|
|
410
|
+
static{
|
|
411
|
+
({ e: [_initProto] } = _apply_decs_2203_r(this, [
|
|
412
|
+
[
|
|
413
|
+
memoize,
|
|
414
|
+
2,
|
|
415
|
+
"getL1StartBlock"
|
|
416
|
+
],
|
|
417
|
+
[
|
|
418
|
+
memoize,
|
|
419
|
+
2,
|
|
420
|
+
"getL1GenesisTime"
|
|
421
|
+
],
|
|
422
|
+
[
|
|
423
|
+
memoize,
|
|
424
|
+
2,
|
|
425
|
+
"getProofSubmissionEpochs"
|
|
426
|
+
],
|
|
427
|
+
[
|
|
428
|
+
memoize,
|
|
429
|
+
2,
|
|
430
|
+
"getEpochDuration"
|
|
431
|
+
],
|
|
432
|
+
[
|
|
433
|
+
memoize,
|
|
434
|
+
2,
|
|
435
|
+
"getSlotDuration"
|
|
436
|
+
],
|
|
437
|
+
[
|
|
438
|
+
memoize,
|
|
439
|
+
2,
|
|
440
|
+
"getTargetCommitteeSize"
|
|
441
|
+
],
|
|
442
|
+
[
|
|
443
|
+
memoize,
|
|
444
|
+
2,
|
|
445
|
+
"getEjectionThreshold"
|
|
446
|
+
],
|
|
447
|
+
[
|
|
448
|
+
memoize,
|
|
449
|
+
2,
|
|
450
|
+
"getLocalEjectionThreshold"
|
|
451
|
+
],
|
|
452
|
+
[
|
|
453
|
+
memoize,
|
|
454
|
+
2,
|
|
455
|
+
"getLagInEpochsForValidatorSet"
|
|
456
|
+
],
|
|
457
|
+
[
|
|
458
|
+
memoize,
|
|
459
|
+
2,
|
|
460
|
+
"getLagInEpochsForRandao"
|
|
461
|
+
],
|
|
462
|
+
[
|
|
463
|
+
memoize,
|
|
464
|
+
2,
|
|
465
|
+
"getActivationThreshold"
|
|
466
|
+
],
|
|
467
|
+
[
|
|
468
|
+
memoize,
|
|
469
|
+
2,
|
|
470
|
+
"getExitDelay"
|
|
471
|
+
],
|
|
472
|
+
[
|
|
473
|
+
memoize,
|
|
474
|
+
2,
|
|
475
|
+
"getManaTarget"
|
|
476
|
+
],
|
|
477
|
+
[
|
|
478
|
+
memoize,
|
|
479
|
+
2,
|
|
480
|
+
"getProvingCostPerMana"
|
|
481
|
+
],
|
|
482
|
+
[
|
|
483
|
+
memoize,
|
|
484
|
+
2,
|
|
485
|
+
"getProvingCostPerManaInFeeAsset"
|
|
486
|
+
],
|
|
487
|
+
[
|
|
488
|
+
memoize,
|
|
489
|
+
2,
|
|
490
|
+
"getManaLimit"
|
|
491
|
+
],
|
|
492
|
+
[
|
|
493
|
+
memoize,
|
|
494
|
+
2,
|
|
495
|
+
"getVersion"
|
|
496
|
+
],
|
|
497
|
+
[
|
|
498
|
+
memoize,
|
|
499
|
+
2,
|
|
500
|
+
"getGenesisArchiveTreeRoot"
|
|
501
|
+
],
|
|
502
|
+
[
|
|
503
|
+
memoize,
|
|
504
|
+
2,
|
|
505
|
+
"getRollupConstants"
|
|
506
|
+
]
|
|
507
|
+
], []));
|
|
508
|
+
}
|
|
28
509
|
rollup;
|
|
29
510
|
static cachedStfStorageSlot;
|
|
511
|
+
cachedEscapeHatch;
|
|
30
512
|
static get checkBlobStorageSlot() {
|
|
31
513
|
const asString = RollupStorage.find((storage)=>storage.label === 'checkBlob')?.slot;
|
|
32
514
|
if (asString === undefined) {
|
|
@@ -48,6 +530,7 @@ export class RollupContract {
|
|
|
48
530
|
}
|
|
49
531
|
constructor(client, address){
|
|
50
532
|
this.client = client;
|
|
533
|
+
_initProto(this);
|
|
51
534
|
if (address instanceof EthAddress) {
|
|
52
535
|
address = address.toString();
|
|
53
536
|
}
|
|
@@ -57,8 +540,8 @@ export class RollupContract {
|
|
|
57
540
|
client
|
|
58
541
|
});
|
|
59
542
|
}
|
|
60
|
-
getGSE() {
|
|
61
|
-
return this.rollup.read.getGSE();
|
|
543
|
+
async getGSE() {
|
|
544
|
+
return EthAddress.fromString(await this.rollup.read.getGSE());
|
|
62
545
|
}
|
|
63
546
|
get address() {
|
|
64
547
|
return this.rollup.address;
|
|
@@ -107,17 +590,17 @@ export class RollupContract {
|
|
|
107
590
|
getL1GenesisTime() {
|
|
108
591
|
return this.rollup.read.getGenesisTime();
|
|
109
592
|
}
|
|
110
|
-
getProofSubmissionEpochs() {
|
|
111
|
-
return this.rollup.read.getProofSubmissionEpochs();
|
|
593
|
+
async getProofSubmissionEpochs() {
|
|
594
|
+
return Number(await this.rollup.read.getProofSubmissionEpochs());
|
|
112
595
|
}
|
|
113
|
-
getEpochDuration() {
|
|
114
|
-
return this.rollup.read.getEpochDuration();
|
|
596
|
+
async getEpochDuration() {
|
|
597
|
+
return Number(await this.rollup.read.getEpochDuration());
|
|
115
598
|
}
|
|
116
|
-
getSlotDuration() {
|
|
117
|
-
return this.rollup.read.getSlotDuration();
|
|
599
|
+
async getSlotDuration() {
|
|
600
|
+
return Number(await this.rollup.read.getSlotDuration());
|
|
118
601
|
}
|
|
119
|
-
getTargetCommitteeSize() {
|
|
120
|
-
return this.rollup.read.getTargetCommitteeSize();
|
|
602
|
+
async getTargetCommitteeSize() {
|
|
603
|
+
return Number(await this.rollup.read.getTargetCommitteeSize());
|
|
121
604
|
}
|
|
122
605
|
getEjectionThreshold() {
|
|
123
606
|
return this.rollup.read.getEjectionThreshold();
|
|
@@ -125,14 +608,17 @@ export class RollupContract {
|
|
|
125
608
|
getLocalEjectionThreshold() {
|
|
126
609
|
return this.rollup.read.getLocalEjectionThreshold();
|
|
127
610
|
}
|
|
128
|
-
|
|
129
|
-
return this.rollup.read.
|
|
611
|
+
async getLagInEpochsForValidatorSet() {
|
|
612
|
+
return Number(await this.rollup.read.getLagInEpochsForValidatorSet());
|
|
613
|
+
}
|
|
614
|
+
async getLagInEpochsForRandao() {
|
|
615
|
+
return Number(await this.rollup.read.getLagInEpochsForRandao());
|
|
130
616
|
}
|
|
131
617
|
getActivationThreshold() {
|
|
132
618
|
return this.rollup.read.getActivationThreshold();
|
|
133
619
|
}
|
|
134
|
-
getExitDelay() {
|
|
135
|
-
return this.rollup.read.getExitDelay();
|
|
620
|
+
async getExitDelay() {
|
|
621
|
+
return Number(await this.rollup.read.getExitDelay());
|
|
136
622
|
}
|
|
137
623
|
getManaTarget() {
|
|
138
624
|
return this.rollup.read.getManaTarget();
|
|
@@ -150,47 +636,93 @@ export class RollupContract {
|
|
|
150
636
|
return this.rollup.read.getVersion();
|
|
151
637
|
}
|
|
152
638
|
async getGenesisArchiveTreeRoot() {
|
|
153
|
-
return await this.rollup.read.archiveAt([
|
|
639
|
+
return Fr.fromString(await this.rollup.read.archiveAt([
|
|
154
640
|
0n
|
|
155
|
-
]);
|
|
641
|
+
]));
|
|
156
642
|
}
|
|
157
643
|
/**
|
|
158
644
|
* Returns rollup constants used for epoch queries.
|
|
159
645
|
* Return type is `L1RollupConstants` which is defined in stdlib,
|
|
160
646
|
* so we cant reference it until we move this contract to that package.
|
|
161
647
|
*/ async getRollupConstants() {
|
|
162
|
-
const [l1StartBlock, l1GenesisTime, slotDuration, epochDuration, proofSubmissionEpochs] = await Promise.all([
|
|
648
|
+
const [l1StartBlock, l1GenesisTime, slotDuration, epochDuration, proofSubmissionEpochs, targetCommitteeSize] = await Promise.all([
|
|
163
649
|
this.getL1StartBlock(),
|
|
164
650
|
this.getL1GenesisTime(),
|
|
165
651
|
this.getSlotDuration(),
|
|
166
652
|
this.getEpochDuration(),
|
|
167
|
-
this.getProofSubmissionEpochs()
|
|
653
|
+
this.getProofSubmissionEpochs(),
|
|
654
|
+
this.getTargetCommitteeSize()
|
|
168
655
|
]);
|
|
169
656
|
return {
|
|
170
657
|
l1StartBlock,
|
|
171
658
|
l1GenesisTime,
|
|
172
|
-
slotDuration
|
|
659
|
+
slotDuration,
|
|
173
660
|
epochDuration: Number(epochDuration),
|
|
174
|
-
proofSubmissionEpochs: Number(proofSubmissionEpochs)
|
|
661
|
+
proofSubmissionEpochs: Number(proofSubmissionEpochs),
|
|
662
|
+
targetCommitteeSize
|
|
175
663
|
};
|
|
176
664
|
}
|
|
177
|
-
getSlasherAddress() {
|
|
178
|
-
return this.rollup.read.getSlasher();
|
|
665
|
+
async getSlasherAddress() {
|
|
666
|
+
return EthAddress.fromString(await this.rollup.read.getSlasher());
|
|
667
|
+
}
|
|
668
|
+
/**
|
|
669
|
+
* Returns the configured escape hatch contract address, or zero if disabled.
|
|
670
|
+
*/ async getEscapeHatchAddress() {
|
|
671
|
+
return EthAddress.fromString(await this.rollup.read.getEscapeHatch());
|
|
672
|
+
}
|
|
673
|
+
async getEscapeHatchContract() {
|
|
674
|
+
const escapeHatchAddress = await this.getEscapeHatchAddress();
|
|
675
|
+
if (escapeHatchAddress.isZero()) {
|
|
676
|
+
return undefined;
|
|
677
|
+
}
|
|
678
|
+
// Cache the viem contract wrapper since it will be used frequently.
|
|
679
|
+
if (!this.cachedEscapeHatch || !this.cachedEscapeHatch.address.equals(escapeHatchAddress)) {
|
|
680
|
+
this.cachedEscapeHatch = {
|
|
681
|
+
address: escapeHatchAddress,
|
|
682
|
+
contract: getContract({
|
|
683
|
+
address: escapeHatchAddress.toString(),
|
|
684
|
+
abi: EscapeHatchAbi,
|
|
685
|
+
client: this.client
|
|
686
|
+
})
|
|
687
|
+
};
|
|
688
|
+
}
|
|
689
|
+
return this.cachedEscapeHatch.contract;
|
|
690
|
+
}
|
|
691
|
+
/**
|
|
692
|
+
* Returns whether the escape hatch is open for the given epoch.
|
|
693
|
+
* If escape hatch is not configured, returns false.
|
|
694
|
+
*
|
|
695
|
+
* This function is intentionally defensive: any failure to query the escape hatch
|
|
696
|
+
* (RPC issues, transient errors, etc.) is treated as "closed" to avoid callers
|
|
697
|
+
* needing to sprinkle try/catch everywhere.
|
|
698
|
+
*/ async isEscapeHatchOpen(epoch) {
|
|
699
|
+
try {
|
|
700
|
+
const escapeHatch = await this.getEscapeHatchContract();
|
|
701
|
+
if (!escapeHatch) {
|
|
702
|
+
return false;
|
|
703
|
+
}
|
|
704
|
+
const [isOpen] = await escapeHatch.read.isHatchOpen([
|
|
705
|
+
BigInt(epoch)
|
|
706
|
+
]);
|
|
707
|
+
return isOpen;
|
|
708
|
+
} catch {
|
|
709
|
+
return false;
|
|
710
|
+
}
|
|
179
711
|
}
|
|
180
712
|
/**
|
|
181
713
|
* Returns a SlasherContract instance for interacting with the slasher contract.
|
|
182
714
|
*/ async getSlasherContract() {
|
|
183
|
-
const slasherAddress =
|
|
715
|
+
const slasherAddress = await this.getSlasherAddress();
|
|
184
716
|
if (slasherAddress.isZero()) {
|
|
185
717
|
return undefined;
|
|
186
718
|
}
|
|
187
719
|
return new SlasherContract(this.client, slasherAddress);
|
|
188
720
|
}
|
|
189
|
-
getOwner() {
|
|
190
|
-
return this.rollup.read.owner();
|
|
721
|
+
async getOwner() {
|
|
722
|
+
return EthAddress.fromString(await this.rollup.read.owner());
|
|
191
723
|
}
|
|
192
|
-
getActiveAttesterCount() {
|
|
193
|
-
return this.rollup.read.getActiveAttesterCount();
|
|
724
|
+
async getActiveAttesterCount() {
|
|
725
|
+
return Number(await this.rollup.read.getActiveAttesterCount());
|
|
194
726
|
}
|
|
195
727
|
async getSlashingProposerAddress() {
|
|
196
728
|
const slasher = await this.getSlasherContract();
|
|
@@ -199,25 +731,29 @@ export class RollupContract {
|
|
|
199
731
|
}
|
|
200
732
|
return await slasher.getProposer();
|
|
201
733
|
}
|
|
202
|
-
|
|
203
|
-
return this.rollup.read.
|
|
734
|
+
getCheckpointReward() {
|
|
735
|
+
return this.rollup.read.getCheckpointReward();
|
|
204
736
|
}
|
|
205
|
-
|
|
206
|
-
return this.rollup.read.
|
|
737
|
+
async getCheckpointNumber() {
|
|
738
|
+
return CheckpointNumber.fromBigInt(await this.rollup.read.getPendingCheckpointNumber());
|
|
207
739
|
}
|
|
208
|
-
|
|
209
|
-
return this.rollup.read.
|
|
740
|
+
async getProvenCheckpointNumber() {
|
|
741
|
+
return CheckpointNumber.fromBigInt(await this.rollup.read.getProvenCheckpointNumber());
|
|
210
742
|
}
|
|
211
|
-
getSlotNumber() {
|
|
212
|
-
return this.rollup.read.getCurrentSlot();
|
|
743
|
+
async getSlotNumber() {
|
|
744
|
+
return SlotNumber.fromBigInt(await this.rollup.read.getCurrentSlot());
|
|
213
745
|
}
|
|
214
|
-
getL1FeesAt(timestamp) {
|
|
215
|
-
|
|
746
|
+
async getL1FeesAt(timestamp) {
|
|
747
|
+
const result = await this.rollup.read.getL1FeesAt([
|
|
216
748
|
timestamp
|
|
217
749
|
]);
|
|
750
|
+
return {
|
|
751
|
+
baseFee: result.baseFee,
|
|
752
|
+
blobFee: result.blobFee
|
|
753
|
+
};
|
|
218
754
|
}
|
|
219
|
-
|
|
220
|
-
return this.rollup.read.
|
|
755
|
+
getEthPerFeeAsset() {
|
|
756
|
+
return this.rollup.read.getEthPerFeeAsset();
|
|
221
757
|
}
|
|
222
758
|
async getCommitteeAt(timestamp) {
|
|
223
759
|
const { result } = await this.client.simulateContract({
|
|
@@ -235,18 +771,18 @@ export class RollupContract {
|
|
|
235
771
|
}
|
|
236
772
|
throw e;
|
|
237
773
|
});
|
|
238
|
-
return result;
|
|
774
|
+
return result ? result.map((addr)=>EthAddress.fromString(addr)) : undefined;
|
|
239
775
|
}
|
|
240
|
-
getSampleSeedAt(timestamp) {
|
|
241
|
-
return this.rollup.read.getSampleSeedAt([
|
|
776
|
+
async getSampleSeedAt(timestamp) {
|
|
777
|
+
return Buffer32.fromBigInt(await this.rollup.read.getSampleSeedAt([
|
|
242
778
|
timestamp
|
|
243
|
-
]);
|
|
779
|
+
]));
|
|
244
780
|
}
|
|
245
|
-
getCurrentSampleSeed() {
|
|
246
|
-
return this.rollup.read.getCurrentSampleSeed();
|
|
781
|
+
async getCurrentSampleSeed() {
|
|
782
|
+
return Buffer32.fromBigInt(await this.rollup.read.getCurrentSampleSeed());
|
|
247
783
|
}
|
|
248
|
-
getCurrentEpoch() {
|
|
249
|
-
return this.rollup.read.getCurrentEpoch();
|
|
784
|
+
async getCurrentEpoch() {
|
|
785
|
+
return EpochNumber.fromBigInt(await this.rollup.read.getCurrentEpoch());
|
|
250
786
|
}
|
|
251
787
|
async getCurrentEpochCommittee() {
|
|
252
788
|
const { result } = await this.client.simulateContract({
|
|
@@ -262,7 +798,7 @@ export class RollupContract {
|
|
|
262
798
|
}
|
|
263
799
|
throw e;
|
|
264
800
|
});
|
|
265
|
-
return result;
|
|
801
|
+
return result ? result.map((addr)=>EthAddress.fromString(addr)) : undefined;
|
|
266
802
|
}
|
|
267
803
|
async getCurrentProposer() {
|
|
268
804
|
const { result } = await this.client.simulateContract({
|
|
@@ -271,7 +807,7 @@ export class RollupContract {
|
|
|
271
807
|
functionName: 'getCurrentProposer',
|
|
272
808
|
args: []
|
|
273
809
|
});
|
|
274
|
-
return result;
|
|
810
|
+
return EthAddress.fromString(result);
|
|
275
811
|
}
|
|
276
812
|
async getProposerAt(timestamp) {
|
|
277
813
|
const { result } = await this.client.simulateContract({
|
|
@@ -282,37 +818,69 @@ export class RollupContract {
|
|
|
282
818
|
timestamp
|
|
283
819
|
]
|
|
284
820
|
});
|
|
285
|
-
return result;
|
|
821
|
+
return EthAddress.fromString(result);
|
|
286
822
|
}
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
BigInt(
|
|
823
|
+
async getCheckpoint(checkpointNumber) {
|
|
824
|
+
const result = await this.rollup.read.getCheckpoint([
|
|
825
|
+
BigInt(checkpointNumber)
|
|
290
826
|
]);
|
|
827
|
+
return {
|
|
828
|
+
archive: Fr.fromString(result.archive),
|
|
829
|
+
headerHash: Buffer32.fromString(result.headerHash),
|
|
830
|
+
blobCommitmentsHash: Buffer32.fromString(result.blobCommitmentsHash),
|
|
831
|
+
attestationsHash: Buffer32.fromString(result.attestationsHash),
|
|
832
|
+
payloadDigest: Buffer32.fromString(result.payloadDigest),
|
|
833
|
+
slotNumber: SlotNumber.fromBigInt(result.slotNumber),
|
|
834
|
+
feeHeader: {
|
|
835
|
+
excessMana: result.feeHeader.excessMana,
|
|
836
|
+
manaUsed: result.feeHeader.manaUsed,
|
|
837
|
+
ethPerFeeAsset: result.feeHeader.ethPerFeeAsset,
|
|
838
|
+
congestionCost: result.feeHeader.congestionCost,
|
|
839
|
+
proverCost: result.feeHeader.proverCost
|
|
840
|
+
}
|
|
841
|
+
};
|
|
291
842
|
}
|
|
292
|
-
|
|
293
|
-
|
|
843
|
+
/** Returns the pending checkpoint from the rollup contract */ getPendingCheckpoint() {
|
|
844
|
+
// We retry because of race conditions during prunes: we may get a pending checkpoint number which is immediately
|
|
845
|
+
// reorged out due to a prune happening, causing the subsequent getCheckpoint call to fail. So we try again in that case.
|
|
846
|
+
return retry(async ()=>{
|
|
847
|
+
const pendingCheckpointNumber = await this.getCheckpointNumber();
|
|
848
|
+
const pendingCheckpoint = await this.getCheckpoint(pendingCheckpointNumber);
|
|
849
|
+
return pendingCheckpoint;
|
|
850
|
+
}, 'getting pending checkpoint', makeBackoff([
|
|
851
|
+
0.5,
|
|
852
|
+
0.5,
|
|
853
|
+
0.5
|
|
854
|
+
]));
|
|
855
|
+
}
|
|
856
|
+
async getTips() {
|
|
857
|
+
const { pending, proven } = await this.rollup.read.getTips();
|
|
858
|
+
return {
|
|
859
|
+
pending: CheckpointNumber.fromBigInt(pending),
|
|
860
|
+
proven: CheckpointNumber.fromBigInt(proven)
|
|
861
|
+
};
|
|
294
862
|
}
|
|
295
863
|
getTimestampForSlot(slot) {
|
|
296
864
|
return this.rollup.read.getTimestampForSlot([
|
|
297
|
-
slot
|
|
865
|
+
BigInt(slot)
|
|
298
866
|
]);
|
|
299
867
|
}
|
|
300
|
-
getEntryQueueLength() {
|
|
301
|
-
return this.rollup.read.getEntryQueueLength();
|
|
868
|
+
async getEntryQueueLength() {
|
|
869
|
+
return Number(await this.rollup.read.getEntryQueueLength());
|
|
302
870
|
}
|
|
303
|
-
getAvailableValidatorFlushes() {
|
|
304
|
-
return this.rollup.read.getAvailableValidatorFlushes();
|
|
871
|
+
async getAvailableValidatorFlushes() {
|
|
872
|
+
return Number(await this.rollup.read.getAvailableValidatorFlushes());
|
|
305
873
|
}
|
|
306
|
-
getNextFlushableEpoch() {
|
|
307
|
-
return this.rollup.read.getNextFlushableEpoch();
|
|
874
|
+
async getNextFlushableEpoch() {
|
|
875
|
+
return EpochNumber.fromBigInt(await this.rollup.read.getNextFlushableEpoch());
|
|
308
876
|
}
|
|
309
|
-
getCurrentEpochNumber() {
|
|
310
|
-
return this.rollup.read.getCurrentEpoch();
|
|
877
|
+
async getCurrentEpochNumber() {
|
|
878
|
+
return EpochNumber.fromBigInt(await this.rollup.read.getCurrentEpoch());
|
|
311
879
|
}
|
|
312
|
-
|
|
313
|
-
return this.rollup.read.
|
|
314
|
-
BigInt(
|
|
315
|
-
]);
|
|
880
|
+
async getEpochNumberForCheckpoint(checkpointNumber) {
|
|
881
|
+
return EpochNumber.fromBigInt(await this.rollup.read.getEpochForCheckpoint([
|
|
882
|
+
BigInt(checkpointNumber)
|
|
883
|
+
]));
|
|
316
884
|
}
|
|
317
885
|
async getRollupAddresses() {
|
|
318
886
|
const [inboxAddress, outboxAddress, feeJuicePortalAddress, rewardDistributorAddress, feeJuiceAddress, stakingAssetAddress, gseAddress] = (await Promise.all([
|
|
@@ -339,12 +907,13 @@ export class RollupContract {
|
|
|
339
907
|
return EthAddress.fromString(await this.rollup.read.getFeeAssetPortal());
|
|
340
908
|
}
|
|
341
909
|
async getEpochNumberForSlotNumber(slotNumber) {
|
|
342
|
-
return await this.rollup.read.getEpochAtSlot([
|
|
343
|
-
slotNumber
|
|
344
|
-
]);
|
|
910
|
+
return EpochNumber.fromBigInt(await this.rollup.read.getEpochAtSlot([
|
|
911
|
+
BigInt(slotNumber)
|
|
912
|
+
]));
|
|
345
913
|
}
|
|
346
|
-
getEpochProofPublicInputs(args) {
|
|
347
|
-
|
|
914
|
+
async getEpochProofPublicInputs(args) {
|
|
915
|
+
const result = await this.rollup.read.getEpochProofPublicInputs(args);
|
|
916
|
+
return result.map(Fr.fromString);
|
|
348
917
|
}
|
|
349
918
|
async validateHeader(args, account) {
|
|
350
919
|
try {
|
|
@@ -365,17 +934,15 @@ export class RollupContract {
|
|
|
365
934
|
* @dev Throws if unable to propose
|
|
366
935
|
*
|
|
367
936
|
* @param archive - The archive that we expect to be current state
|
|
368
|
-
* @return [slot,
|
|
937
|
+
* @return [slot, checkpointNumber, timeOfNextL1Slot] - If you can propose, the L2 slot number, checkpoint number and
|
|
938
|
+
* timestamp of the next L1 block
|
|
369
939
|
* @throws otherwise
|
|
370
940
|
*/ async canProposeAtNextEthBlock(archive, account, slotDuration, opts = {}) {
|
|
371
|
-
if (typeof slotDuration === 'number') {
|
|
372
|
-
slotDuration = BigInt(slotDuration);
|
|
373
|
-
}
|
|
374
941
|
const latestBlock = await this.client.getBlock();
|
|
375
|
-
const timeOfNextL1Slot = latestBlock.timestamp + slotDuration;
|
|
942
|
+
const timeOfNextL1Slot = latestBlock.timestamp + BigInt(slotDuration);
|
|
376
943
|
const who = typeof account === 'string' ? account : account.address;
|
|
377
944
|
try {
|
|
378
|
-
const { result: [slot,
|
|
945
|
+
const { result: [slot, checkpointNumber] } = await this.client.simulateContract({
|
|
379
946
|
address: this.address,
|
|
380
947
|
abi: RollupAbi,
|
|
381
948
|
functionName: 'canProposeAtTime',
|
|
@@ -385,11 +952,11 @@ export class RollupContract {
|
|
|
385
952
|
who
|
|
386
953
|
],
|
|
387
954
|
account,
|
|
388
|
-
stateOverride: await this.
|
|
955
|
+
stateOverride: await this.makePendingCheckpointNumberOverride(opts.forcePendingCheckpointNumber)
|
|
389
956
|
});
|
|
390
957
|
return {
|
|
391
|
-
slot,
|
|
392
|
-
|
|
958
|
+
slot: SlotNumber.fromBigInt(slot),
|
|
959
|
+
checkpointNumber: CheckpointNumber.fromBigInt(checkpointNumber),
|
|
393
960
|
timeOfNextL1Slot
|
|
394
961
|
};
|
|
395
962
|
} catch (err) {
|
|
@@ -397,11 +964,11 @@ export class RollupContract {
|
|
|
397
964
|
}
|
|
398
965
|
}
|
|
399
966
|
/**
|
|
400
|
-
* Returns a state override that sets the pending
|
|
401
|
-
* Requires querying the current state of the contract to get the current proven
|
|
967
|
+
* Returns a state override that sets the pending checkpoint number to the specified value. Useful for simulations.
|
|
968
|
+
* Requires querying the current state of the contract to get the current proven checkpoint number, as they are both
|
|
402
969
|
* stored in the same slot. If the argument is undefined, it returns an empty override.
|
|
403
|
-
*/ async
|
|
404
|
-
if (
|
|
970
|
+
*/ async makePendingCheckpointNumberOverride(forcePendingCheckpointNumber) {
|
|
971
|
+
if (forcePendingCheckpointNumber === undefined) {
|
|
405
972
|
return [];
|
|
406
973
|
}
|
|
407
974
|
const slot = RollupContract.stfStorageSlot;
|
|
@@ -409,8 +976,8 @@ export class RollupContract {
|
|
|
409
976
|
address: this.address,
|
|
410
977
|
slot
|
|
411
978
|
});
|
|
412
|
-
const
|
|
413
|
-
const newValue = BigInt(
|
|
979
|
+
const currentProvenCheckpointNumber = currentValue ? hexToBigInt(currentValue) & (1n << 128n) - 1n : 0n;
|
|
980
|
+
const newValue = BigInt(forcePendingCheckpointNumber) << 128n | currentProvenCheckpointNumber;
|
|
414
981
|
return [
|
|
415
982
|
{
|
|
416
983
|
address: this.address,
|
|
@@ -423,14 +990,15 @@ export class RollupContract {
|
|
|
423
990
|
}
|
|
424
991
|
];
|
|
425
992
|
}
|
|
426
|
-
/** Creates a request to Rollup#invalidateBadAttestation to be simulated or sent */ buildInvalidateBadAttestationRequest(
|
|
993
|
+
/** Creates a request to Rollup#invalidateBadAttestation to be simulated or sent */ buildInvalidateBadAttestationRequest(checkpointNumber, attestationsAndSigners, committee, invalidIndex) {
|
|
427
994
|
return {
|
|
428
995
|
to: this.address,
|
|
996
|
+
abi: RollupAbi,
|
|
429
997
|
data: encodeFunctionData({
|
|
430
998
|
abi: RollupAbi,
|
|
431
999
|
functionName: 'invalidateBadAttestation',
|
|
432
1000
|
args: [
|
|
433
|
-
BigInt(
|
|
1001
|
+
BigInt(checkpointNumber),
|
|
434
1002
|
attestationsAndSigners,
|
|
435
1003
|
committee.map((addr)=>addr.toString()),
|
|
436
1004
|
BigInt(invalidIndex)
|
|
@@ -438,46 +1006,54 @@ export class RollupContract {
|
|
|
438
1006
|
})
|
|
439
1007
|
};
|
|
440
1008
|
}
|
|
441
|
-
/** Creates a request to Rollup#invalidateInsufficientAttestations to be simulated or sent */ buildInvalidateInsufficientAttestationsRequest(
|
|
1009
|
+
/** Creates a request to Rollup#invalidateInsufficientAttestations to be simulated or sent */ buildInvalidateInsufficientAttestationsRequest(checkpointNumber, attestationsAndSigners, committee) {
|
|
442
1010
|
return {
|
|
443
1011
|
to: this.address,
|
|
1012
|
+
abi: RollupAbi,
|
|
444
1013
|
data: encodeFunctionData({
|
|
445
1014
|
abi: RollupAbi,
|
|
446
1015
|
functionName: 'invalidateInsufficientAttestations',
|
|
447
1016
|
args: [
|
|
448
|
-
BigInt(
|
|
1017
|
+
BigInt(checkpointNumber),
|
|
449
1018
|
attestationsAndSigners,
|
|
450
1019
|
committee.map((addr)=>addr.toString())
|
|
451
1020
|
]
|
|
452
1021
|
})
|
|
453
1022
|
};
|
|
454
1023
|
}
|
|
455
|
-
/** Calls getHasSubmitted directly. Returns whether the given prover has submitted a proof with the given length for the given epoch. */ getHasSubmittedProof(epochNumber,
|
|
1024
|
+
/** Calls getHasSubmitted directly. Returns whether the given prover has submitted a proof with the given length for the given epoch. */ getHasSubmittedProof(epochNumber, numberOfCheckpointsInEpoch, prover) {
|
|
456
1025
|
if (prover instanceof EthAddress) {
|
|
457
1026
|
prover = prover.toString();
|
|
458
1027
|
}
|
|
459
1028
|
return this.rollup.read.getHasSubmitted([
|
|
460
1029
|
BigInt(epochNumber),
|
|
461
|
-
BigInt(
|
|
1030
|
+
BigInt(numberOfCheckpointsInEpoch),
|
|
462
1031
|
prover
|
|
463
1032
|
]);
|
|
464
1033
|
}
|
|
465
|
-
|
|
466
|
-
return this.rollup.read.
|
|
1034
|
+
getManaMinFeeAt(timestamp, inFeeAsset) {
|
|
1035
|
+
return this.rollup.read.getManaMinFeeAt([
|
|
467
1036
|
timestamp,
|
|
468
1037
|
inFeeAsset
|
|
469
1038
|
]);
|
|
470
1039
|
}
|
|
471
|
-
getSlotAt(timestamp) {
|
|
472
|
-
return this.rollup.read.getSlotAt([
|
|
1040
|
+
async getSlotAt(timestamp) {
|
|
1041
|
+
return SlotNumber.fromBigInt(await this.rollup.read.getSlotAt([
|
|
473
1042
|
timestamp
|
|
474
|
-
]);
|
|
1043
|
+
]));
|
|
475
1044
|
}
|
|
476
|
-
async status(
|
|
1045
|
+
async status(checkpointNumber, options) {
|
|
477
1046
|
await checkBlockTag(options?.blockNumber, this.client);
|
|
478
|
-
|
|
479
|
-
|
|
1047
|
+
const result = await this.rollup.read.status([
|
|
1048
|
+
BigInt(checkpointNumber)
|
|
480
1049
|
], options);
|
|
1050
|
+
return {
|
|
1051
|
+
provenCheckpointNumber: CheckpointNumber.fromBigInt(result[0]),
|
|
1052
|
+
provenArchive: Fr.fromString(result[1]),
|
|
1053
|
+
pendingCheckpointNumber: CheckpointNumber.fromBigInt(result[2]),
|
|
1054
|
+
pendingArchive: Fr.fromString(result[3]),
|
|
1055
|
+
archiveOfMyCheckpoint: Fr.fromString(result[4])
|
|
1056
|
+
};
|
|
481
1057
|
}
|
|
482
1058
|
async canPruneAtTime(timestamp, options) {
|
|
483
1059
|
await checkBlockTag(options?.blockNumber, this.client);
|
|
@@ -485,13 +1061,13 @@ export class RollupContract {
|
|
|
485
1061
|
timestamp
|
|
486
1062
|
], options);
|
|
487
1063
|
}
|
|
488
|
-
archive() {
|
|
489
|
-
return this.rollup.read.archive();
|
|
1064
|
+
async archive() {
|
|
1065
|
+
return Fr.fromString(await this.rollup.read.archive());
|
|
490
1066
|
}
|
|
491
|
-
archiveAt(
|
|
492
|
-
return this.rollup.read.archiveAt([
|
|
493
|
-
|
|
494
|
-
]);
|
|
1067
|
+
async archiveAt(checkpointNumber) {
|
|
1068
|
+
return Fr.fromString(await this.rollup.read.archiveAt([
|
|
1069
|
+
BigInt(checkpointNumber)
|
|
1070
|
+
]));
|
|
495
1071
|
}
|
|
496
1072
|
getSequencerRewards(address) {
|
|
497
1073
|
if (address instanceof EthAddress) {
|
|
@@ -515,44 +1091,71 @@ export class RollupContract {
|
|
|
515
1091
|
const gse = new GSEContract(this.client, await this.getGSE());
|
|
516
1092
|
const ts = (await this.client.getBlock()).timestamp;
|
|
517
1093
|
const indices = Array.from({
|
|
518
|
-
length:
|
|
1094
|
+
length: attesterSize
|
|
519
1095
|
}, (_, i)=>BigInt(i));
|
|
520
1096
|
const chunks = chunk(indices, 1000);
|
|
521
|
-
|
|
1097
|
+
const results = await Promise.all(chunks.map((chunk)=>gse.getAttestersFromIndicesAtTime(this.address, ts, chunk)));
|
|
1098
|
+
return results.flat().map((addr)=>EthAddress.fromString(addr));
|
|
522
1099
|
}
|
|
523
|
-
getAttesterView(address) {
|
|
1100
|
+
async getAttesterView(address) {
|
|
524
1101
|
if (address instanceof EthAddress) {
|
|
525
1102
|
address = address.toString();
|
|
526
1103
|
}
|
|
527
|
-
|
|
1104
|
+
const result = await this.rollup.read.getAttesterView([
|
|
528
1105
|
address
|
|
529
1106
|
]);
|
|
1107
|
+
return {
|
|
1108
|
+
status: result.status,
|
|
1109
|
+
effectiveBalance: result.effectiveBalance,
|
|
1110
|
+
exit: {
|
|
1111
|
+
withdrawalId: result.exit.withdrawalId,
|
|
1112
|
+
amount: result.exit.amount,
|
|
1113
|
+
exitableAt: result.exit.exitableAt,
|
|
1114
|
+
recipientOrWithdrawer: EthAddress.fromString(result.exit.recipientOrWithdrawer),
|
|
1115
|
+
isRecipient: result.exit.isRecipient,
|
|
1116
|
+
exists: result.exit.exists
|
|
1117
|
+
},
|
|
1118
|
+
config: {
|
|
1119
|
+
publicKey: {
|
|
1120
|
+
x: result.config.publicKey.x,
|
|
1121
|
+
y: result.config.publicKey.y
|
|
1122
|
+
},
|
|
1123
|
+
withdrawer: EthAddress.fromString(result.config.withdrawer)
|
|
1124
|
+
}
|
|
1125
|
+
};
|
|
530
1126
|
}
|
|
531
|
-
getStatus(address) {
|
|
1127
|
+
async getStatus(address) {
|
|
532
1128
|
if (address instanceof EthAddress) {
|
|
533
1129
|
address = address.toString();
|
|
534
1130
|
}
|
|
535
|
-
return this.rollup.read.getStatus([
|
|
1131
|
+
return await this.rollup.read.getStatus([
|
|
536
1132
|
address
|
|
537
1133
|
]);
|
|
538
1134
|
}
|
|
539
|
-
getBlobCommitmentsHash(
|
|
540
|
-
return this.rollup.read.getBlobCommitmentsHash([
|
|
541
|
-
|
|
542
|
-
]);
|
|
1135
|
+
async getBlobCommitmentsHash(checkpointNumber) {
|
|
1136
|
+
return Buffer32.fromString(await this.rollup.read.getBlobCommitmentsHash([
|
|
1137
|
+
BigInt(checkpointNumber)
|
|
1138
|
+
]));
|
|
543
1139
|
}
|
|
544
|
-
getCurrentBlobCommitmentsHash() {
|
|
545
|
-
return this.rollup.read.getCurrentBlobCommitmentsHash();
|
|
1140
|
+
async getCurrentBlobCommitmentsHash() {
|
|
1141
|
+
return Buffer32.fromString(await this.rollup.read.getCurrentBlobCommitmentsHash());
|
|
546
1142
|
}
|
|
547
|
-
getStakingAsset() {
|
|
548
|
-
return this.rollup.read.getStakingAsset();
|
|
1143
|
+
async getStakingAsset() {
|
|
1144
|
+
return EthAddress.fromString(await this.rollup.read.getStakingAsset());
|
|
549
1145
|
}
|
|
550
|
-
getRewardConfig() {
|
|
551
|
-
|
|
1146
|
+
async getRewardConfig() {
|
|
1147
|
+
const result = await this.rollup.read.getRewardConfig();
|
|
1148
|
+
return {
|
|
1149
|
+
rewardDistributor: EthAddress.fromString(result.rewardDistributor),
|
|
1150
|
+
sequencerBps: BigInt(result.sequencerBps),
|
|
1151
|
+
booster: EthAddress.fromString(result.booster),
|
|
1152
|
+
checkpointReward: result.checkpointReward
|
|
1153
|
+
};
|
|
552
1154
|
}
|
|
553
1155
|
setupEpoch(l1TxUtils) {
|
|
554
1156
|
return l1TxUtils.sendAndMonitorTransaction({
|
|
555
1157
|
to: this.address,
|
|
1158
|
+
abi: RollupAbi,
|
|
556
1159
|
data: encodeFunctionData({
|
|
557
1160
|
abi: RollupAbi,
|
|
558
1161
|
functionName: 'setupEpoch',
|
|
@@ -563,6 +1166,7 @@ export class RollupContract {
|
|
|
563
1166
|
vote(l1TxUtils, proposalId) {
|
|
564
1167
|
return l1TxUtils.sendAndMonitorTransaction({
|
|
565
1168
|
to: this.address,
|
|
1169
|
+
abi: RollupAbi,
|
|
566
1170
|
data: encodeFunctionData({
|
|
567
1171
|
abi: RollupAbi,
|
|
568
1172
|
functionName: 'vote',
|
|
@@ -584,14 +1188,14 @@ export class RollupContract {
|
|
|
584
1188
|
}
|
|
585
1189
|
});
|
|
586
1190
|
}
|
|
587
|
-
|
|
588
|
-
return this.rollup.watchEvent.
|
|
1191
|
+
listenToCheckpointInvalidated(callback) {
|
|
1192
|
+
return this.rollup.watchEvent.CheckpointInvalidated({}, {
|
|
589
1193
|
onLogs: (logs)=>{
|
|
590
1194
|
for (const log of logs){
|
|
591
1195
|
const args = log.args;
|
|
592
|
-
if (args.
|
|
1196
|
+
if (args.checkpointNumber !== undefined) {
|
|
593
1197
|
callback({
|
|
594
|
-
|
|
1198
|
+
checkpointNumber: CheckpointNumber.fromBigInt(args.checkpointNumber)
|
|
595
1199
|
});
|
|
596
1200
|
}
|
|
597
1201
|
}
|
|
@@ -622,58 +1226,32 @@ export class RollupContract {
|
|
|
622
1226
|
}
|
|
623
1227
|
});
|
|
624
1228
|
}
|
|
1229
|
+
/** Fetches CheckpointProposed events within the given block range. */ async getCheckpointProposedEvents(fromBlock, toBlock) {
|
|
1230
|
+
const logs = await this.rollup.getEvents.CheckpointProposed({}, {
|
|
1231
|
+
fromBlock,
|
|
1232
|
+
toBlock
|
|
1233
|
+
});
|
|
1234
|
+
return logs.filter((log)=>log.blockNumber >= fromBlock && log.blockNumber <= toBlock).map((log)=>({
|
|
1235
|
+
l1BlockNumber: log.blockNumber,
|
|
1236
|
+
l1BlockHash: Buffer32.fromString(log.blockHash),
|
|
1237
|
+
l1TransactionHash: log.transactionHash,
|
|
1238
|
+
args: {
|
|
1239
|
+
checkpointNumber: CheckpointNumber.fromBigInt(log.args.checkpointNumber),
|
|
1240
|
+
archive: Fr.fromString(log.args.archive),
|
|
1241
|
+
versionedBlobHashes: log.args.versionedBlobHashes.map((h)=>Buffer.from(h.slice(2), 'hex')),
|
|
1242
|
+
attestationsHash: (()=>{
|
|
1243
|
+
if (!log.args.attestationsHash) {
|
|
1244
|
+
throw new Error(`CheckpointProposed event missing attestationsHash for checkpoint ${log.args.checkpointNumber}`);
|
|
1245
|
+
}
|
|
1246
|
+
return Buffer32.fromString(log.args.attestationsHash);
|
|
1247
|
+
})(),
|
|
1248
|
+
payloadDigest: (()=>{
|
|
1249
|
+
if (!log.args.payloadDigest) {
|
|
1250
|
+
throw new Error(`CheckpointProposed event missing payloadDigest for checkpoint ${log.args.checkpointNumber}`);
|
|
1251
|
+
}
|
|
1252
|
+
return Buffer32.fromString(log.args.payloadDigest);
|
|
1253
|
+
})()
|
|
1254
|
+
}
|
|
1255
|
+
}));
|
|
1256
|
+
}
|
|
625
1257
|
}
|
|
626
|
-
_ts_decorate([
|
|
627
|
-
memoize
|
|
628
|
-
], RollupContract.prototype, "getL1StartBlock", null);
|
|
629
|
-
_ts_decorate([
|
|
630
|
-
memoize
|
|
631
|
-
], RollupContract.prototype, "getL1GenesisTime", null);
|
|
632
|
-
_ts_decorate([
|
|
633
|
-
memoize
|
|
634
|
-
], RollupContract.prototype, "getProofSubmissionEpochs", null);
|
|
635
|
-
_ts_decorate([
|
|
636
|
-
memoize
|
|
637
|
-
], RollupContract.prototype, "getEpochDuration", null);
|
|
638
|
-
_ts_decorate([
|
|
639
|
-
memoize
|
|
640
|
-
], RollupContract.prototype, "getSlotDuration", null);
|
|
641
|
-
_ts_decorate([
|
|
642
|
-
memoize
|
|
643
|
-
], RollupContract.prototype, "getTargetCommitteeSize", null);
|
|
644
|
-
_ts_decorate([
|
|
645
|
-
memoize
|
|
646
|
-
], RollupContract.prototype, "getEjectionThreshold", null);
|
|
647
|
-
_ts_decorate([
|
|
648
|
-
memoize
|
|
649
|
-
], RollupContract.prototype, "getLocalEjectionThreshold", null);
|
|
650
|
-
_ts_decorate([
|
|
651
|
-
memoize
|
|
652
|
-
], RollupContract.prototype, "getLagInEpochs", null);
|
|
653
|
-
_ts_decorate([
|
|
654
|
-
memoize
|
|
655
|
-
], RollupContract.prototype, "getActivationThreshold", null);
|
|
656
|
-
_ts_decorate([
|
|
657
|
-
memoize
|
|
658
|
-
], RollupContract.prototype, "getExitDelay", null);
|
|
659
|
-
_ts_decorate([
|
|
660
|
-
memoize
|
|
661
|
-
], RollupContract.prototype, "getManaTarget", null);
|
|
662
|
-
_ts_decorate([
|
|
663
|
-
memoize
|
|
664
|
-
], RollupContract.prototype, "getProvingCostPerMana", null);
|
|
665
|
-
_ts_decorate([
|
|
666
|
-
memoize
|
|
667
|
-
], RollupContract.prototype, "getProvingCostPerManaInFeeAsset", null);
|
|
668
|
-
_ts_decorate([
|
|
669
|
-
memoize
|
|
670
|
-
], RollupContract.prototype, "getManaLimit", null);
|
|
671
|
-
_ts_decorate([
|
|
672
|
-
memoize
|
|
673
|
-
], RollupContract.prototype, "getVersion", null);
|
|
674
|
-
_ts_decorate([
|
|
675
|
-
memoize
|
|
676
|
-
], RollupContract.prototype, "getGenesisArchiveTreeRoot", null);
|
|
677
|
-
_ts_decorate([
|
|
678
|
-
memoize
|
|
679
|
-
], RollupContract.prototype, "getRollupConstants", null);
|