@aztec/ethereum 0.0.0-test.0 → 0.0.1-commit.001888fc
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 +2 -0
- package/dest/account.d.ts.map +1 -0
- package/dest/account.js +4 -0
- package/dest/chain.d.ts +1 -1
- package/dest/client.d.ts +14 -4
- package/dest/client.d.ts.map +1 -1
- package/dest/client.js +27 -3
- package/dest/config.d.ts +70 -23
- package/dest/config.d.ts.map +1 -1
- package/dest/config.js +155 -34
- package/dest/constants.d.ts +1 -1
- package/dest/contracts/empire_base.d.ts +27 -8
- package/dest/contracts/empire_base.d.ts.map +1 -1
- package/dest/contracts/empire_base.js +75 -2
- package/dest/contracts/empire_slashing_proposer.d.ts +69 -0
- package/dest/contracts/empire_slashing_proposer.d.ts.map +1 -0
- package/dest/contracts/empire_slashing_proposer.js +216 -0
- package/dest/contracts/errors.d.ts +7 -0
- package/dest/contracts/errors.d.ts.map +1 -0
- package/dest/contracts/errors.js +12 -0
- package/dest/contracts/fee_asset_handler.d.ts +20 -0
- package/dest/contracts/fee_asset_handler.d.ts.map +1 -0
- package/dest/contracts/fee_asset_handler.js +59 -0
- 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 +6 -7
- package/dest/contracts/fee_juice.d.ts.map +1 -1
- package/dest/contracts/fee_juice.js +27 -20
- package/dest/contracts/governance.d.ts +45 -32
- package/dest/contracts/governance.d.ts.map +1 -1
- package/dest/contracts/governance.js +98 -85
- package/dest/contracts/governance_proposer.d.ts +19 -13
- package/dest/contracts/governance_proposer.d.ts.map +1 -1
- package/dest/contracts/governance_proposer.js +441 -26
- package/dest/contracts/gse.d.ts +32 -0
- package/dest/contracts/gse.d.ts.map +1 -0
- package/dest/contracts/gse.js +72 -0
- package/dest/contracts/inbox.d.ts +47 -0
- package/dest/contracts/inbox.d.ts.map +1 -0
- package/dest/contracts/inbox.js +80 -0
- package/dest/contracts/index.d.ts +12 -3
- package/dest/contracts/index.d.ts.map +1 -1
- package/dest/contracts/index.js +11 -2
- 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 +21 -0
- package/dest/contracts/multicall.d.ts.map +1 -0
- package/dest/contracts/multicall.js +157 -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/registry.d.ts +12 -5
- package/dest/contracts/registry.d.ts.map +1 -1
- package/dest/contracts/registry.js +74 -17
- package/dest/contracts/rollup.d.ts +311 -53
- package/dest/contracts/rollup.d.ts.map +1 -1
- package/dest/contracts/rollup.js +1180 -116
- package/dest/contracts/slasher_contract.d.ts +44 -0
- package/dest/contracts/slasher_contract.d.ts.map +1 -0
- package/dest/contracts/slasher_contract.js +75 -0
- package/dest/contracts/tally_slashing_proposer.d.ts +140 -0
- package/dest/contracts/tally_slashing_proposer.d.ts.map +1 -0
- package/dest/contracts/tally_slashing_proposer.js +320 -0
- package/dest/contracts/utils.d.ts +3 -0
- package/dest/contracts/utils.d.ts.map +1 -0
- package/dest/contracts/utils.js +11 -0
- 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 +21 -0
- package/dest/eth-signer/eth-signer.d.ts.map +1 -0
- package/dest/eth-signer/eth-signer.js +5 -0
- package/dest/eth-signer/index.d.ts +2 -0
- package/dest/eth-signer/index.d.ts.map +1 -0
- package/dest/eth-signer/index.js +1 -0
- 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 +81744 -0
- package/dest/l1_artifacts.d.ts.map +1 -0
- package/dest/l1_artifacts.js +166 -0
- package/dest/l1_contract_addresses.d.ts +24 -4
- package/dest/l1_contract_addresses.d.ts.map +1 -1
- package/dest/l1_contract_addresses.js +25 -21
- package/dest/l1_reader.d.ts +6 -2
- package/dest/l1_reader.d.ts.map +1 -1
- package/dest/l1_reader.js +20 -9
- package/dest/l1_tx_utils/config.d.ts +65 -0
- package/dest/l1_tx_utils/config.d.ts.map +1 -0
- package/dest/l1_tx_utils/config.js +109 -0
- package/dest/l1_tx_utils/constants.d.ts +12 -0
- package/dest/l1_tx_utils/constants.d.ts.map +1 -0
- package/dest/l1_tx_utils/constants.js +39 -0
- package/dest/l1_tx_utils/factory.d.ts +32 -0
- package/dest/l1_tx_utils/factory.d.ts.map +1 -0
- package/dest/l1_tx_utils/factory.js +22 -0
- 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 +13 -0
- package/dest/l1_tx_utils/index.d.ts.map +1 -0
- package/dest/l1_tx_utils/index.js +13 -0
- package/dest/l1_tx_utils/interfaces.d.ts +76 -0
- package/dest/l1_tx_utils/interfaces.d.ts.map +1 -0
- package/dest/l1_tx_utils/interfaces.js +4 -0
- 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 +105 -0
- package/dest/l1_tx_utils/l1_tx_utils.d.ts.map +1 -0
- package/dest/l1_tx_utils/l1_tx_utils.js +639 -0
- package/dest/l1_tx_utils/readonly_l1_tx_utils.d.ts +83 -0
- package/dest/l1_tx_utils/readonly_l1_tx_utils.d.ts.map +1 -0
- package/dest/l1_tx_utils/readonly_l1_tx_utils.js +327 -0
- package/dest/l1_tx_utils/signer.d.ts +4 -0
- package/dest/l1_tx_utils/signer.d.ts.map +1 -0
- package/dest/l1_tx_utils/signer.js +16 -0
- 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/l1_tx_utils/tx_delayer.js +221 -0
- package/dest/l1_tx_utils/types.d.ts +67 -0
- package/dest/l1_tx_utils/types.d.ts.map +1 -0
- package/dest/l1_tx_utils/types.js +26 -0
- package/dest/l1_tx_utils/utils.d.ts +4 -0
- package/dest/l1_tx_utils/utils.d.ts.map +1 -0
- package/dest/l1_tx_utils/utils.js +14 -0
- package/dest/l1_types.d.ts +6 -0
- package/dest/l1_types.d.ts.map +1 -0
- package/dest/l1_types.js +1 -0
- package/dest/publisher_manager.d.ts +16 -0
- package/dest/publisher_manager.d.ts.map +1 -0
- package/dest/publisher_manager.js +88 -0
- package/dest/queries.d.ts +5 -3
- package/dest/queries.d.ts.map +1 -1
- package/dest/queries.js +61 -12
- package/dest/test/chain_monitor.d.ts +94 -0
- package/dest/test/chain_monitor.d.ts.map +1 -0
- package/dest/test/chain_monitor.js +244 -0
- package/dest/test/eth_cheat_codes.d.ts +229 -0
- package/dest/test/eth_cheat_codes.d.ts.map +1 -0
- package/dest/test/eth_cheat_codes.js +560 -0
- package/dest/test/eth_cheat_codes_with_state.d.ts +2 -2
- package/dest/test/eth_cheat_codes_with_state.d.ts.map +1 -1
- package/dest/test/eth_cheat_codes_with_state.js +1 -1
- package/dest/test/index.d.ts +4 -3
- package/dest/test/index.d.ts.map +1 -1
- package/dest/test/index.js +3 -2
- package/dest/test/rollup_cheat_codes.d.ts +90 -0
- package/dest/test/rollup_cheat_codes.d.ts.map +1 -0
- package/dest/test/rollup_cheat_codes.js +292 -0
- package/dest/test/start_anvil.d.ts +23 -2
- package/dest/test/start_anvil.d.ts.map +1 -1
- package/dest/test/start_anvil.js +133 -24
- package/dest/test/upgrade_utils.d.ts +6 -5
- package/dest/test/upgrade_utils.d.ts.map +1 -1
- package/dest/test/upgrade_utils.js +23 -16
- package/dest/types.d.ts +62 -8
- package/dest/types.d.ts.map +1 -1
- package/dest/types.js +3 -1
- package/dest/utils.d.ts +17 -3
- package/dest/utils.d.ts.map +1 -1
- package/dest/utils.js +111 -88
- package/dest/zkPassportVerifierAddress.d.ts +15 -0
- package/dest/zkPassportVerifierAddress.d.ts.map +1 -0
- package/dest/zkPassportVerifierAddress.js +11 -0
- package/package.json +51 -25
- package/src/account.ts +5 -0
- package/src/client.ts +51 -5
- package/src/config.ts +222 -43
- package/src/contracts/README.md +157 -0
- package/src/contracts/empire_base.ts +79 -7
- package/src/contracts/empire_slashing_proposer.ts +265 -0
- package/src/contracts/errors.ts +13 -0
- package/src/contracts/fee_asset_handler.ts +66 -0
- package/src/contracts/fee_asset_price_oracle.ts +280 -0
- package/src/contracts/fee_juice.ts +29 -15
- package/src/contracts/governance.ts +90 -78
- package/src/contracts/governance_proposer.ts +81 -25
- package/src/contracts/gse.ts +88 -0
- package/src/contracts/inbox.ts +115 -0
- package/src/contracts/index.ts +11 -2
- package/src/contracts/log.ts +13 -0
- package/src/contracts/multicall.ts +158 -0
- package/src/contracts/outbox.ts +98 -0
- package/src/contracts/registry.ts +81 -26
- package/src/contracts/rollup.ts +940 -89
- package/src/contracts/slasher_contract.ts +89 -0
- package/src/contracts/tally_slashing_proposer.ts +322 -0
- package/src/contracts/utils.ts +14 -0
- package/src/deploy_aztec_l1_contracts.ts +650 -0
- package/src/deploy_l1_contract.ts +362 -0
- package/src/eth-signer/eth-signer.ts +25 -0
- package/src/eth-signer/index.ts +1 -0
- package/src/forwarder_proxy.ts +108 -0
- package/src/generated/l1-contracts-defaults.ts +32 -0
- package/src/l1_artifacts.ts +254 -0
- package/src/l1_contract_addresses.ts +49 -34
- package/src/l1_reader.ts +30 -10
- package/src/l1_tx_utils/README.md +177 -0
- package/src/l1_tx_utils/config.ts +181 -0
- package/src/l1_tx_utils/constants.ts +29 -0
- package/src/l1_tx_utils/factory.ts +64 -0
- 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 +15 -0
- package/src/l1_tx_utils/interfaces.ts +86 -0
- package/src/l1_tx_utils/l1_fee_analyzer.ts +803 -0
- package/src/l1_tx_utils/l1_tx_utils.ts +766 -0
- package/src/l1_tx_utils/readonly_l1_tx_utils.ts +423 -0
- package/src/l1_tx_utils/signer.ts +28 -0
- package/src/l1_tx_utils/tx_delayer.ts +294 -0
- package/src/l1_tx_utils/types.ts +85 -0
- package/src/l1_tx_utils/utils.ts +16 -0
- package/src/l1_types.ts +6 -0
- package/src/publisher_manager.ts +108 -0
- package/src/queries.ts +82 -16
- package/src/test/chain_monitor.ts +302 -0
- package/src/test/eth_cheat_codes.ts +588 -0
- package/src/test/eth_cheat_codes_with_state.ts +1 -1
- package/src/test/index.ts +3 -2
- package/src/test/rollup_cheat_codes.ts +330 -0
- package/src/test/start_anvil.ts +166 -22
- package/src/test/upgrade_utils.ts +30 -21
- package/src/types.ts +71 -7
- package/src/utils.ts +137 -93
- package/src/zkPassportVerifierAddress.ts +15 -0
- package/dest/contracts/forwarder.d.ts +0 -24
- package/dest/contracts/forwarder.d.ts.map +0 -1
- package/dest/contracts/forwarder.js +0 -101
- package/dest/contracts/slashing_proposer.d.ts +0 -21
- package/dest/contracts/slashing_proposer.d.ts.map +0 -1
- package/dest/contracts/slashing_proposer.js +0 -47
- package/dest/deploy_l1_contracts.d.ts +0 -21210
- package/dest/deploy_l1_contracts.d.ts.map +0 -1
- package/dest/deploy_l1_contracts.js +0 -687
- package/dest/eth_cheat_codes.d.ts +0 -147
- package/dest/eth_cheat_codes.d.ts.map +0 -1
- package/dest/eth_cheat_codes.js +0 -303
- package/dest/index.d.ts +0 -14
- package/dest/index.d.ts.map +0 -1
- package/dest/index.js +0 -13
- package/dest/l1_tx_utils.d.ts +0 -192
- package/dest/l1_tx_utils.d.ts.map +0 -1
- package/dest/l1_tx_utils.js +0 -641
- package/dest/l1_tx_utils_with_blobs.d.ts +0 -12
- package/dest/l1_tx_utils_with_blobs.d.ts.map +0 -1
- package/dest/l1_tx_utils_with_blobs.js +0 -64
- package/dest/test/delayed_tx_utils.d.ts +0 -8
- package/dest/test/delayed_tx_utils.d.ts.map +0 -1
- package/dest/test/delayed_tx_utils.js +0 -21
- package/dest/test/tx_delayer.d.ts +0 -25
- package/dest/test/tx_delayer.d.ts.map +0 -1
- package/dest/test/tx_delayer.js +0 -116
- package/src/contracts/forwarder.ts +0 -132
- package/src/contracts/slashing_proposer.ts +0 -51
- package/src/deploy_l1_contracts.ts +0 -948
- package/src/eth_cheat_codes.ts +0 -314
- package/src/index.ts +0 -13
- package/src/l1_tx_utils.ts +0 -847
- package/src/l1_tx_utils_with_blobs.ts +0 -86
- package/src/test/delayed_tx_utils.ts +0 -24
- package/src/test/tx_delayer.ts +0 -163
package/dest/contracts/rollup.js
CHANGED
|
@@ -1,19 +1,524 @@
|
|
|
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';
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
379
|
+
import { makeBackoff, retry } from '@aztec/foundation/retry';
|
|
380
|
+
import { EscapeHatchAbi } from '@aztec/l1-artifacts/EscapeHatchAbi';
|
|
381
|
+
import { RollupAbi } from '@aztec/l1-artifacts/RollupAbi';
|
|
382
|
+
import { RollupStorage } from '@aztec/l1-artifacts/RollupStorage';
|
|
383
|
+
import chunk from 'lodash.chunk';
|
|
384
|
+
import { encodeFunctionData, getContract, hexToBigInt, keccak256 } from 'viem';
|
|
11
385
|
import { getPublicClient } from '../client.js';
|
|
12
386
|
import { formatViemError } from '../utils.js';
|
|
13
|
-
import {
|
|
387
|
+
import { EmpireSlashingProposerContract } from './empire_slashing_proposer.js';
|
|
388
|
+
import { GSEContract } from './gse.js';
|
|
389
|
+
import { SlasherContract } from './slasher_contract.js';
|
|
390
|
+
import { TallySlashingProposerContract } from './tally_slashing_proposer.js';
|
|
391
|
+
import { checkBlockTag } from './utils.js';
|
|
392
|
+
export var SlashingProposerType = /*#__PURE__*/ function(SlashingProposerType) {
|
|
393
|
+
SlashingProposerType[SlashingProposerType["None"] = 0] = "None";
|
|
394
|
+
SlashingProposerType[SlashingProposerType["Tally"] = 1] = "Tally";
|
|
395
|
+
SlashingProposerType[SlashingProposerType["Empire"] = 2] = "Empire";
|
|
396
|
+
return SlashingProposerType;
|
|
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
|
+
}({});
|
|
14
408
|
export class RollupContract {
|
|
15
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
|
+
"getVkTreeRoot"
|
|
506
|
+
],
|
|
507
|
+
[
|
|
508
|
+
memoize,
|
|
509
|
+
2,
|
|
510
|
+
"getProtocolContractsHash"
|
|
511
|
+
],
|
|
512
|
+
[
|
|
513
|
+
memoize,
|
|
514
|
+
2,
|
|
515
|
+
"getRollupConstants"
|
|
516
|
+
]
|
|
517
|
+
], []));
|
|
518
|
+
}
|
|
16
519
|
rollup;
|
|
520
|
+
static cachedStfStorageSlot;
|
|
521
|
+
cachedEscapeHatch;
|
|
17
522
|
static get checkBlobStorageSlot() {
|
|
18
523
|
const asString = RollupStorage.find((storage)=>storage.label === 'checkBlob')?.slot;
|
|
19
524
|
if (asString === undefined) {
|
|
@@ -21,9 +526,12 @@ export class RollupContract {
|
|
|
21
526
|
}
|
|
22
527
|
return BigInt(asString);
|
|
23
528
|
}
|
|
529
|
+
static get stfStorageSlot() {
|
|
530
|
+
return RollupContract.cachedStfStorageSlot ??= keccak256(Buffer.from('aztec.stf.storage', 'utf-8'));
|
|
531
|
+
}
|
|
24
532
|
static getFromL1ContractsValues(deployL1ContractsValues) {
|
|
25
|
-
const {
|
|
26
|
-
return new RollupContract(
|
|
533
|
+
const { l1Client, l1ContractAddresses: { rollupAddress } } = deployL1ContractsValues;
|
|
534
|
+
return new RollupContract(l1Client, rollupAddress.toString());
|
|
27
535
|
}
|
|
28
536
|
static getFromConfig(config) {
|
|
29
537
|
const client = getPublicClient(config);
|
|
@@ -32,6 +540,7 @@ export class RollupContract {
|
|
|
32
540
|
}
|
|
33
541
|
constructor(client, address){
|
|
34
542
|
this.client = client;
|
|
543
|
+
_initProto(this);
|
|
35
544
|
if (address instanceof EthAddress) {
|
|
36
545
|
address = address.toString();
|
|
37
546
|
}
|
|
@@ -41,18 +550,49 @@ export class RollupContract {
|
|
|
41
550
|
client
|
|
42
551
|
});
|
|
43
552
|
}
|
|
553
|
+
async getGSE() {
|
|
554
|
+
return EthAddress.fromString(await this.rollup.read.getGSE());
|
|
555
|
+
}
|
|
44
556
|
get address() {
|
|
45
557
|
return this.rollup.address;
|
|
46
558
|
}
|
|
559
|
+
getContract() {
|
|
560
|
+
return this.rollup;
|
|
561
|
+
}
|
|
47
562
|
async getSlashingProposer() {
|
|
48
|
-
const
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
563
|
+
const slasher = await this.getSlasherContract();
|
|
564
|
+
if (!slasher) {
|
|
565
|
+
return undefined;
|
|
566
|
+
}
|
|
567
|
+
const proposerAddress = await slasher.getProposer();
|
|
568
|
+
const proposerAbi = [
|
|
569
|
+
{
|
|
570
|
+
type: 'function',
|
|
571
|
+
name: 'SLASHING_PROPOSER_TYPE',
|
|
572
|
+
inputs: [],
|
|
573
|
+
outputs: [
|
|
574
|
+
{
|
|
575
|
+
name: '',
|
|
576
|
+
type: 'uint8',
|
|
577
|
+
internalType: 'enum SlasherFlavor'
|
|
578
|
+
}
|
|
579
|
+
],
|
|
580
|
+
stateMutability: 'view'
|
|
581
|
+
}
|
|
582
|
+
];
|
|
583
|
+
const proposer = getContract({
|
|
584
|
+
address: proposerAddress.toString(),
|
|
585
|
+
abi: proposerAbi,
|
|
52
586
|
client: this.client
|
|
53
587
|
});
|
|
54
|
-
const
|
|
55
|
-
|
|
588
|
+
const proposerType = await proposer.read.SLASHING_PROPOSER_TYPE();
|
|
589
|
+
if (proposerType === 1..valueOf()) {
|
|
590
|
+
return new TallySlashingProposerContract(this.client, proposerAddress);
|
|
591
|
+
} else if (proposerType === 2..valueOf()) {
|
|
592
|
+
return new EmpireSlashingProposerContract(this.client, proposerAddress);
|
|
593
|
+
} else {
|
|
594
|
+
throw new Error(`Unknown slashing proposer type: ${proposerType}`);
|
|
595
|
+
}
|
|
56
596
|
}
|
|
57
597
|
getL1StartBlock() {
|
|
58
598
|
return this.rollup.read.L1_BLOCK_AT_GENESIS();
|
|
@@ -60,90 +600,326 @@ export class RollupContract {
|
|
|
60
600
|
getL1GenesisTime() {
|
|
61
601
|
return this.rollup.read.getGenesisTime();
|
|
62
602
|
}
|
|
63
|
-
|
|
64
|
-
return this.rollup.read.
|
|
603
|
+
async getProofSubmissionEpochs() {
|
|
604
|
+
return Number(await this.rollup.read.getProofSubmissionEpochs());
|
|
65
605
|
}
|
|
66
|
-
getEpochDuration() {
|
|
67
|
-
return this.rollup.read.getEpochDuration();
|
|
606
|
+
async getEpochDuration() {
|
|
607
|
+
return Number(await this.rollup.read.getEpochDuration());
|
|
68
608
|
}
|
|
69
|
-
getSlotDuration() {
|
|
70
|
-
return this.rollup.read.getSlotDuration();
|
|
609
|
+
async getSlotDuration() {
|
|
610
|
+
return Number(await this.rollup.read.getSlotDuration());
|
|
71
611
|
}
|
|
72
|
-
getTargetCommitteeSize() {
|
|
73
|
-
return this.rollup.read.getTargetCommitteeSize();
|
|
612
|
+
async getTargetCommitteeSize() {
|
|
613
|
+
return Number(await this.rollup.read.getTargetCommitteeSize());
|
|
74
614
|
}
|
|
75
|
-
|
|
76
|
-
return this.rollup.read.
|
|
615
|
+
getEjectionThreshold() {
|
|
616
|
+
return this.rollup.read.getEjectionThreshold();
|
|
77
617
|
}
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
618
|
+
getLocalEjectionThreshold() {
|
|
619
|
+
return this.rollup.read.getLocalEjectionThreshold();
|
|
620
|
+
}
|
|
621
|
+
async getLagInEpochsForValidatorSet() {
|
|
622
|
+
return Number(await this.rollup.read.getLagInEpochsForValidatorSet());
|
|
623
|
+
}
|
|
624
|
+
async getLagInEpochsForRandao() {
|
|
625
|
+
return Number(await this.rollup.read.getLagInEpochsForRandao());
|
|
626
|
+
}
|
|
627
|
+
getActivationThreshold() {
|
|
628
|
+
return this.rollup.read.getActivationThreshold();
|
|
629
|
+
}
|
|
630
|
+
async getExitDelay() {
|
|
631
|
+
return Number(await this.rollup.read.getExitDelay());
|
|
632
|
+
}
|
|
633
|
+
getManaTarget() {
|
|
634
|
+
return this.rollup.read.getManaTarget();
|
|
635
|
+
}
|
|
636
|
+
getProvingCostPerMana() {
|
|
637
|
+
return this.rollup.read.getProvingCostPerManaInEth();
|
|
638
|
+
}
|
|
639
|
+
getProvingCostPerManaInFeeAsset() {
|
|
640
|
+
return this.rollup.read.getProvingCostPerManaInFeeAsset();
|
|
641
|
+
}
|
|
642
|
+
getManaLimit() {
|
|
643
|
+
return this.rollup.read.getManaLimit();
|
|
644
|
+
}
|
|
645
|
+
getVersion() {
|
|
646
|
+
return this.rollup.read.getVersion();
|
|
647
|
+
}
|
|
648
|
+
async getGenesisArchiveTreeRoot() {
|
|
649
|
+
return Fr.fromString(await this.rollup.read.archiveAt([
|
|
650
|
+
0n
|
|
651
|
+
]));
|
|
652
|
+
}
|
|
653
|
+
async getVkTreeRoot() {
|
|
654
|
+
const slot = BigInt(RollupContract.stfStorageSlot) + 3n;
|
|
655
|
+
const value = await this.client.getStorageAt({
|
|
656
|
+
address: this.address,
|
|
657
|
+
slot: `0x${slot.toString(16)}`
|
|
84
658
|
});
|
|
85
|
-
return
|
|
659
|
+
return Fr.fromString(value ?? '0x0');
|
|
660
|
+
}
|
|
661
|
+
async getProtocolContractsHash() {
|
|
662
|
+
const slot = BigInt(RollupContract.stfStorageSlot) + 4n;
|
|
663
|
+
const value = await this.client.getStorageAt({
|
|
664
|
+
address: this.address,
|
|
665
|
+
slot: `0x${slot.toString(16)}`
|
|
666
|
+
});
|
|
667
|
+
return Fr.fromString(value ?? '0x0');
|
|
668
|
+
}
|
|
669
|
+
/**
|
|
670
|
+
* Returns rollup constants used for epoch queries.
|
|
671
|
+
* Return type is `L1RollupConstants` which is defined in stdlib,
|
|
672
|
+
* so we cant reference it until we move this contract to that package.
|
|
673
|
+
*/ async getRollupConstants() {
|
|
674
|
+
const [l1StartBlock, l1GenesisTime, slotDuration, epochDuration, proofSubmissionEpochs, targetCommitteeSize, rollupManaLimit] = await Promise.all([
|
|
675
|
+
this.getL1StartBlock(),
|
|
676
|
+
this.getL1GenesisTime(),
|
|
677
|
+
this.getSlotDuration(),
|
|
678
|
+
this.getEpochDuration(),
|
|
679
|
+
this.getProofSubmissionEpochs(),
|
|
680
|
+
this.getTargetCommitteeSize(),
|
|
681
|
+
this.getManaLimit()
|
|
682
|
+
]);
|
|
683
|
+
return {
|
|
684
|
+
l1StartBlock,
|
|
685
|
+
l1GenesisTime,
|
|
686
|
+
slotDuration,
|
|
687
|
+
epochDuration: Number(epochDuration),
|
|
688
|
+
proofSubmissionEpochs: Number(proofSubmissionEpochs),
|
|
689
|
+
targetCommitteeSize,
|
|
690
|
+
rollupManaLimit: Number(rollupManaLimit)
|
|
691
|
+
};
|
|
692
|
+
}
|
|
693
|
+
async getSlasherAddress() {
|
|
694
|
+
return EthAddress.fromString(await this.rollup.read.getSlasher());
|
|
86
695
|
}
|
|
87
|
-
|
|
88
|
-
|
|
696
|
+
/**
|
|
697
|
+
* Returns the configured escape hatch contract address, or zero if disabled.
|
|
698
|
+
*/ async getEscapeHatchAddress() {
|
|
699
|
+
return EthAddress.fromString(await this.rollup.read.getEscapeHatch());
|
|
89
700
|
}
|
|
90
|
-
|
|
91
|
-
|
|
701
|
+
async getEscapeHatchContract() {
|
|
702
|
+
const escapeHatchAddress = await this.getEscapeHatchAddress();
|
|
703
|
+
if (escapeHatchAddress.isZero()) {
|
|
704
|
+
return undefined;
|
|
705
|
+
}
|
|
706
|
+
// Cache the viem contract wrapper since it will be used frequently.
|
|
707
|
+
if (!this.cachedEscapeHatch || !this.cachedEscapeHatch.address.equals(escapeHatchAddress)) {
|
|
708
|
+
this.cachedEscapeHatch = {
|
|
709
|
+
address: escapeHatchAddress,
|
|
710
|
+
contract: getContract({
|
|
711
|
+
address: escapeHatchAddress.toString(),
|
|
712
|
+
abi: EscapeHatchAbi,
|
|
713
|
+
client: this.client
|
|
714
|
+
})
|
|
715
|
+
};
|
|
716
|
+
}
|
|
717
|
+
return this.cachedEscapeHatch.contract;
|
|
92
718
|
}
|
|
93
|
-
|
|
94
|
-
|
|
719
|
+
/**
|
|
720
|
+
* Returns whether the escape hatch is open for the given epoch.
|
|
721
|
+
* If escape hatch is not configured, returns false.
|
|
722
|
+
*
|
|
723
|
+
* This function is intentionally defensive: any failure to query the escape hatch
|
|
724
|
+
* (RPC issues, transient errors, etc.) is treated as "closed" to avoid callers
|
|
725
|
+
* needing to sprinkle try/catch everywhere.
|
|
726
|
+
*/ async isEscapeHatchOpen(epoch) {
|
|
727
|
+
try {
|
|
728
|
+
const escapeHatch = await this.getEscapeHatchContract();
|
|
729
|
+
if (!escapeHatch) {
|
|
730
|
+
return false;
|
|
731
|
+
}
|
|
732
|
+
const [isOpen] = await escapeHatch.read.isHatchOpen([
|
|
733
|
+
BigInt(epoch)
|
|
734
|
+
]);
|
|
735
|
+
return isOpen;
|
|
736
|
+
} catch {
|
|
737
|
+
return false;
|
|
738
|
+
}
|
|
95
739
|
}
|
|
96
|
-
|
|
97
|
-
|
|
740
|
+
/**
|
|
741
|
+
* Returns a SlasherContract instance for interacting with the slasher contract.
|
|
742
|
+
*/ async getSlasherContract() {
|
|
743
|
+
const slasherAddress = await this.getSlasherAddress();
|
|
744
|
+
if (slasherAddress.isZero()) {
|
|
745
|
+
return undefined;
|
|
746
|
+
}
|
|
747
|
+
return new SlasherContract(this.client, slasherAddress);
|
|
748
|
+
}
|
|
749
|
+
async getOwner() {
|
|
750
|
+
return EthAddress.fromString(await this.rollup.read.owner());
|
|
751
|
+
}
|
|
752
|
+
async getActiveAttesterCount() {
|
|
753
|
+
return Number(await this.rollup.read.getActiveAttesterCount());
|
|
754
|
+
}
|
|
755
|
+
async getSlashingProposerAddress() {
|
|
756
|
+
const slasher = await this.getSlasherContract();
|
|
757
|
+
if (!slasher) {
|
|
758
|
+
return EthAddress.ZERO;
|
|
759
|
+
}
|
|
760
|
+
return await slasher.getProposer();
|
|
761
|
+
}
|
|
762
|
+
getCheckpointReward() {
|
|
763
|
+
return this.rollup.read.getCheckpointReward();
|
|
764
|
+
}
|
|
765
|
+
async getCheckpointNumber() {
|
|
766
|
+
return CheckpointNumber.fromBigInt(await this.rollup.read.getPendingCheckpointNumber());
|
|
767
|
+
}
|
|
768
|
+
async getProvenCheckpointNumber(options) {
|
|
769
|
+
await checkBlockTag(options?.blockNumber, this.client);
|
|
770
|
+
return CheckpointNumber.fromBigInt(await this.rollup.read.getProvenCheckpointNumber(options));
|
|
771
|
+
}
|
|
772
|
+
async getSlotNumber() {
|
|
773
|
+
return SlotNumber.fromBigInt(await this.rollup.read.getCurrentSlot());
|
|
774
|
+
}
|
|
775
|
+
async getL1FeesAt(timestamp) {
|
|
776
|
+
const result = await this.rollup.read.getL1FeesAt([
|
|
98
777
|
timestamp
|
|
99
778
|
]);
|
|
779
|
+
return {
|
|
780
|
+
baseFee: result.baseFee,
|
|
781
|
+
blobFee: result.blobFee
|
|
782
|
+
};
|
|
783
|
+
}
|
|
784
|
+
getEthPerFeeAsset() {
|
|
785
|
+
return this.rollup.read.getEthPerFeeAsset();
|
|
786
|
+
}
|
|
787
|
+
async getCommitteeAt(timestamp) {
|
|
788
|
+
const { result } = await this.client.simulateContract({
|
|
789
|
+
address: this.address,
|
|
790
|
+
abi: RollupAbi,
|
|
791
|
+
functionName: 'getCommitteeAt',
|
|
792
|
+
args: [
|
|
793
|
+
timestamp
|
|
794
|
+
]
|
|
795
|
+
}).catch((e)=>{
|
|
796
|
+
if (e instanceof Error && e.message.includes('ValidatorSelection__InsufficientValidatorSetSize')) {
|
|
797
|
+
return {
|
|
798
|
+
result: undefined
|
|
799
|
+
};
|
|
800
|
+
}
|
|
801
|
+
throw e;
|
|
802
|
+
});
|
|
803
|
+
return result ? result.map((addr)=>EthAddress.fromString(addr)) : undefined;
|
|
100
804
|
}
|
|
101
|
-
getSampleSeedAt(timestamp) {
|
|
102
|
-
return this.rollup.read.getSampleSeedAt([
|
|
805
|
+
async getSampleSeedAt(timestamp) {
|
|
806
|
+
return Buffer32.fromBigInt(await this.rollup.read.getSampleSeedAt([
|
|
103
807
|
timestamp
|
|
104
|
-
]);
|
|
808
|
+
]));
|
|
105
809
|
}
|
|
106
|
-
getCurrentSampleSeed() {
|
|
107
|
-
return this.rollup.read.getCurrentSampleSeed();
|
|
810
|
+
async getCurrentSampleSeed() {
|
|
811
|
+
return Buffer32.fromBigInt(await this.rollup.read.getCurrentSampleSeed());
|
|
108
812
|
}
|
|
109
|
-
|
|
110
|
-
return this.rollup.read.
|
|
813
|
+
async getCurrentEpoch() {
|
|
814
|
+
return EpochNumber.fromBigInt(await this.rollup.read.getCurrentEpoch());
|
|
111
815
|
}
|
|
112
|
-
|
|
113
|
-
|
|
816
|
+
async getCurrentEpochCommittee() {
|
|
817
|
+
const { result } = await this.client.simulateContract({
|
|
818
|
+
address: this.address,
|
|
819
|
+
abi: RollupAbi,
|
|
820
|
+
functionName: 'getCurrentEpochCommittee',
|
|
821
|
+
args: []
|
|
822
|
+
}).catch((e)=>{
|
|
823
|
+
if (e instanceof Error && e.message.includes('ValidatorSelection__InsufficientValidatorSetSize')) {
|
|
824
|
+
return {
|
|
825
|
+
result: undefined
|
|
826
|
+
};
|
|
827
|
+
}
|
|
828
|
+
throw e;
|
|
829
|
+
});
|
|
830
|
+
return result ? result.map((addr)=>EthAddress.fromString(addr)) : undefined;
|
|
114
831
|
}
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
832
|
+
async getCurrentProposer() {
|
|
833
|
+
const { result } = await this.client.simulateContract({
|
|
834
|
+
address: this.address,
|
|
835
|
+
abi: RollupAbi,
|
|
836
|
+
functionName: 'getCurrentProposer',
|
|
837
|
+
args: []
|
|
838
|
+
});
|
|
839
|
+
return EthAddress.fromString(result);
|
|
840
|
+
}
|
|
841
|
+
async getProposerAt(timestamp) {
|
|
842
|
+
const { result } = await this.client.simulateContract({
|
|
843
|
+
address: this.address,
|
|
844
|
+
abi: RollupAbi,
|
|
845
|
+
functionName: 'getProposerAt',
|
|
846
|
+
args: [
|
|
847
|
+
timestamp
|
|
848
|
+
]
|
|
849
|
+
});
|
|
850
|
+
return EthAddress.fromString(result);
|
|
119
851
|
}
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
852
|
+
async getCheckpoint(checkpointNumber) {
|
|
853
|
+
const result = await this.rollup.read.getCheckpoint([
|
|
854
|
+
BigInt(checkpointNumber)
|
|
123
855
|
]);
|
|
856
|
+
return {
|
|
857
|
+
archive: Fr.fromString(result.archive),
|
|
858
|
+
headerHash: Buffer32.fromString(result.headerHash),
|
|
859
|
+
blobCommitmentsHash: Buffer32.fromString(result.blobCommitmentsHash),
|
|
860
|
+
attestationsHash: Buffer32.fromString(result.attestationsHash),
|
|
861
|
+
payloadDigest: Buffer32.fromString(result.payloadDigest),
|
|
862
|
+
slotNumber: SlotNumber.fromBigInt(result.slotNumber),
|
|
863
|
+
feeHeader: {
|
|
864
|
+
excessMana: result.feeHeader.excessMana,
|
|
865
|
+
manaUsed: result.feeHeader.manaUsed,
|
|
866
|
+
ethPerFeeAsset: result.feeHeader.ethPerFeeAsset,
|
|
867
|
+
congestionCost: result.feeHeader.congestionCost,
|
|
868
|
+
proverCost: result.feeHeader.proverCost
|
|
869
|
+
}
|
|
870
|
+
};
|
|
871
|
+
}
|
|
872
|
+
/** Returns the pending checkpoint from the rollup contract */ getPendingCheckpoint() {
|
|
873
|
+
// We retry because of race conditions during prunes: we may get a pending checkpoint number which is immediately
|
|
874
|
+
// reorged out due to a prune happening, causing the subsequent getCheckpoint call to fail. So we try again in that case.
|
|
875
|
+
return retry(async ()=>{
|
|
876
|
+
const pendingCheckpointNumber = await this.getCheckpointNumber();
|
|
877
|
+
const pendingCheckpoint = await this.getCheckpoint(pendingCheckpointNumber);
|
|
878
|
+
return pendingCheckpoint;
|
|
879
|
+
}, 'getting pending checkpoint', makeBackoff([
|
|
880
|
+
0.5,
|
|
881
|
+
0.5,
|
|
882
|
+
0.5
|
|
883
|
+
]));
|
|
124
884
|
}
|
|
125
|
-
getTips() {
|
|
126
|
-
|
|
885
|
+
async getTips() {
|
|
886
|
+
const { pending, proven } = await this.rollup.read.getTips();
|
|
887
|
+
return {
|
|
888
|
+
pending: CheckpointNumber.fromBigInt(pending),
|
|
889
|
+
proven: CheckpointNumber.fromBigInt(proven)
|
|
890
|
+
};
|
|
127
891
|
}
|
|
128
892
|
getTimestampForSlot(slot) {
|
|
129
893
|
return this.rollup.read.getTimestampForSlot([
|
|
130
|
-
slot
|
|
894
|
+
BigInt(slot)
|
|
131
895
|
]);
|
|
132
896
|
}
|
|
133
|
-
async
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
897
|
+
async getEntryQueueLength() {
|
|
898
|
+
return Number(await this.rollup.read.getEntryQueueLength());
|
|
899
|
+
}
|
|
900
|
+
async getAvailableValidatorFlushes() {
|
|
901
|
+
return Number(await this.rollup.read.getAvailableValidatorFlushes());
|
|
902
|
+
}
|
|
903
|
+
async getNextFlushableEpoch() {
|
|
904
|
+
return EpochNumber.fromBigInt(await this.rollup.read.getNextFlushableEpoch());
|
|
905
|
+
}
|
|
906
|
+
async getCurrentEpochNumber() {
|
|
907
|
+
return EpochNumber.fromBigInt(await this.rollup.read.getCurrentEpoch());
|
|
908
|
+
}
|
|
909
|
+
async getEpochNumberForCheckpoint(checkpointNumber) {
|
|
910
|
+
return EpochNumber.fromBigInt(await this.rollup.read.getEpochForCheckpoint([
|
|
911
|
+
BigInt(checkpointNumber)
|
|
912
|
+
]));
|
|
138
913
|
}
|
|
139
914
|
async getRollupAddresses() {
|
|
140
|
-
const [inboxAddress, outboxAddress, feeJuicePortalAddress, rewardDistributorAddress, feeJuiceAddress, stakingAssetAddress] = (await Promise.all([
|
|
915
|
+
const [inboxAddress, outboxAddress, feeJuicePortalAddress, rewardDistributorAddress, feeJuiceAddress, stakingAssetAddress, gseAddress] = (await Promise.all([
|
|
141
916
|
this.rollup.read.getInbox(),
|
|
142
917
|
this.rollup.read.getOutbox(),
|
|
143
918
|
this.rollup.read.getFeeAssetPortal(),
|
|
144
919
|
this.rollup.read.getRewardDistributor(),
|
|
145
920
|
this.rollup.read.getFeeAsset(),
|
|
146
|
-
this.rollup.read.getStakingAsset()
|
|
921
|
+
this.rollup.read.getStakingAsset(),
|
|
922
|
+
this.rollup.read.getGSE()
|
|
147
923
|
])).map(EthAddress.fromString);
|
|
148
924
|
return {
|
|
149
925
|
rollupAddress: EthAddress.fromString(this.address),
|
|
@@ -152,20 +928,29 @@ export class RollupContract {
|
|
|
152
928
|
feeJuicePortalAddress,
|
|
153
929
|
feeJuiceAddress,
|
|
154
930
|
stakingAssetAddress,
|
|
155
|
-
rewardDistributorAddress
|
|
931
|
+
rewardDistributorAddress,
|
|
932
|
+
gseAddress
|
|
156
933
|
};
|
|
157
934
|
}
|
|
935
|
+
async getFeeJuicePortal() {
|
|
936
|
+
return EthAddress.fromString(await this.rollup.read.getFeeAssetPortal());
|
|
937
|
+
}
|
|
158
938
|
async getEpochNumberForSlotNumber(slotNumber) {
|
|
159
|
-
return await this.rollup.read.getEpochAtSlot([
|
|
160
|
-
slotNumber
|
|
161
|
-
]);
|
|
939
|
+
return EpochNumber.fromBigInt(await this.rollup.read.getEpochAtSlot([
|
|
940
|
+
BigInt(slotNumber)
|
|
941
|
+
]));
|
|
162
942
|
}
|
|
163
|
-
getEpochProofPublicInputs(args) {
|
|
164
|
-
|
|
943
|
+
async getEpochProofPublicInputs(args) {
|
|
944
|
+
const result = await this.rollup.read.getEpochProofPublicInputs(args);
|
|
945
|
+
return result.map(Fr.fromString);
|
|
165
946
|
}
|
|
166
947
|
async validateHeader(args, account) {
|
|
167
948
|
try {
|
|
168
|
-
await this.
|
|
949
|
+
await this.client.simulateContract({
|
|
950
|
+
address: this.address,
|
|
951
|
+
abi: RollupAbi,
|
|
952
|
+
functionName: 'validateHeaderWithAttestations',
|
|
953
|
+
args,
|
|
169
954
|
account
|
|
170
955
|
});
|
|
171
956
|
} catch (error) {
|
|
@@ -178,57 +963,336 @@ export class RollupContract {
|
|
|
178
963
|
* @dev Throws if unable to propose
|
|
179
964
|
*
|
|
180
965
|
* @param archive - The archive that we expect to be current state
|
|
181
|
-
* @return [slot,
|
|
966
|
+
* @return [slot, checkpointNumber, timeOfNextL1Slot] - If you can propose, the L2 slot number, checkpoint number and
|
|
967
|
+
* timestamp of the next L1 block
|
|
182
968
|
* @throws otherwise
|
|
183
|
-
*/ async canProposeAtNextEthBlock(archive, account, slotDuration) {
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
const timeOfNextL1Slot = (await this.client.getBlock()).timestamp + slotDuration;
|
|
969
|
+
*/ async canProposeAtNextEthBlock(archive, account, slotDuration, opts = {}) {
|
|
970
|
+
const latestBlock = await this.client.getBlock();
|
|
971
|
+
const timeOfNextL1Slot = latestBlock.timestamp + BigInt(slotDuration);
|
|
972
|
+
const who = typeof account === 'string' ? account : account.address;
|
|
188
973
|
try {
|
|
189
|
-
const [slot,
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
974
|
+
const { result: [slot, checkpointNumber] } = await this.client.simulateContract({
|
|
975
|
+
address: this.address,
|
|
976
|
+
abi: RollupAbi,
|
|
977
|
+
functionName: 'canProposeAtTime',
|
|
978
|
+
args: [
|
|
979
|
+
timeOfNextL1Slot,
|
|
980
|
+
`0x${archive.toString('hex')}`,
|
|
981
|
+
who
|
|
982
|
+
],
|
|
983
|
+
account,
|
|
984
|
+
stateOverride: await this.makePendingCheckpointNumberOverride(opts.forcePendingCheckpointNumber)
|
|
194
985
|
});
|
|
195
|
-
return
|
|
196
|
-
slot,
|
|
197
|
-
|
|
198
|
-
|
|
986
|
+
return {
|
|
987
|
+
slot: SlotNumber.fromBigInt(slot),
|
|
988
|
+
checkpointNumber: CheckpointNumber.fromBigInt(checkpointNumber),
|
|
989
|
+
timeOfNextL1Slot
|
|
990
|
+
};
|
|
199
991
|
} catch (err) {
|
|
200
992
|
throw formatViemError(err);
|
|
201
993
|
}
|
|
202
994
|
}
|
|
203
|
-
/**
|
|
995
|
+
/**
|
|
996
|
+
* Returns a state override that sets the pending checkpoint number to the specified value. Useful for simulations.
|
|
997
|
+
* Requires querying the current state of the contract to get the current proven checkpoint number, as they are both
|
|
998
|
+
* stored in the same slot. If the argument is undefined, it returns an empty override.
|
|
999
|
+
*/ async makePendingCheckpointNumberOverride(forcePendingCheckpointNumber) {
|
|
1000
|
+
if (forcePendingCheckpointNumber === undefined) {
|
|
1001
|
+
return [];
|
|
1002
|
+
}
|
|
1003
|
+
const slot = RollupContract.stfStorageSlot;
|
|
1004
|
+
const currentValue = await this.client.getStorageAt({
|
|
1005
|
+
address: this.address,
|
|
1006
|
+
slot
|
|
1007
|
+
});
|
|
1008
|
+
const currentProvenCheckpointNumber = currentValue ? hexToBigInt(currentValue) & (1n << 128n) - 1n : 0n;
|
|
1009
|
+
const newValue = BigInt(forcePendingCheckpointNumber) << 128n | currentProvenCheckpointNumber;
|
|
1010
|
+
return [
|
|
1011
|
+
{
|
|
1012
|
+
address: this.address,
|
|
1013
|
+
stateDiff: [
|
|
1014
|
+
{
|
|
1015
|
+
slot,
|
|
1016
|
+
value: `0x${newValue.toString(16).padStart(64, '0')}`
|
|
1017
|
+
}
|
|
1018
|
+
]
|
|
1019
|
+
}
|
|
1020
|
+
];
|
|
1021
|
+
}
|
|
1022
|
+
/** Creates a request to Rollup#invalidateBadAttestation to be simulated or sent */ buildInvalidateBadAttestationRequest(checkpointNumber, attestationsAndSigners, committee, invalidIndex) {
|
|
1023
|
+
return {
|
|
1024
|
+
to: this.address,
|
|
1025
|
+
abi: RollupAbi,
|
|
1026
|
+
data: encodeFunctionData({
|
|
1027
|
+
abi: RollupAbi,
|
|
1028
|
+
functionName: 'invalidateBadAttestation',
|
|
1029
|
+
args: [
|
|
1030
|
+
BigInt(checkpointNumber),
|
|
1031
|
+
attestationsAndSigners,
|
|
1032
|
+
committee.map((addr)=>addr.toString()),
|
|
1033
|
+
BigInt(invalidIndex)
|
|
1034
|
+
]
|
|
1035
|
+
})
|
|
1036
|
+
};
|
|
1037
|
+
}
|
|
1038
|
+
/** Creates a request to Rollup#invalidateInsufficientAttestations to be simulated or sent */ buildInvalidateInsufficientAttestationsRequest(checkpointNumber, attestationsAndSigners, committee) {
|
|
1039
|
+
return {
|
|
1040
|
+
to: this.address,
|
|
1041
|
+
abi: RollupAbi,
|
|
1042
|
+
data: encodeFunctionData({
|
|
1043
|
+
abi: RollupAbi,
|
|
1044
|
+
functionName: 'invalidateInsufficientAttestations',
|
|
1045
|
+
args: [
|
|
1046
|
+
BigInt(checkpointNumber),
|
|
1047
|
+
attestationsAndSigners,
|
|
1048
|
+
committee.map((addr)=>addr.toString())
|
|
1049
|
+
]
|
|
1050
|
+
})
|
|
1051
|
+
};
|
|
1052
|
+
}
|
|
1053
|
+
/** Calls getHasSubmitted directly. Returns whether the given prover has submitted a proof with the given length for the given epoch. */ getHasSubmittedProof(epochNumber, numberOfCheckpointsInEpoch, prover) {
|
|
1054
|
+
if (prover instanceof EthAddress) {
|
|
1055
|
+
prover = prover.toString();
|
|
1056
|
+
}
|
|
204
1057
|
return this.rollup.read.getHasSubmitted([
|
|
205
1058
|
BigInt(epochNumber),
|
|
206
|
-
BigInt(
|
|
207
|
-
prover
|
|
1059
|
+
BigInt(numberOfCheckpointsInEpoch),
|
|
1060
|
+
prover
|
|
1061
|
+
]);
|
|
1062
|
+
}
|
|
1063
|
+
getManaMinFeeAt(timestamp, inFeeAsset) {
|
|
1064
|
+
return this.rollup.read.getManaMinFeeAt([
|
|
1065
|
+
timestamp,
|
|
1066
|
+
inFeeAsset
|
|
1067
|
+
]);
|
|
1068
|
+
}
|
|
1069
|
+
async getManaMinFeeComponentsAt(timestamp, inFeeAsset) {
|
|
1070
|
+
const result = await this.rollup.read.getManaMinFeeComponentsAt([
|
|
1071
|
+
timestamp,
|
|
1072
|
+
inFeeAsset
|
|
1073
|
+
]);
|
|
1074
|
+
return {
|
|
1075
|
+
sequencerCost: result.sequencerCost,
|
|
1076
|
+
proverCost: result.proverCost,
|
|
1077
|
+
congestionCost: result.congestionCost,
|
|
1078
|
+
congestionMultiplier: result.congestionMultiplier
|
|
1079
|
+
};
|
|
1080
|
+
}
|
|
1081
|
+
async getSlotAt(timestamp) {
|
|
1082
|
+
return SlotNumber.fromBigInt(await this.rollup.read.getSlotAt([
|
|
1083
|
+
timestamp
|
|
1084
|
+
]));
|
|
1085
|
+
}
|
|
1086
|
+
async status(checkpointNumber, options) {
|
|
1087
|
+
await checkBlockTag(options?.blockNumber, this.client);
|
|
1088
|
+
const result = await this.rollup.read.status([
|
|
1089
|
+
BigInt(checkpointNumber)
|
|
1090
|
+
], options);
|
|
1091
|
+
return {
|
|
1092
|
+
provenCheckpointNumber: CheckpointNumber.fromBigInt(result[0]),
|
|
1093
|
+
provenArchive: Fr.fromString(result[1]),
|
|
1094
|
+
pendingCheckpointNumber: CheckpointNumber.fromBigInt(result[2]),
|
|
1095
|
+
pendingArchive: Fr.fromString(result[3]),
|
|
1096
|
+
archiveOfMyCheckpoint: Fr.fromString(result[4])
|
|
1097
|
+
};
|
|
1098
|
+
}
|
|
1099
|
+
async canPruneAtTime(timestamp, options) {
|
|
1100
|
+
await checkBlockTag(options?.blockNumber, this.client);
|
|
1101
|
+
return this.rollup.read.canPruneAtTime([
|
|
1102
|
+
timestamp
|
|
1103
|
+
], options);
|
|
1104
|
+
}
|
|
1105
|
+
async archive() {
|
|
1106
|
+
return Fr.fromString(await this.rollup.read.archive());
|
|
1107
|
+
}
|
|
1108
|
+
async archiveAt(checkpointNumber) {
|
|
1109
|
+
return Fr.fromString(await this.rollup.read.archiveAt([
|
|
1110
|
+
BigInt(checkpointNumber)
|
|
1111
|
+
]));
|
|
1112
|
+
}
|
|
1113
|
+
getSequencerRewards(address) {
|
|
1114
|
+
if (address instanceof EthAddress) {
|
|
1115
|
+
address = address.toString();
|
|
1116
|
+
}
|
|
1117
|
+
return this.rollup.read.getSequencerRewards([
|
|
1118
|
+
address
|
|
1119
|
+
]);
|
|
1120
|
+
}
|
|
1121
|
+
getSpecificProverRewardsForEpoch(epoch, prover) {
|
|
1122
|
+
if (prover instanceof EthAddress) {
|
|
1123
|
+
prover = prover.toString();
|
|
1124
|
+
}
|
|
1125
|
+
return this.rollup.read.getSpecificProverRewardsForEpoch([
|
|
1126
|
+
epoch,
|
|
1127
|
+
prover
|
|
208
1128
|
]);
|
|
209
1129
|
}
|
|
1130
|
+
async getAttesters() {
|
|
1131
|
+
const attesterSize = await this.getActiveAttesterCount();
|
|
1132
|
+
const gse = new GSEContract(this.client, await this.getGSE());
|
|
1133
|
+
const ts = (await this.client.getBlock()).timestamp;
|
|
1134
|
+
const indices = Array.from({
|
|
1135
|
+
length: attesterSize
|
|
1136
|
+
}, (_, i)=>BigInt(i));
|
|
1137
|
+
const chunks = chunk(indices, 1000);
|
|
1138
|
+
const results = await Promise.all(chunks.map((chunk)=>gse.getAttestersFromIndicesAtTime(this.address, ts, chunk)));
|
|
1139
|
+
return results.flat().map((addr)=>EthAddress.fromString(addr));
|
|
1140
|
+
}
|
|
1141
|
+
async getAttesterView(address) {
|
|
1142
|
+
if (address instanceof EthAddress) {
|
|
1143
|
+
address = address.toString();
|
|
1144
|
+
}
|
|
1145
|
+
const result = await this.rollup.read.getAttesterView([
|
|
1146
|
+
address
|
|
1147
|
+
]);
|
|
1148
|
+
return {
|
|
1149
|
+
status: result.status,
|
|
1150
|
+
effectiveBalance: result.effectiveBalance,
|
|
1151
|
+
exit: {
|
|
1152
|
+
withdrawalId: result.exit.withdrawalId,
|
|
1153
|
+
amount: result.exit.amount,
|
|
1154
|
+
exitableAt: result.exit.exitableAt,
|
|
1155
|
+
recipientOrWithdrawer: EthAddress.fromString(result.exit.recipientOrWithdrawer),
|
|
1156
|
+
isRecipient: result.exit.isRecipient,
|
|
1157
|
+
exists: result.exit.exists
|
|
1158
|
+
},
|
|
1159
|
+
config: {
|
|
1160
|
+
publicKey: {
|
|
1161
|
+
x: result.config.publicKey.x,
|
|
1162
|
+
y: result.config.publicKey.y
|
|
1163
|
+
},
|
|
1164
|
+
withdrawer: EthAddress.fromString(result.config.withdrawer)
|
|
1165
|
+
}
|
|
1166
|
+
};
|
|
1167
|
+
}
|
|
1168
|
+
async getStatus(address) {
|
|
1169
|
+
if (address instanceof EthAddress) {
|
|
1170
|
+
address = address.toString();
|
|
1171
|
+
}
|
|
1172
|
+
return await this.rollup.read.getStatus([
|
|
1173
|
+
address
|
|
1174
|
+
]);
|
|
1175
|
+
}
|
|
1176
|
+
async getBlobCommitmentsHash(checkpointNumber) {
|
|
1177
|
+
return Buffer32.fromString(await this.rollup.read.getBlobCommitmentsHash([
|
|
1178
|
+
BigInt(checkpointNumber)
|
|
1179
|
+
]));
|
|
1180
|
+
}
|
|
1181
|
+
async getCurrentBlobCommitmentsHash() {
|
|
1182
|
+
return Buffer32.fromString(await this.rollup.read.getCurrentBlobCommitmentsHash());
|
|
1183
|
+
}
|
|
1184
|
+
async getStakingAsset() {
|
|
1185
|
+
return EthAddress.fromString(await this.rollup.read.getStakingAsset());
|
|
1186
|
+
}
|
|
1187
|
+
async getRewardConfig() {
|
|
1188
|
+
const result = await this.rollup.read.getRewardConfig();
|
|
1189
|
+
return {
|
|
1190
|
+
rewardDistributor: EthAddress.fromString(result.rewardDistributor),
|
|
1191
|
+
sequencerBps: BigInt(result.sequencerBps),
|
|
1192
|
+
booster: EthAddress.fromString(result.booster),
|
|
1193
|
+
checkpointReward: result.checkpointReward
|
|
1194
|
+
};
|
|
1195
|
+
}
|
|
1196
|
+
setupEpoch(l1TxUtils) {
|
|
1197
|
+
return l1TxUtils.sendAndMonitorTransaction({
|
|
1198
|
+
to: this.address,
|
|
1199
|
+
abi: RollupAbi,
|
|
1200
|
+
data: encodeFunctionData({
|
|
1201
|
+
abi: RollupAbi,
|
|
1202
|
+
functionName: 'setupEpoch',
|
|
1203
|
+
args: []
|
|
1204
|
+
})
|
|
1205
|
+
});
|
|
1206
|
+
}
|
|
1207
|
+
vote(l1TxUtils, proposalId) {
|
|
1208
|
+
return l1TxUtils.sendAndMonitorTransaction({
|
|
1209
|
+
to: this.address,
|
|
1210
|
+
abi: RollupAbi,
|
|
1211
|
+
data: encodeFunctionData({
|
|
1212
|
+
abi: RollupAbi,
|
|
1213
|
+
functionName: 'vote',
|
|
1214
|
+
args: [
|
|
1215
|
+
proposalId
|
|
1216
|
+
]
|
|
1217
|
+
})
|
|
1218
|
+
});
|
|
1219
|
+
}
|
|
1220
|
+
listenToSlasherChanged(callback) {
|
|
1221
|
+
return this.rollup.watchEvent.SlasherUpdated({}, {
|
|
1222
|
+
onLogs: (logs)=>{
|
|
1223
|
+
for (const log of logs){
|
|
1224
|
+
const args = log.args;
|
|
1225
|
+
if (args.oldSlasher && args.newSlasher) {
|
|
1226
|
+
callback(args);
|
|
1227
|
+
}
|
|
1228
|
+
}
|
|
1229
|
+
}
|
|
1230
|
+
});
|
|
1231
|
+
}
|
|
1232
|
+
listenToCheckpointInvalidated(callback) {
|
|
1233
|
+
return this.rollup.watchEvent.CheckpointInvalidated({}, {
|
|
1234
|
+
onLogs: (logs)=>{
|
|
1235
|
+
for (const log of logs){
|
|
1236
|
+
const args = log.args;
|
|
1237
|
+
if (args.checkpointNumber !== undefined) {
|
|
1238
|
+
callback({
|
|
1239
|
+
checkpointNumber: CheckpointNumber.fromBigInt(args.checkpointNumber)
|
|
1240
|
+
});
|
|
1241
|
+
}
|
|
1242
|
+
}
|
|
1243
|
+
}
|
|
1244
|
+
});
|
|
1245
|
+
}
|
|
1246
|
+
async getSlashEvents(l1BlockHash) {
|
|
1247
|
+
const events = await this.rollup.getEvents.Slashed({}, {
|
|
1248
|
+
blockHash: l1BlockHash,
|
|
1249
|
+
strict: true
|
|
1250
|
+
});
|
|
1251
|
+
return events.map((event)=>({
|
|
1252
|
+
amount: event.args.amount,
|
|
1253
|
+
attester: EthAddress.fromString(event.args.attester)
|
|
1254
|
+
}));
|
|
1255
|
+
}
|
|
1256
|
+
listenToSlash(callback) {
|
|
1257
|
+
return this.rollup.watchEvent.Slashed({}, {
|
|
1258
|
+
strict: true,
|
|
1259
|
+
onLogs: (logs)=>{
|
|
1260
|
+
for (const log of logs){
|
|
1261
|
+
const args = log.args;
|
|
1262
|
+
callback({
|
|
1263
|
+
amount: args.amount,
|
|
1264
|
+
attester: EthAddress.fromString(args.attester)
|
|
1265
|
+
});
|
|
1266
|
+
}
|
|
1267
|
+
}
|
|
1268
|
+
});
|
|
1269
|
+
}
|
|
1270
|
+
/** Fetches CheckpointProposed events within the given block range. */ async getCheckpointProposedEvents(fromBlock, toBlock) {
|
|
1271
|
+
const logs = await this.rollup.getEvents.CheckpointProposed({}, {
|
|
1272
|
+
fromBlock,
|
|
1273
|
+
toBlock
|
|
1274
|
+
});
|
|
1275
|
+
return logs.filter((log)=>log.blockNumber >= fromBlock && log.blockNumber <= toBlock).map((log)=>({
|
|
1276
|
+
l1BlockNumber: log.blockNumber,
|
|
1277
|
+
l1BlockHash: Buffer32.fromString(log.blockHash),
|
|
1278
|
+
l1TransactionHash: log.transactionHash,
|
|
1279
|
+
args: {
|
|
1280
|
+
checkpointNumber: CheckpointNumber.fromBigInt(log.args.checkpointNumber),
|
|
1281
|
+
archive: Fr.fromString(log.args.archive),
|
|
1282
|
+
versionedBlobHashes: log.args.versionedBlobHashes.map((h)=>Buffer.from(h.slice(2), 'hex')),
|
|
1283
|
+
attestationsHash: (()=>{
|
|
1284
|
+
if (!log.args.attestationsHash) {
|
|
1285
|
+
throw new Error(`CheckpointProposed event missing attestationsHash for checkpoint ${log.args.checkpointNumber}`);
|
|
1286
|
+
}
|
|
1287
|
+
return Buffer32.fromString(log.args.attestationsHash);
|
|
1288
|
+
})(),
|
|
1289
|
+
payloadDigest: (()=>{
|
|
1290
|
+
if (!log.args.payloadDigest) {
|
|
1291
|
+
throw new Error(`CheckpointProposed event missing payloadDigest for checkpoint ${log.args.checkpointNumber}`);
|
|
1292
|
+
}
|
|
1293
|
+
return Buffer32.fromString(log.args.payloadDigest);
|
|
1294
|
+
})()
|
|
1295
|
+
}
|
|
1296
|
+
}));
|
|
1297
|
+
}
|
|
210
1298
|
}
|
|
211
|
-
_ts_decorate([
|
|
212
|
-
memoize
|
|
213
|
-
], RollupContract.prototype, "getSlashingProposer", null);
|
|
214
|
-
_ts_decorate([
|
|
215
|
-
memoize
|
|
216
|
-
], RollupContract.prototype, "getL1StartBlock", null);
|
|
217
|
-
_ts_decorate([
|
|
218
|
-
memoize
|
|
219
|
-
], RollupContract.prototype, "getL1GenesisTime", null);
|
|
220
|
-
_ts_decorate([
|
|
221
|
-
memoize
|
|
222
|
-
], RollupContract.prototype, "getProofSubmissionWindow", null);
|
|
223
|
-
_ts_decorate([
|
|
224
|
-
memoize
|
|
225
|
-
], RollupContract.prototype, "getEpochDuration", null);
|
|
226
|
-
_ts_decorate([
|
|
227
|
-
memoize
|
|
228
|
-
], RollupContract.prototype, "getSlotDuration", null);
|
|
229
|
-
_ts_decorate([
|
|
230
|
-
memoize
|
|
231
|
-
], RollupContract.prototype, "getTargetCommitteeSize", null);
|
|
232
|
-
_ts_decorate([
|
|
233
|
-
memoize
|
|
234
|
-
], RollupContract.prototype, "getMinimumStake", null);
|