@keep-network/tbtc-v2 0.1.1-dev.112 → 0.1.1-dev.113
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/artifacts/BLS.json +223 -0
- package/artifacts/Bank.json +11 -11
- package/artifacts/BeaconAuthorization.json +273 -0
- package/artifacts/BeaconDkg.json +241 -0
- package/artifacts/BeaconDkgValidator.json +516 -0
- package/artifacts/BeaconInactivity.json +151 -0
- package/artifacts/BeaconSortitionPool.json +1004 -0
- package/artifacts/Bridge.json +1392 -1148
- package/artifacts/BridgeGovernance.json +14 -14
- package/artifacts/BridgeGovernanceParameters.json +6 -6
- package/artifacts/Deposit.json +6 -6
- package/artifacts/DepositSweep.json +6 -6
- package/artifacts/EcdsaDkgValidator.json +9 -9
- package/artifacts/EcdsaInactivity.json +6 -6
- package/artifacts/EcdsaSortitionPool.json +11 -11
- package/artifacts/Fraud.json +6 -6
- package/artifacts/KeepRegistry.json +1 -1
- package/artifacts/KeepStake.json +2 -2
- package/artifacts/KeepToken.json +2 -2
- package/artifacts/KeepTokenStaking.json +6 -6
- package/artifacts/MaintainerProxy.json +12 -12
- package/artifacts/MovingFunds.json +6 -6
- package/artifacts/NuCypherStakingEscrow.json +39 -8
- package/artifacts/NuCypherToken.json +2 -2
- package/artifacts/RandomBeacon.json +3261 -0
- package/artifacts/RandomBeaconGovernance.json +3382 -0
- package/artifacts/Redemption.json +6 -6
- package/artifacts/ReimbursementPool.json +5 -5
- package/artifacts/Relay.json +6 -6
- package/artifacts/T.json +2 -2
- package/artifacts/TBTC.json +11 -11
- package/artifacts/TBTCToken.json +11 -11
- package/artifacts/TBTCVault.json +13 -13
- package/artifacts/TokenStaking.json +1 -1
- package/artifacts/TokenholderGovernor.json +9 -9
- package/artifacts/TokenholderTimelock.json +8 -8
- package/artifacts/VendingMachine.json +13 -13
- package/artifacts/VendingMachineKeep.json +2 -2
- package/artifacts/VendingMachineNuCypher.json +2 -2
- package/artifacts/WalletRegistry.json +989 -890
- package/artifacts/WalletRegistryGovernance.json +12 -12
- package/artifacts/Wallets.json +6 -6
- package/deploy/00_resolve_relay.ts +5 -2
- package/deploy/00_resolve_tbtc_v1_token.ts +5 -2
- package/deploy/05_deploy_bridge.ts +4 -1
- package/export/deploy/00_resolve_relay.js +9 -7
- package/export/deploy/00_resolve_tbtc_v1_token.js +9 -7
- package/export/deploy/05_deploy_bridge.js +4 -1
- package/export/hardhat.config.js +6 -3
- package/export.json +8461 -2126
- package/package.json +4 -3
- package/artifacts/RandomBeaconStub.json +0 -141
|
@@ -1,1843 +1,1942 @@
|
|
|
1
1
|
{
|
|
2
|
-
"address": "
|
|
2
|
+
"address": "0x55cb3b67D9E65F0Cf4eABCAC84564a1bE6E3b06A",
|
|
3
3
|
"abi": [
|
|
4
4
|
{
|
|
5
|
-
"type": "constructor",
|
|
6
|
-
"payable": false,
|
|
7
5
|
"inputs": [
|
|
8
6
|
{
|
|
9
|
-
"
|
|
10
|
-
"name": "_sortitionPool"
|
|
7
|
+
"internalType": "contract SortitionPool",
|
|
8
|
+
"name": "_sortitionPool",
|
|
9
|
+
"type": "address"
|
|
11
10
|
},
|
|
12
11
|
{
|
|
13
|
-
"
|
|
14
|
-
"name": "_staking"
|
|
12
|
+
"internalType": "contract IStaking",
|
|
13
|
+
"name": "_staking",
|
|
14
|
+
"type": "address"
|
|
15
15
|
}
|
|
16
|
-
]
|
|
16
|
+
],
|
|
17
|
+
"stateMutability": "nonpayable",
|
|
18
|
+
"type": "constructor"
|
|
17
19
|
},
|
|
18
20
|
{
|
|
19
|
-
"type": "event",
|
|
20
21
|
"anonymous": false,
|
|
21
|
-
"name": "AuthorizationDecreaseApproved",
|
|
22
22
|
"inputs": [
|
|
23
23
|
{
|
|
24
|
-
"
|
|
24
|
+
"indexed": true,
|
|
25
|
+
"internalType": "address",
|
|
25
26
|
"name": "stakingProvider",
|
|
26
|
-
"
|
|
27
|
+
"type": "address"
|
|
27
28
|
}
|
|
28
|
-
]
|
|
29
|
+
],
|
|
30
|
+
"name": "AuthorizationDecreaseApproved",
|
|
31
|
+
"type": "event"
|
|
29
32
|
},
|
|
30
33
|
{
|
|
31
|
-
"type": "event",
|
|
32
34
|
"anonymous": false,
|
|
33
|
-
"name": "AuthorizationDecreaseRequested",
|
|
34
35
|
"inputs": [
|
|
35
36
|
{
|
|
36
|
-
"
|
|
37
|
+
"indexed": true,
|
|
38
|
+
"internalType": "address",
|
|
37
39
|
"name": "stakingProvider",
|
|
38
|
-
"
|
|
40
|
+
"type": "address"
|
|
39
41
|
},
|
|
40
42
|
{
|
|
41
|
-
"
|
|
43
|
+
"indexed": true,
|
|
44
|
+
"internalType": "address",
|
|
42
45
|
"name": "operator",
|
|
43
|
-
"
|
|
46
|
+
"type": "address"
|
|
44
47
|
},
|
|
45
48
|
{
|
|
46
|
-
"
|
|
49
|
+
"indexed": false,
|
|
50
|
+
"internalType": "uint96",
|
|
47
51
|
"name": "fromAmount",
|
|
48
|
-
"
|
|
52
|
+
"type": "uint96"
|
|
49
53
|
},
|
|
50
54
|
{
|
|
51
|
-
"
|
|
55
|
+
"indexed": false,
|
|
56
|
+
"internalType": "uint96",
|
|
52
57
|
"name": "toAmount",
|
|
53
|
-
"
|
|
58
|
+
"type": "uint96"
|
|
54
59
|
},
|
|
55
60
|
{
|
|
56
|
-
"
|
|
61
|
+
"indexed": false,
|
|
62
|
+
"internalType": "uint64",
|
|
57
63
|
"name": "decreasingAt",
|
|
58
|
-
"
|
|
64
|
+
"type": "uint64"
|
|
59
65
|
}
|
|
60
|
-
]
|
|
66
|
+
],
|
|
67
|
+
"name": "AuthorizationDecreaseRequested",
|
|
68
|
+
"type": "event"
|
|
61
69
|
},
|
|
62
70
|
{
|
|
63
|
-
"type": "event",
|
|
64
71
|
"anonymous": false,
|
|
65
|
-
"name": "AuthorizationIncreased",
|
|
66
72
|
"inputs": [
|
|
67
73
|
{
|
|
68
|
-
"
|
|
74
|
+
"indexed": true,
|
|
75
|
+
"internalType": "address",
|
|
69
76
|
"name": "stakingProvider",
|
|
70
|
-
"
|
|
77
|
+
"type": "address"
|
|
71
78
|
},
|
|
72
79
|
{
|
|
73
|
-
"
|
|
80
|
+
"indexed": true,
|
|
81
|
+
"internalType": "address",
|
|
74
82
|
"name": "operator",
|
|
75
|
-
"
|
|
83
|
+
"type": "address"
|
|
76
84
|
},
|
|
77
85
|
{
|
|
78
|
-
"
|
|
86
|
+
"indexed": false,
|
|
87
|
+
"internalType": "uint96",
|
|
79
88
|
"name": "fromAmount",
|
|
80
|
-
"
|
|
89
|
+
"type": "uint96"
|
|
81
90
|
},
|
|
82
91
|
{
|
|
83
|
-
"
|
|
92
|
+
"indexed": false,
|
|
93
|
+
"internalType": "uint96",
|
|
84
94
|
"name": "toAmount",
|
|
85
|
-
"
|
|
95
|
+
"type": "uint96"
|
|
86
96
|
}
|
|
87
|
-
]
|
|
97
|
+
],
|
|
98
|
+
"name": "AuthorizationIncreased",
|
|
99
|
+
"type": "event"
|
|
88
100
|
},
|
|
89
101
|
{
|
|
90
|
-
"type": "event",
|
|
91
102
|
"anonymous": false,
|
|
92
|
-
"name": "AuthorizationParametersUpdated",
|
|
93
103
|
"inputs": [
|
|
94
104
|
{
|
|
95
|
-
"
|
|
105
|
+
"indexed": false,
|
|
106
|
+
"internalType": "uint96",
|
|
96
107
|
"name": "minimumAuthorization",
|
|
97
|
-
"
|
|
108
|
+
"type": "uint96"
|
|
98
109
|
},
|
|
99
110
|
{
|
|
100
|
-
"
|
|
111
|
+
"indexed": false,
|
|
112
|
+
"internalType": "uint64",
|
|
101
113
|
"name": "authorizationDecreaseDelay",
|
|
102
|
-
"
|
|
114
|
+
"type": "uint64"
|
|
103
115
|
},
|
|
104
116
|
{
|
|
105
|
-
"
|
|
117
|
+
"indexed": false,
|
|
118
|
+
"internalType": "uint64",
|
|
106
119
|
"name": "authorizationDecreaseChangePeriod",
|
|
107
|
-
"
|
|
120
|
+
"type": "uint64"
|
|
108
121
|
}
|
|
109
|
-
]
|
|
122
|
+
],
|
|
123
|
+
"name": "AuthorizationParametersUpdated",
|
|
124
|
+
"type": "event"
|
|
110
125
|
},
|
|
111
126
|
{
|
|
112
|
-
"type": "event",
|
|
113
127
|
"anonymous": false,
|
|
114
|
-
"name": "DkgMaliciousResultSlashed",
|
|
115
128
|
"inputs": [
|
|
116
129
|
{
|
|
117
|
-
"
|
|
130
|
+
"indexed": true,
|
|
131
|
+
"internalType": "bytes32",
|
|
118
132
|
"name": "resultHash",
|
|
119
|
-
"
|
|
133
|
+
"type": "bytes32"
|
|
120
134
|
},
|
|
121
135
|
{
|
|
122
|
-
"
|
|
136
|
+
"indexed": false,
|
|
137
|
+
"internalType": "uint256",
|
|
123
138
|
"name": "slashingAmount",
|
|
124
|
-
"
|
|
139
|
+
"type": "uint256"
|
|
125
140
|
},
|
|
126
141
|
{
|
|
127
|
-
"
|
|
142
|
+
"indexed": false,
|
|
143
|
+
"internalType": "address",
|
|
128
144
|
"name": "maliciousSubmitter",
|
|
129
|
-
"
|
|
145
|
+
"type": "address"
|
|
130
146
|
}
|
|
131
|
-
]
|
|
147
|
+
],
|
|
148
|
+
"name": "DkgMaliciousResultSlashed",
|
|
149
|
+
"type": "event"
|
|
132
150
|
},
|
|
133
151
|
{
|
|
134
|
-
"type": "event",
|
|
135
152
|
"anonymous": false,
|
|
136
|
-
"name": "DkgMaliciousResultSlashingFailed",
|
|
137
153
|
"inputs": [
|
|
138
154
|
{
|
|
139
|
-
"
|
|
155
|
+
"indexed": true,
|
|
156
|
+
"internalType": "bytes32",
|
|
140
157
|
"name": "resultHash",
|
|
141
|
-
"
|
|
158
|
+
"type": "bytes32"
|
|
142
159
|
},
|
|
143
160
|
{
|
|
144
|
-
"
|
|
161
|
+
"indexed": false,
|
|
162
|
+
"internalType": "uint256",
|
|
145
163
|
"name": "slashingAmount",
|
|
146
|
-
"
|
|
164
|
+
"type": "uint256"
|
|
147
165
|
},
|
|
148
166
|
{
|
|
149
|
-
"
|
|
167
|
+
"indexed": false,
|
|
168
|
+
"internalType": "address",
|
|
150
169
|
"name": "maliciousSubmitter",
|
|
151
|
-
"
|
|
170
|
+
"type": "address"
|
|
152
171
|
}
|
|
153
|
-
]
|
|
172
|
+
],
|
|
173
|
+
"name": "DkgMaliciousResultSlashingFailed",
|
|
174
|
+
"type": "event"
|
|
154
175
|
},
|
|
155
176
|
{
|
|
156
|
-
"type": "event",
|
|
157
177
|
"anonymous": false,
|
|
158
|
-
"name": "DkgParametersUpdated",
|
|
159
178
|
"inputs": [
|
|
160
179
|
{
|
|
161
|
-
"
|
|
180
|
+
"indexed": false,
|
|
181
|
+
"internalType": "uint256",
|
|
162
182
|
"name": "seedTimeout",
|
|
163
|
-
"
|
|
183
|
+
"type": "uint256"
|
|
164
184
|
},
|
|
165
185
|
{
|
|
166
|
-
"
|
|
186
|
+
"indexed": false,
|
|
187
|
+
"internalType": "uint256",
|
|
167
188
|
"name": "resultChallengePeriodLength",
|
|
168
|
-
"
|
|
189
|
+
"type": "uint256"
|
|
169
190
|
},
|
|
170
191
|
{
|
|
171
|
-
"
|
|
192
|
+
"indexed": false,
|
|
193
|
+
"internalType": "uint256",
|
|
172
194
|
"name": "resultSubmissionTimeout",
|
|
173
|
-
"
|
|
195
|
+
"type": "uint256"
|
|
174
196
|
},
|
|
175
197
|
{
|
|
176
|
-
"
|
|
198
|
+
"indexed": false,
|
|
199
|
+
"internalType": "uint256",
|
|
177
200
|
"name": "resultSubmitterPrecedencePeriodLength",
|
|
178
|
-
"
|
|
201
|
+
"type": "uint256"
|
|
179
202
|
}
|
|
180
|
-
]
|
|
203
|
+
],
|
|
204
|
+
"name": "DkgParametersUpdated",
|
|
205
|
+
"type": "event"
|
|
181
206
|
},
|
|
182
207
|
{
|
|
183
|
-
"type": "event",
|
|
184
208
|
"anonymous": false,
|
|
185
|
-
"name": "DkgResultApproved",
|
|
186
209
|
"inputs": [
|
|
187
210
|
{
|
|
188
|
-
"
|
|
211
|
+
"indexed": true,
|
|
212
|
+
"internalType": "bytes32",
|
|
189
213
|
"name": "resultHash",
|
|
190
|
-
"
|
|
214
|
+
"type": "bytes32"
|
|
191
215
|
},
|
|
192
216
|
{
|
|
193
|
-
"
|
|
217
|
+
"indexed": true,
|
|
218
|
+
"internalType": "address",
|
|
194
219
|
"name": "approver",
|
|
195
|
-
"
|
|
220
|
+
"type": "address"
|
|
196
221
|
}
|
|
197
|
-
]
|
|
222
|
+
],
|
|
223
|
+
"name": "DkgResultApproved",
|
|
224
|
+
"type": "event"
|
|
198
225
|
},
|
|
199
226
|
{
|
|
200
|
-
"type": "event",
|
|
201
227
|
"anonymous": false,
|
|
202
|
-
"name": "DkgResultChallenged",
|
|
203
228
|
"inputs": [
|
|
204
229
|
{
|
|
205
|
-
"
|
|
230
|
+
"indexed": true,
|
|
231
|
+
"internalType": "bytes32",
|
|
206
232
|
"name": "resultHash",
|
|
207
|
-
"
|
|
233
|
+
"type": "bytes32"
|
|
208
234
|
},
|
|
209
235
|
{
|
|
210
|
-
"
|
|
236
|
+
"indexed": true,
|
|
237
|
+
"internalType": "address",
|
|
211
238
|
"name": "challenger",
|
|
212
|
-
"
|
|
239
|
+
"type": "address"
|
|
213
240
|
},
|
|
214
241
|
{
|
|
215
|
-
"
|
|
242
|
+
"indexed": false,
|
|
243
|
+
"internalType": "string",
|
|
216
244
|
"name": "reason",
|
|
217
|
-
"
|
|
245
|
+
"type": "string"
|
|
218
246
|
}
|
|
219
|
-
]
|
|
247
|
+
],
|
|
248
|
+
"name": "DkgResultChallenged",
|
|
249
|
+
"type": "event"
|
|
220
250
|
},
|
|
221
251
|
{
|
|
222
|
-
"type": "event",
|
|
223
252
|
"anonymous": false,
|
|
224
|
-
"name": "DkgResultSubmitted",
|
|
225
253
|
"inputs": [
|
|
226
254
|
{
|
|
227
|
-
"
|
|
255
|
+
"indexed": true,
|
|
256
|
+
"internalType": "bytes32",
|
|
228
257
|
"name": "resultHash",
|
|
229
|
-
"
|
|
258
|
+
"type": "bytes32"
|
|
230
259
|
},
|
|
231
260
|
{
|
|
232
|
-
"
|
|
261
|
+
"indexed": true,
|
|
262
|
+
"internalType": "uint256",
|
|
233
263
|
"name": "seed",
|
|
234
|
-
"
|
|
264
|
+
"type": "uint256"
|
|
235
265
|
},
|
|
236
266
|
{
|
|
237
|
-
"type": "tuple",
|
|
238
|
-
"name": "result",
|
|
239
|
-
"indexed": false,
|
|
240
267
|
"components": [
|
|
241
268
|
{
|
|
242
|
-
"
|
|
243
|
-
"name": "submitterMemberIndex"
|
|
269
|
+
"internalType": "uint256",
|
|
270
|
+
"name": "submitterMemberIndex",
|
|
271
|
+
"type": "uint256"
|
|
244
272
|
},
|
|
245
273
|
{
|
|
246
|
-
"
|
|
247
|
-
"name": "groupPubKey"
|
|
274
|
+
"internalType": "bytes",
|
|
275
|
+
"name": "groupPubKey",
|
|
276
|
+
"type": "bytes"
|
|
248
277
|
},
|
|
249
278
|
{
|
|
250
|
-
"
|
|
251
|
-
"name": "misbehavedMembersIndices"
|
|
279
|
+
"internalType": "uint8[]",
|
|
280
|
+
"name": "misbehavedMembersIndices",
|
|
281
|
+
"type": "uint8[]"
|
|
252
282
|
},
|
|
253
283
|
{
|
|
254
|
-
"
|
|
255
|
-
"name": "signatures"
|
|
284
|
+
"internalType": "bytes",
|
|
285
|
+
"name": "signatures",
|
|
286
|
+
"type": "bytes"
|
|
256
287
|
},
|
|
257
288
|
{
|
|
258
|
-
"
|
|
259
|
-
"name": "signingMembersIndices"
|
|
289
|
+
"internalType": "uint256[]",
|
|
290
|
+
"name": "signingMembersIndices",
|
|
291
|
+
"type": "uint256[]"
|
|
260
292
|
},
|
|
261
293
|
{
|
|
262
|
-
"
|
|
263
|
-
"name": "members"
|
|
294
|
+
"internalType": "uint32[]",
|
|
295
|
+
"name": "members",
|
|
296
|
+
"type": "uint32[]"
|
|
264
297
|
},
|
|
265
298
|
{
|
|
266
|
-
"
|
|
267
|
-
"name": "membersHash"
|
|
299
|
+
"internalType": "bytes32",
|
|
300
|
+
"name": "membersHash",
|
|
301
|
+
"type": "bytes32"
|
|
268
302
|
}
|
|
269
|
-
]
|
|
303
|
+
],
|
|
304
|
+
"indexed": false,
|
|
305
|
+
"internalType": "struct EcdsaDkg.Result",
|
|
306
|
+
"name": "result",
|
|
307
|
+
"type": "tuple"
|
|
270
308
|
}
|
|
271
|
-
]
|
|
309
|
+
],
|
|
310
|
+
"name": "DkgResultSubmitted",
|
|
311
|
+
"type": "event"
|
|
272
312
|
},
|
|
273
313
|
{
|
|
274
|
-
"type": "event",
|
|
275
314
|
"anonymous": false,
|
|
315
|
+
"inputs": [],
|
|
276
316
|
"name": "DkgSeedTimedOut",
|
|
277
|
-
"
|
|
317
|
+
"type": "event"
|
|
278
318
|
},
|
|
279
319
|
{
|
|
280
|
-
"type": "event",
|
|
281
320
|
"anonymous": false,
|
|
282
|
-
"name": "DkgStarted",
|
|
283
321
|
"inputs": [
|
|
284
322
|
{
|
|
285
|
-
"
|
|
323
|
+
"indexed": true,
|
|
324
|
+
"internalType": "uint256",
|
|
286
325
|
"name": "seed",
|
|
287
|
-
"
|
|
326
|
+
"type": "uint256"
|
|
288
327
|
}
|
|
289
|
-
]
|
|
328
|
+
],
|
|
329
|
+
"name": "DkgStarted",
|
|
330
|
+
"type": "event"
|
|
290
331
|
},
|
|
291
332
|
{
|
|
292
|
-
"type": "event",
|
|
293
333
|
"anonymous": false,
|
|
334
|
+
"inputs": [],
|
|
294
335
|
"name": "DkgStateLocked",
|
|
295
|
-
"
|
|
336
|
+
"type": "event"
|
|
296
337
|
},
|
|
297
338
|
{
|
|
298
|
-
"type": "event",
|
|
299
339
|
"anonymous": false,
|
|
340
|
+
"inputs": [],
|
|
300
341
|
"name": "DkgTimedOut",
|
|
301
|
-
"
|
|
342
|
+
"type": "event"
|
|
302
343
|
},
|
|
303
344
|
{
|
|
304
|
-
"type": "event",
|
|
305
345
|
"anonymous": false,
|
|
306
|
-
"name": "GasParametersUpdated",
|
|
307
346
|
"inputs": [
|
|
308
347
|
{
|
|
309
|
-
"
|
|
348
|
+
"indexed": false,
|
|
349
|
+
"internalType": "uint256",
|
|
310
350
|
"name": "dkgResultSubmissionGas",
|
|
311
|
-
"
|
|
351
|
+
"type": "uint256"
|
|
312
352
|
},
|
|
313
353
|
{
|
|
314
|
-
"
|
|
354
|
+
"indexed": false,
|
|
355
|
+
"internalType": "uint256",
|
|
315
356
|
"name": "dkgResultApprovalGasOffset",
|
|
316
|
-
"
|
|
357
|
+
"type": "uint256"
|
|
317
358
|
},
|
|
318
359
|
{
|
|
319
|
-
"
|
|
360
|
+
"indexed": false,
|
|
361
|
+
"internalType": "uint256",
|
|
320
362
|
"name": "notifyOperatorInactivityGasOffset",
|
|
321
|
-
"
|
|
363
|
+
"type": "uint256"
|
|
322
364
|
},
|
|
323
365
|
{
|
|
324
|
-
"
|
|
366
|
+
"indexed": false,
|
|
367
|
+
"internalType": "uint256",
|
|
325
368
|
"name": "notifySeedTimeoutGasOffset",
|
|
326
|
-
"
|
|
369
|
+
"type": "uint256"
|
|
327
370
|
},
|
|
328
371
|
{
|
|
329
|
-
"
|
|
372
|
+
"indexed": false,
|
|
373
|
+
"internalType": "uint256",
|
|
330
374
|
"name": "notifyDkgTimeoutNegativeGasOffset",
|
|
331
|
-
"
|
|
375
|
+
"type": "uint256"
|
|
332
376
|
}
|
|
333
|
-
]
|
|
377
|
+
],
|
|
378
|
+
"name": "GasParametersUpdated",
|
|
379
|
+
"type": "event"
|
|
334
380
|
},
|
|
335
381
|
{
|
|
336
|
-
"type": "event",
|
|
337
382
|
"anonymous": false,
|
|
338
|
-
"name": "GovernanceTransferred",
|
|
339
383
|
"inputs": [
|
|
340
384
|
{
|
|
341
|
-
"
|
|
385
|
+
"indexed": false,
|
|
386
|
+
"internalType": "address",
|
|
342
387
|
"name": "oldGovernance",
|
|
343
|
-
"
|
|
388
|
+
"type": "address"
|
|
344
389
|
},
|
|
345
390
|
{
|
|
346
|
-
"
|
|
391
|
+
"indexed": false,
|
|
392
|
+
"internalType": "address",
|
|
347
393
|
"name": "newGovernance",
|
|
348
|
-
"
|
|
394
|
+
"type": "address"
|
|
349
395
|
}
|
|
350
|
-
]
|
|
396
|
+
],
|
|
397
|
+
"name": "GovernanceTransferred",
|
|
398
|
+
"type": "event"
|
|
351
399
|
},
|
|
352
400
|
{
|
|
353
|
-
"type": "event",
|
|
354
401
|
"anonymous": false,
|
|
355
|
-
"name": "InactivityClaimed",
|
|
356
402
|
"inputs": [
|
|
357
403
|
{
|
|
358
|
-
"
|
|
404
|
+
"indexed": true,
|
|
405
|
+
"internalType": "bytes32",
|
|
359
406
|
"name": "walletID",
|
|
360
|
-
"
|
|
407
|
+
"type": "bytes32"
|
|
361
408
|
},
|
|
362
409
|
{
|
|
363
|
-
"
|
|
410
|
+
"indexed": false,
|
|
411
|
+
"internalType": "uint256",
|
|
364
412
|
"name": "nonce",
|
|
365
|
-
"
|
|
413
|
+
"type": "uint256"
|
|
366
414
|
},
|
|
367
415
|
{
|
|
368
|
-
"
|
|
416
|
+
"indexed": false,
|
|
417
|
+
"internalType": "address",
|
|
369
418
|
"name": "notifier",
|
|
370
|
-
"
|
|
419
|
+
"type": "address"
|
|
371
420
|
}
|
|
372
|
-
]
|
|
421
|
+
],
|
|
422
|
+
"name": "InactivityClaimed",
|
|
423
|
+
"type": "event"
|
|
373
424
|
},
|
|
374
425
|
{
|
|
375
|
-
"type": "event",
|
|
376
426
|
"anonymous": false,
|
|
377
|
-
"name": "Initialized",
|
|
378
427
|
"inputs": [
|
|
379
428
|
{
|
|
380
|
-
"
|
|
429
|
+
"indexed": false,
|
|
430
|
+
"internalType": "uint8",
|
|
381
431
|
"name": "version",
|
|
382
|
-
"
|
|
432
|
+
"type": "uint8"
|
|
383
433
|
}
|
|
384
|
-
]
|
|
434
|
+
],
|
|
435
|
+
"name": "Initialized",
|
|
436
|
+
"type": "event"
|
|
385
437
|
},
|
|
386
438
|
{
|
|
387
|
-
"type": "event",
|
|
388
439
|
"anonymous": false,
|
|
389
|
-
"name": "InvoluntaryAuthorizationDecreaseFailed",
|
|
390
440
|
"inputs": [
|
|
391
441
|
{
|
|
392
|
-
"
|
|
442
|
+
"indexed": true,
|
|
443
|
+
"internalType": "address",
|
|
393
444
|
"name": "stakingProvider",
|
|
394
|
-
"
|
|
445
|
+
"type": "address"
|
|
395
446
|
},
|
|
396
447
|
{
|
|
397
|
-
"
|
|
448
|
+
"indexed": true,
|
|
449
|
+
"internalType": "address",
|
|
398
450
|
"name": "operator",
|
|
399
|
-
"
|
|
451
|
+
"type": "address"
|
|
400
452
|
},
|
|
401
453
|
{
|
|
402
|
-
"
|
|
454
|
+
"indexed": false,
|
|
455
|
+
"internalType": "uint96",
|
|
403
456
|
"name": "fromAmount",
|
|
404
|
-
"
|
|
457
|
+
"type": "uint96"
|
|
405
458
|
},
|
|
406
459
|
{
|
|
407
|
-
"
|
|
460
|
+
"indexed": false,
|
|
461
|
+
"internalType": "uint96",
|
|
408
462
|
"name": "toAmount",
|
|
409
|
-
"
|
|
463
|
+
"type": "uint96"
|
|
410
464
|
}
|
|
411
|
-
]
|
|
465
|
+
],
|
|
466
|
+
"name": "InvoluntaryAuthorizationDecreaseFailed",
|
|
467
|
+
"type": "event"
|
|
412
468
|
},
|
|
413
469
|
{
|
|
414
|
-
"type": "event",
|
|
415
470
|
"anonymous": false,
|
|
416
|
-
"name": "OperatorJoinedSortitionPool",
|
|
417
471
|
"inputs": [
|
|
418
472
|
{
|
|
419
|
-
"
|
|
473
|
+
"indexed": true,
|
|
474
|
+
"internalType": "address",
|
|
420
475
|
"name": "stakingProvider",
|
|
421
|
-
"
|
|
476
|
+
"type": "address"
|
|
422
477
|
},
|
|
423
478
|
{
|
|
424
|
-
"
|
|
479
|
+
"indexed": true,
|
|
480
|
+
"internalType": "address",
|
|
425
481
|
"name": "operator",
|
|
426
|
-
"
|
|
482
|
+
"type": "address"
|
|
427
483
|
}
|
|
428
|
-
]
|
|
484
|
+
],
|
|
485
|
+
"name": "OperatorJoinedSortitionPool",
|
|
486
|
+
"type": "event"
|
|
429
487
|
},
|
|
430
488
|
{
|
|
431
|
-
"type": "event",
|
|
432
489
|
"anonymous": false,
|
|
433
|
-
"name": "OperatorRegistered",
|
|
434
490
|
"inputs": [
|
|
435
491
|
{
|
|
436
|
-
"
|
|
492
|
+
"indexed": true,
|
|
493
|
+
"internalType": "address",
|
|
437
494
|
"name": "stakingProvider",
|
|
438
|
-
"
|
|
495
|
+
"type": "address"
|
|
439
496
|
},
|
|
440
497
|
{
|
|
441
|
-
"
|
|
498
|
+
"indexed": true,
|
|
499
|
+
"internalType": "address",
|
|
442
500
|
"name": "operator",
|
|
443
|
-
"
|
|
501
|
+
"type": "address"
|
|
444
502
|
}
|
|
445
|
-
]
|
|
503
|
+
],
|
|
504
|
+
"name": "OperatorRegistered",
|
|
505
|
+
"type": "event"
|
|
446
506
|
},
|
|
447
507
|
{
|
|
448
|
-
"type": "event",
|
|
449
508
|
"anonymous": false,
|
|
450
|
-
"name": "OperatorStatusUpdated",
|
|
451
509
|
"inputs": [
|
|
452
510
|
{
|
|
453
|
-
"
|
|
511
|
+
"indexed": true,
|
|
512
|
+
"internalType": "address",
|
|
454
513
|
"name": "stakingProvider",
|
|
455
|
-
"
|
|
514
|
+
"type": "address"
|
|
456
515
|
},
|
|
457
516
|
{
|
|
458
|
-
"
|
|
517
|
+
"indexed": true,
|
|
518
|
+
"internalType": "address",
|
|
459
519
|
"name": "operator",
|
|
460
|
-
"
|
|
520
|
+
"type": "address"
|
|
461
521
|
}
|
|
462
|
-
]
|
|
522
|
+
],
|
|
523
|
+
"name": "OperatorStatusUpdated",
|
|
524
|
+
"type": "event"
|
|
463
525
|
},
|
|
464
526
|
{
|
|
465
|
-
"type": "event",
|
|
466
527
|
"anonymous": false,
|
|
467
|
-
"name": "RandomBeaconUpgraded",
|
|
468
528
|
"inputs": [
|
|
469
529
|
{
|
|
470
|
-
"
|
|
530
|
+
"indexed": false,
|
|
531
|
+
"internalType": "address",
|
|
471
532
|
"name": "randomBeacon",
|
|
472
|
-
"
|
|
533
|
+
"type": "address"
|
|
473
534
|
}
|
|
474
|
-
]
|
|
535
|
+
],
|
|
536
|
+
"name": "RandomBeaconUpgraded",
|
|
537
|
+
"type": "event"
|
|
475
538
|
},
|
|
476
539
|
{
|
|
477
|
-
"type": "event",
|
|
478
540
|
"anonymous": false,
|
|
479
|
-
"name": "ReimbursementPoolUpdated",
|
|
480
541
|
"inputs": [
|
|
481
542
|
{
|
|
482
|
-
"
|
|
543
|
+
"indexed": false,
|
|
544
|
+
"internalType": "address",
|
|
483
545
|
"name": "newReimbursementPool",
|
|
484
|
-
"
|
|
546
|
+
"type": "address"
|
|
485
547
|
}
|
|
486
|
-
]
|
|
548
|
+
],
|
|
549
|
+
"name": "ReimbursementPoolUpdated",
|
|
550
|
+
"type": "event"
|
|
487
551
|
},
|
|
488
552
|
{
|
|
489
|
-
"type": "event",
|
|
490
553
|
"anonymous": false,
|
|
491
|
-
"name": "RewardParametersUpdated",
|
|
492
554
|
"inputs": [
|
|
493
555
|
{
|
|
494
|
-
"
|
|
556
|
+
"indexed": false,
|
|
557
|
+
"internalType": "uint256",
|
|
495
558
|
"name": "maliciousDkgResultNotificationRewardMultiplier",
|
|
496
|
-
"
|
|
559
|
+
"type": "uint256"
|
|
497
560
|
},
|
|
498
561
|
{
|
|
499
|
-
"
|
|
562
|
+
"indexed": false,
|
|
563
|
+
"internalType": "uint256",
|
|
500
564
|
"name": "sortitionPoolRewardsBanDuration",
|
|
501
|
-
"
|
|
565
|
+
"type": "uint256"
|
|
502
566
|
}
|
|
503
|
-
]
|
|
567
|
+
],
|
|
568
|
+
"name": "RewardParametersUpdated",
|
|
569
|
+
"type": "event"
|
|
504
570
|
},
|
|
505
571
|
{
|
|
506
|
-
"type": "event",
|
|
507
572
|
"anonymous": false,
|
|
508
|
-
"name": "RewardsWithdrawn",
|
|
509
573
|
"inputs": [
|
|
510
574
|
{
|
|
511
|
-
"
|
|
575
|
+
"indexed": true,
|
|
576
|
+
"internalType": "address",
|
|
512
577
|
"name": "stakingProvider",
|
|
513
|
-
"
|
|
578
|
+
"type": "address"
|
|
514
579
|
},
|
|
515
580
|
{
|
|
516
|
-
"
|
|
581
|
+
"indexed": false,
|
|
582
|
+
"internalType": "uint96",
|
|
517
583
|
"name": "amount",
|
|
518
|
-
"
|
|
584
|
+
"type": "uint96"
|
|
519
585
|
}
|
|
520
|
-
]
|
|
586
|
+
],
|
|
587
|
+
"name": "RewardsWithdrawn",
|
|
588
|
+
"type": "event"
|
|
521
589
|
},
|
|
522
590
|
{
|
|
523
|
-
"type": "event",
|
|
524
591
|
"anonymous": false,
|
|
525
|
-
"name": "SlashingParametersUpdated",
|
|
526
592
|
"inputs": [
|
|
527
593
|
{
|
|
528
|
-
"
|
|
594
|
+
"indexed": false,
|
|
595
|
+
"internalType": "uint256",
|
|
529
596
|
"name": "maliciousDkgResultSlashingAmount",
|
|
530
|
-
"
|
|
597
|
+
"type": "uint256"
|
|
531
598
|
}
|
|
532
|
-
]
|
|
599
|
+
],
|
|
600
|
+
"name": "SlashingParametersUpdated",
|
|
601
|
+
"type": "event"
|
|
533
602
|
},
|
|
534
603
|
{
|
|
535
|
-
"type": "event",
|
|
536
604
|
"anonymous": false,
|
|
537
|
-
"name": "WalletClosed",
|
|
538
605
|
"inputs": [
|
|
539
606
|
{
|
|
540
|
-
"
|
|
607
|
+
"indexed": true,
|
|
608
|
+
"internalType": "bytes32",
|
|
541
609
|
"name": "walletID",
|
|
542
|
-
"
|
|
610
|
+
"type": "bytes32"
|
|
543
611
|
}
|
|
544
|
-
]
|
|
612
|
+
],
|
|
613
|
+
"name": "WalletClosed",
|
|
614
|
+
"type": "event"
|
|
545
615
|
},
|
|
546
616
|
{
|
|
547
|
-
"type": "event",
|
|
548
617
|
"anonymous": false,
|
|
549
|
-
"name": "WalletCreated",
|
|
550
618
|
"inputs": [
|
|
551
619
|
{
|
|
552
|
-
"
|
|
620
|
+
"indexed": true,
|
|
621
|
+
"internalType": "bytes32",
|
|
553
622
|
"name": "walletID",
|
|
554
|
-
"
|
|
623
|
+
"type": "bytes32"
|
|
555
624
|
},
|
|
556
625
|
{
|
|
557
|
-
"
|
|
626
|
+
"indexed": true,
|
|
627
|
+
"internalType": "bytes32",
|
|
558
628
|
"name": "dkgResultHash",
|
|
559
|
-
"
|
|
629
|
+
"type": "bytes32"
|
|
560
630
|
}
|
|
561
|
-
]
|
|
631
|
+
],
|
|
632
|
+
"name": "WalletCreated",
|
|
633
|
+
"type": "event"
|
|
562
634
|
},
|
|
563
635
|
{
|
|
564
|
-
"type": "event",
|
|
565
636
|
"anonymous": false,
|
|
566
|
-
"name": "WalletOwnerUpdated",
|
|
567
637
|
"inputs": [
|
|
568
638
|
{
|
|
569
|
-
"
|
|
639
|
+
"indexed": false,
|
|
640
|
+
"internalType": "address",
|
|
570
641
|
"name": "walletOwner",
|
|
571
|
-
"
|
|
642
|
+
"type": "address"
|
|
572
643
|
}
|
|
573
|
-
]
|
|
644
|
+
],
|
|
645
|
+
"name": "WalletOwnerUpdated",
|
|
646
|
+
"type": "event"
|
|
574
647
|
},
|
|
575
648
|
{
|
|
576
|
-
"type": "function",
|
|
577
|
-
"name": "__beaconCallback",
|
|
578
|
-
"constant": false,
|
|
579
|
-
"payable": false,
|
|
580
|
-
"gas": 29000000,
|
|
581
649
|
"inputs": [
|
|
582
650
|
{
|
|
583
|
-
"
|
|
584
|
-
"name": "relayEntry"
|
|
651
|
+
"internalType": "uint256",
|
|
652
|
+
"name": "relayEntry",
|
|
653
|
+
"type": "uint256"
|
|
585
654
|
},
|
|
586
655
|
{
|
|
656
|
+
"internalType": "uint256",
|
|
657
|
+
"name": "",
|
|
587
658
|
"type": "uint256"
|
|
588
659
|
}
|
|
589
660
|
],
|
|
590
|
-
"
|
|
661
|
+
"name": "__beaconCallback",
|
|
662
|
+
"outputs": [],
|
|
663
|
+
"stateMutability": "nonpayable",
|
|
664
|
+
"type": "function"
|
|
591
665
|
},
|
|
592
666
|
{
|
|
593
|
-
"type": "function",
|
|
594
|
-
"name": "approveAuthorizationDecrease",
|
|
595
|
-
"constant": false,
|
|
596
|
-
"payable": false,
|
|
597
|
-
"gas": 29000000,
|
|
598
667
|
"inputs": [
|
|
599
668
|
{
|
|
600
|
-
"
|
|
601
|
-
"name": "stakingProvider"
|
|
669
|
+
"internalType": "address",
|
|
670
|
+
"name": "stakingProvider",
|
|
671
|
+
"type": "address"
|
|
602
672
|
}
|
|
603
673
|
],
|
|
604
|
-
"
|
|
674
|
+
"name": "approveAuthorizationDecrease",
|
|
675
|
+
"outputs": [],
|
|
676
|
+
"stateMutability": "nonpayable",
|
|
677
|
+
"type": "function"
|
|
605
678
|
},
|
|
606
679
|
{
|
|
607
|
-
"type": "function",
|
|
608
|
-
"name": "approveDkgResult",
|
|
609
|
-
"constant": false,
|
|
610
|
-
"payable": false,
|
|
611
|
-
"gas": 29000000,
|
|
612
680
|
"inputs": [
|
|
613
681
|
{
|
|
614
|
-
"type": "tuple",
|
|
615
|
-
"name": "dkgResult",
|
|
616
682
|
"components": [
|
|
617
683
|
{
|
|
618
|
-
"
|
|
619
|
-
"name": "submitterMemberIndex"
|
|
684
|
+
"internalType": "uint256",
|
|
685
|
+
"name": "submitterMemberIndex",
|
|
686
|
+
"type": "uint256"
|
|
620
687
|
},
|
|
621
688
|
{
|
|
622
|
-
"
|
|
623
|
-
"name": "groupPubKey"
|
|
689
|
+
"internalType": "bytes",
|
|
690
|
+
"name": "groupPubKey",
|
|
691
|
+
"type": "bytes"
|
|
624
692
|
},
|
|
625
693
|
{
|
|
626
|
-
"
|
|
627
|
-
"name": "misbehavedMembersIndices"
|
|
694
|
+
"internalType": "uint8[]",
|
|
695
|
+
"name": "misbehavedMembersIndices",
|
|
696
|
+
"type": "uint8[]"
|
|
628
697
|
},
|
|
629
698
|
{
|
|
630
|
-
"
|
|
631
|
-
"name": "signatures"
|
|
699
|
+
"internalType": "bytes",
|
|
700
|
+
"name": "signatures",
|
|
701
|
+
"type": "bytes"
|
|
632
702
|
},
|
|
633
703
|
{
|
|
634
|
-
"
|
|
635
|
-
"name": "signingMembersIndices"
|
|
704
|
+
"internalType": "uint256[]",
|
|
705
|
+
"name": "signingMembersIndices",
|
|
706
|
+
"type": "uint256[]"
|
|
636
707
|
},
|
|
637
708
|
{
|
|
638
|
-
"
|
|
639
|
-
"name": "members"
|
|
709
|
+
"internalType": "uint32[]",
|
|
710
|
+
"name": "members",
|
|
711
|
+
"type": "uint32[]"
|
|
640
712
|
},
|
|
641
713
|
{
|
|
642
|
-
"
|
|
643
|
-
"name": "membersHash"
|
|
714
|
+
"internalType": "bytes32",
|
|
715
|
+
"name": "membersHash",
|
|
716
|
+
"type": "bytes32"
|
|
644
717
|
}
|
|
645
|
-
]
|
|
718
|
+
],
|
|
719
|
+
"internalType": "struct EcdsaDkg.Result",
|
|
720
|
+
"name": "dkgResult",
|
|
721
|
+
"type": "tuple"
|
|
646
722
|
}
|
|
647
723
|
],
|
|
648
|
-
"
|
|
724
|
+
"name": "approveDkgResult",
|
|
725
|
+
"outputs": [],
|
|
726
|
+
"stateMutability": "nonpayable",
|
|
727
|
+
"type": "function"
|
|
649
728
|
},
|
|
650
729
|
{
|
|
651
|
-
"type": "function",
|
|
652
|
-
"name": "authorizationDecreaseRequested",
|
|
653
|
-
"constant": false,
|
|
654
|
-
"payable": false,
|
|
655
|
-
"gas": 29000000,
|
|
656
730
|
"inputs": [
|
|
657
731
|
{
|
|
658
|
-
"
|
|
659
|
-
"name": "stakingProvider"
|
|
732
|
+
"internalType": "address",
|
|
733
|
+
"name": "stakingProvider",
|
|
734
|
+
"type": "address"
|
|
660
735
|
},
|
|
661
736
|
{
|
|
662
|
-
"
|
|
663
|
-
"name": "fromAmount"
|
|
737
|
+
"internalType": "uint96",
|
|
738
|
+
"name": "fromAmount",
|
|
739
|
+
"type": "uint96"
|
|
664
740
|
},
|
|
665
741
|
{
|
|
666
|
-
"
|
|
667
|
-
"name": "toAmount"
|
|
742
|
+
"internalType": "uint96",
|
|
743
|
+
"name": "toAmount",
|
|
744
|
+
"type": "uint96"
|
|
668
745
|
}
|
|
669
746
|
],
|
|
670
|
-
"
|
|
747
|
+
"name": "authorizationDecreaseRequested",
|
|
748
|
+
"outputs": [],
|
|
749
|
+
"stateMutability": "nonpayable",
|
|
750
|
+
"type": "function"
|
|
671
751
|
},
|
|
672
752
|
{
|
|
673
|
-
"type": "function",
|
|
674
|
-
"name": "authorizationIncreased",
|
|
675
|
-
"constant": false,
|
|
676
|
-
"payable": false,
|
|
677
|
-
"gas": 29000000,
|
|
678
753
|
"inputs": [
|
|
679
754
|
{
|
|
680
|
-
"
|
|
681
|
-
"name": "stakingProvider"
|
|
755
|
+
"internalType": "address",
|
|
756
|
+
"name": "stakingProvider",
|
|
757
|
+
"type": "address"
|
|
682
758
|
},
|
|
683
759
|
{
|
|
684
|
-
"
|
|
685
|
-
"name": "fromAmount"
|
|
760
|
+
"internalType": "uint96",
|
|
761
|
+
"name": "fromAmount",
|
|
762
|
+
"type": "uint96"
|
|
686
763
|
},
|
|
687
764
|
{
|
|
688
|
-
"
|
|
689
|
-
"name": "toAmount"
|
|
765
|
+
"internalType": "uint96",
|
|
766
|
+
"name": "toAmount",
|
|
767
|
+
"type": "uint96"
|
|
690
768
|
}
|
|
691
769
|
],
|
|
692
|
-
"
|
|
770
|
+
"name": "authorizationIncreased",
|
|
771
|
+
"outputs": [],
|
|
772
|
+
"stateMutability": "nonpayable",
|
|
773
|
+
"type": "function"
|
|
693
774
|
},
|
|
694
775
|
{
|
|
695
|
-
"type": "function",
|
|
696
|
-
"name": "authorizationParameters",
|
|
697
|
-
"constant": true,
|
|
698
|
-
"stateMutability": "view",
|
|
699
|
-
"payable": false,
|
|
700
|
-
"gas": 29000000,
|
|
701
776
|
"inputs": [],
|
|
777
|
+
"name": "authorizationParameters",
|
|
702
778
|
"outputs": [
|
|
703
779
|
{
|
|
704
|
-
"
|
|
705
|
-
"name": "minimumAuthorization"
|
|
780
|
+
"internalType": "uint96",
|
|
781
|
+
"name": "minimumAuthorization",
|
|
782
|
+
"type": "uint96"
|
|
706
783
|
},
|
|
707
784
|
{
|
|
708
|
-
"
|
|
709
|
-
"name": "authorizationDecreaseDelay"
|
|
785
|
+
"internalType": "uint64",
|
|
786
|
+
"name": "authorizationDecreaseDelay",
|
|
787
|
+
"type": "uint64"
|
|
710
788
|
},
|
|
711
789
|
{
|
|
712
|
-
"
|
|
713
|
-
"name": "authorizationDecreaseChangePeriod"
|
|
790
|
+
"internalType": "uint64",
|
|
791
|
+
"name": "authorizationDecreaseChangePeriod",
|
|
792
|
+
"type": "uint64"
|
|
714
793
|
}
|
|
715
|
-
]
|
|
794
|
+
],
|
|
795
|
+
"stateMutability": "view",
|
|
796
|
+
"type": "function"
|
|
716
797
|
},
|
|
717
798
|
{
|
|
718
|
-
"type": "function",
|
|
719
|
-
"name": "availableRewards",
|
|
720
|
-
"constant": true,
|
|
721
|
-
"stateMutability": "view",
|
|
722
|
-
"payable": false,
|
|
723
|
-
"gas": 29000000,
|
|
724
799
|
"inputs": [
|
|
725
800
|
{
|
|
726
|
-
"
|
|
727
|
-
"name": "stakingProvider"
|
|
801
|
+
"internalType": "address",
|
|
802
|
+
"name": "stakingProvider",
|
|
803
|
+
"type": "address"
|
|
728
804
|
}
|
|
729
805
|
],
|
|
806
|
+
"name": "availableRewards",
|
|
730
807
|
"outputs": [
|
|
731
808
|
{
|
|
809
|
+
"internalType": "uint96",
|
|
810
|
+
"name": "",
|
|
732
811
|
"type": "uint96"
|
|
733
812
|
}
|
|
734
|
-
]
|
|
813
|
+
],
|
|
814
|
+
"stateMutability": "view",
|
|
815
|
+
"type": "function"
|
|
735
816
|
},
|
|
736
817
|
{
|
|
737
|
-
"type": "function",
|
|
738
|
-
"name": "challengeDkgResult",
|
|
739
|
-
"constant": false,
|
|
740
|
-
"payable": false,
|
|
741
|
-
"gas": 29000000,
|
|
742
818
|
"inputs": [
|
|
743
819
|
{
|
|
744
|
-
"type": "tuple",
|
|
745
|
-
"name": "dkgResult",
|
|
746
820
|
"components": [
|
|
747
821
|
{
|
|
748
|
-
"
|
|
749
|
-
"name": "submitterMemberIndex"
|
|
822
|
+
"internalType": "uint256",
|
|
823
|
+
"name": "submitterMemberIndex",
|
|
824
|
+
"type": "uint256"
|
|
750
825
|
},
|
|
751
826
|
{
|
|
752
|
-
"
|
|
753
|
-
"name": "groupPubKey"
|
|
827
|
+
"internalType": "bytes",
|
|
828
|
+
"name": "groupPubKey",
|
|
829
|
+
"type": "bytes"
|
|
754
830
|
},
|
|
755
831
|
{
|
|
756
|
-
"
|
|
757
|
-
"name": "misbehavedMembersIndices"
|
|
832
|
+
"internalType": "uint8[]",
|
|
833
|
+
"name": "misbehavedMembersIndices",
|
|
834
|
+
"type": "uint8[]"
|
|
758
835
|
},
|
|
759
836
|
{
|
|
760
|
-
"
|
|
761
|
-
"name": "signatures"
|
|
837
|
+
"internalType": "bytes",
|
|
838
|
+
"name": "signatures",
|
|
839
|
+
"type": "bytes"
|
|
762
840
|
},
|
|
763
841
|
{
|
|
764
|
-
"
|
|
765
|
-
"name": "signingMembersIndices"
|
|
842
|
+
"internalType": "uint256[]",
|
|
843
|
+
"name": "signingMembersIndices",
|
|
844
|
+
"type": "uint256[]"
|
|
766
845
|
},
|
|
767
846
|
{
|
|
768
|
-
"
|
|
769
|
-
"name": "members"
|
|
847
|
+
"internalType": "uint32[]",
|
|
848
|
+
"name": "members",
|
|
849
|
+
"type": "uint32[]"
|
|
770
850
|
},
|
|
771
851
|
{
|
|
772
|
-
"
|
|
773
|
-
"name": "membersHash"
|
|
852
|
+
"internalType": "bytes32",
|
|
853
|
+
"name": "membersHash",
|
|
854
|
+
"type": "bytes32"
|
|
774
855
|
}
|
|
775
|
-
]
|
|
856
|
+
],
|
|
857
|
+
"internalType": "struct EcdsaDkg.Result",
|
|
858
|
+
"name": "dkgResult",
|
|
859
|
+
"type": "tuple"
|
|
776
860
|
}
|
|
777
861
|
],
|
|
778
|
-
"
|
|
862
|
+
"name": "challengeDkgResult",
|
|
863
|
+
"outputs": [],
|
|
864
|
+
"stateMutability": "nonpayable",
|
|
865
|
+
"type": "function"
|
|
779
866
|
},
|
|
780
867
|
{
|
|
781
|
-
"type": "function",
|
|
782
|
-
"name": "closeWallet",
|
|
783
|
-
"constant": false,
|
|
784
|
-
"payable": false,
|
|
785
|
-
"gas": 29000000,
|
|
786
868
|
"inputs": [
|
|
787
869
|
{
|
|
788
|
-
"
|
|
789
|
-
"name": "walletID"
|
|
870
|
+
"internalType": "bytes32",
|
|
871
|
+
"name": "walletID",
|
|
872
|
+
"type": "bytes32"
|
|
790
873
|
}
|
|
791
874
|
],
|
|
792
|
-
"
|
|
875
|
+
"name": "closeWallet",
|
|
876
|
+
"outputs": [],
|
|
877
|
+
"stateMutability": "nonpayable",
|
|
878
|
+
"type": "function"
|
|
793
879
|
},
|
|
794
880
|
{
|
|
795
|
-
"type": "function",
|
|
796
|
-
"name": "dkgParameters",
|
|
797
|
-
"constant": true,
|
|
798
|
-
"stateMutability": "view",
|
|
799
|
-
"payable": false,
|
|
800
|
-
"gas": 29000000,
|
|
801
881
|
"inputs": [],
|
|
882
|
+
"name": "dkgParameters",
|
|
802
883
|
"outputs": [
|
|
803
884
|
{
|
|
804
|
-
"type": "tuple",
|
|
805
885
|
"components": [
|
|
806
886
|
{
|
|
807
|
-
"
|
|
808
|
-
"name": "seedTimeout"
|
|
887
|
+
"internalType": "uint256",
|
|
888
|
+
"name": "seedTimeout",
|
|
889
|
+
"type": "uint256"
|
|
809
890
|
},
|
|
810
891
|
{
|
|
811
|
-
"
|
|
812
|
-
"name": "resultChallengePeriodLength"
|
|
892
|
+
"internalType": "uint256",
|
|
893
|
+
"name": "resultChallengePeriodLength",
|
|
894
|
+
"type": "uint256"
|
|
813
895
|
},
|
|
814
896
|
{
|
|
815
|
-
"
|
|
816
|
-
"name": "resultSubmissionTimeout"
|
|
897
|
+
"internalType": "uint256",
|
|
898
|
+
"name": "resultSubmissionTimeout",
|
|
899
|
+
"type": "uint256"
|
|
817
900
|
},
|
|
818
901
|
{
|
|
819
|
-
"
|
|
820
|
-
"name": "submitterPrecedencePeriodLength"
|
|
902
|
+
"internalType": "uint256",
|
|
903
|
+
"name": "submitterPrecedencePeriodLength",
|
|
904
|
+
"type": "uint256"
|
|
821
905
|
}
|
|
822
|
-
]
|
|
906
|
+
],
|
|
907
|
+
"internalType": "struct EcdsaDkg.Parameters",
|
|
908
|
+
"name": "",
|
|
909
|
+
"type": "tuple"
|
|
823
910
|
}
|
|
824
|
-
]
|
|
911
|
+
],
|
|
912
|
+
"stateMutability": "view",
|
|
913
|
+
"type": "function"
|
|
825
914
|
},
|
|
826
915
|
{
|
|
827
|
-
"type": "function",
|
|
828
|
-
"name": "eligibleStake",
|
|
829
|
-
"constant": true,
|
|
830
|
-
"stateMutability": "view",
|
|
831
|
-
"payable": false,
|
|
832
|
-
"gas": 29000000,
|
|
833
916
|
"inputs": [
|
|
834
917
|
{
|
|
835
|
-
"
|
|
836
|
-
"name": "stakingProvider"
|
|
918
|
+
"internalType": "address",
|
|
919
|
+
"name": "stakingProvider",
|
|
920
|
+
"type": "address"
|
|
837
921
|
}
|
|
838
922
|
],
|
|
923
|
+
"name": "eligibleStake",
|
|
839
924
|
"outputs": [
|
|
840
925
|
{
|
|
926
|
+
"internalType": "uint96",
|
|
927
|
+
"name": "",
|
|
841
928
|
"type": "uint96"
|
|
842
929
|
}
|
|
843
|
-
]
|
|
930
|
+
],
|
|
931
|
+
"stateMutability": "view",
|
|
932
|
+
"type": "function"
|
|
844
933
|
},
|
|
845
934
|
{
|
|
846
|
-
"
|
|
935
|
+
"inputs": [],
|
|
847
936
|
"name": "gasParameters",
|
|
848
|
-
"constant": true,
|
|
849
|
-
"stateMutability": "view",
|
|
850
|
-
"payable": false,
|
|
851
|
-
"gas": 29000000,
|
|
852
|
-
"inputs": [],
|
|
853
937
|
"outputs": [
|
|
854
938
|
{
|
|
855
|
-
"
|
|
856
|
-
"name": "dkgResultSubmissionGas"
|
|
939
|
+
"internalType": "uint256",
|
|
940
|
+
"name": "dkgResultSubmissionGas",
|
|
941
|
+
"type": "uint256"
|
|
857
942
|
},
|
|
858
943
|
{
|
|
859
|
-
"
|
|
860
|
-
"name": "dkgResultApprovalGasOffset"
|
|
944
|
+
"internalType": "uint256",
|
|
945
|
+
"name": "dkgResultApprovalGasOffset",
|
|
946
|
+
"type": "uint256"
|
|
861
947
|
},
|
|
862
948
|
{
|
|
863
|
-
"
|
|
864
|
-
"name": "notifyOperatorInactivityGasOffset"
|
|
949
|
+
"internalType": "uint256",
|
|
950
|
+
"name": "notifyOperatorInactivityGasOffset",
|
|
951
|
+
"type": "uint256"
|
|
865
952
|
},
|
|
866
953
|
{
|
|
867
|
-
"
|
|
868
|
-
"name": "notifySeedTimeoutGasOffset"
|
|
954
|
+
"internalType": "uint256",
|
|
955
|
+
"name": "notifySeedTimeoutGasOffset",
|
|
956
|
+
"type": "uint256"
|
|
869
957
|
},
|
|
870
958
|
{
|
|
871
|
-
"
|
|
872
|
-
"name": "notifyDkgTimeoutNegativeGasOffset"
|
|
959
|
+
"internalType": "uint256",
|
|
960
|
+
"name": "notifyDkgTimeoutNegativeGasOffset",
|
|
961
|
+
"type": "uint256"
|
|
873
962
|
}
|
|
874
|
-
]
|
|
963
|
+
],
|
|
964
|
+
"stateMutability": "view",
|
|
965
|
+
"type": "function"
|
|
875
966
|
},
|
|
876
967
|
{
|
|
877
|
-
"type": "function",
|
|
878
|
-
"name": "getWallet",
|
|
879
|
-
"constant": true,
|
|
880
|
-
"stateMutability": "view",
|
|
881
|
-
"payable": false,
|
|
882
|
-
"gas": 29000000,
|
|
883
968
|
"inputs": [
|
|
884
969
|
{
|
|
885
|
-
"
|
|
886
|
-
"name": "walletID"
|
|
970
|
+
"internalType": "bytes32",
|
|
971
|
+
"name": "walletID",
|
|
972
|
+
"type": "bytes32"
|
|
887
973
|
}
|
|
888
974
|
],
|
|
975
|
+
"name": "getWallet",
|
|
889
976
|
"outputs": [
|
|
890
977
|
{
|
|
891
|
-
"type": "tuple",
|
|
892
978
|
"components": [
|
|
893
979
|
{
|
|
894
|
-
"
|
|
895
|
-
"name": "membersIdsHash"
|
|
980
|
+
"internalType": "bytes32",
|
|
981
|
+
"name": "membersIdsHash",
|
|
982
|
+
"type": "bytes32"
|
|
896
983
|
},
|
|
897
984
|
{
|
|
898
|
-
"
|
|
899
|
-
"name": "publicKeyX"
|
|
985
|
+
"internalType": "bytes32",
|
|
986
|
+
"name": "publicKeyX",
|
|
987
|
+
"type": "bytes32"
|
|
900
988
|
},
|
|
901
989
|
{
|
|
902
|
-
"
|
|
903
|
-
"name": "publicKeyY"
|
|
990
|
+
"internalType": "bytes32",
|
|
991
|
+
"name": "publicKeyY",
|
|
992
|
+
"type": "bytes32"
|
|
904
993
|
}
|
|
905
|
-
]
|
|
994
|
+
],
|
|
995
|
+
"internalType": "struct Wallets.Wallet",
|
|
996
|
+
"name": "",
|
|
997
|
+
"type": "tuple"
|
|
906
998
|
}
|
|
907
|
-
]
|
|
999
|
+
],
|
|
1000
|
+
"stateMutability": "view",
|
|
1001
|
+
"type": "function"
|
|
908
1002
|
},
|
|
909
1003
|
{
|
|
910
|
-
"type": "function",
|
|
911
|
-
"name": "getWalletCreationState",
|
|
912
|
-
"constant": true,
|
|
913
|
-
"stateMutability": "view",
|
|
914
|
-
"payable": false,
|
|
915
|
-
"gas": 29000000,
|
|
916
1004
|
"inputs": [],
|
|
1005
|
+
"name": "getWalletCreationState",
|
|
917
1006
|
"outputs": [
|
|
918
1007
|
{
|
|
1008
|
+
"internalType": "enum EcdsaDkg.State",
|
|
1009
|
+
"name": "",
|
|
919
1010
|
"type": "uint8"
|
|
920
1011
|
}
|
|
921
|
-
]
|
|
1012
|
+
],
|
|
1013
|
+
"stateMutability": "view",
|
|
1014
|
+
"type": "function"
|
|
922
1015
|
},
|
|
923
1016
|
{
|
|
924
|
-
"type": "function",
|
|
925
|
-
"name": "getWalletPublicKey",
|
|
926
|
-
"constant": true,
|
|
927
|
-
"stateMutability": "view",
|
|
928
|
-
"payable": false,
|
|
929
|
-
"gas": 29000000,
|
|
930
1017
|
"inputs": [
|
|
931
1018
|
{
|
|
932
|
-
"
|
|
933
|
-
"name": "walletID"
|
|
1019
|
+
"internalType": "bytes32",
|
|
1020
|
+
"name": "walletID",
|
|
1021
|
+
"type": "bytes32"
|
|
934
1022
|
}
|
|
935
1023
|
],
|
|
1024
|
+
"name": "getWalletPublicKey",
|
|
936
1025
|
"outputs": [
|
|
937
1026
|
{
|
|
1027
|
+
"internalType": "bytes",
|
|
1028
|
+
"name": "",
|
|
938
1029
|
"type": "bytes"
|
|
939
1030
|
}
|
|
940
|
-
]
|
|
1031
|
+
],
|
|
1032
|
+
"stateMutability": "view",
|
|
1033
|
+
"type": "function"
|
|
941
1034
|
},
|
|
942
1035
|
{
|
|
943
|
-
"type": "function",
|
|
944
|
-
"name": "governance",
|
|
945
|
-
"constant": true,
|
|
946
|
-
"stateMutability": "view",
|
|
947
|
-
"payable": false,
|
|
948
|
-
"gas": 29000000,
|
|
949
1036
|
"inputs": [],
|
|
1037
|
+
"name": "governance",
|
|
950
1038
|
"outputs": [
|
|
951
1039
|
{
|
|
1040
|
+
"internalType": "address",
|
|
1041
|
+
"name": "",
|
|
952
1042
|
"type": "address"
|
|
953
1043
|
}
|
|
954
|
-
]
|
|
1044
|
+
],
|
|
1045
|
+
"stateMutability": "view",
|
|
1046
|
+
"type": "function"
|
|
955
1047
|
},
|
|
956
1048
|
{
|
|
957
|
-
"type": "function",
|
|
958
|
-
"name": "hasDkgTimedOut",
|
|
959
|
-
"constant": true,
|
|
960
|
-
"stateMutability": "view",
|
|
961
|
-
"payable": false,
|
|
962
|
-
"gas": 29000000,
|
|
963
1049
|
"inputs": [],
|
|
1050
|
+
"name": "hasDkgTimedOut",
|
|
964
1051
|
"outputs": [
|
|
965
1052
|
{
|
|
1053
|
+
"internalType": "bool",
|
|
1054
|
+
"name": "",
|
|
966
1055
|
"type": "bool"
|
|
967
1056
|
}
|
|
968
|
-
]
|
|
1057
|
+
],
|
|
1058
|
+
"stateMutability": "view",
|
|
1059
|
+
"type": "function"
|
|
969
1060
|
},
|
|
970
1061
|
{
|
|
971
|
-
"type": "function",
|
|
972
|
-
"name": "hasSeedTimedOut",
|
|
973
|
-
"constant": true,
|
|
974
|
-
"stateMutability": "view",
|
|
975
|
-
"payable": false,
|
|
976
|
-
"gas": 29000000,
|
|
977
1062
|
"inputs": [],
|
|
1063
|
+
"name": "hasSeedTimedOut",
|
|
978
1064
|
"outputs": [
|
|
979
1065
|
{
|
|
1066
|
+
"internalType": "bool",
|
|
1067
|
+
"name": "",
|
|
980
1068
|
"type": "bool"
|
|
981
1069
|
}
|
|
982
|
-
]
|
|
1070
|
+
],
|
|
1071
|
+
"stateMutability": "view",
|
|
1072
|
+
"type": "function"
|
|
983
1073
|
},
|
|
984
1074
|
{
|
|
985
|
-
"type": "function",
|
|
986
|
-
"name": "inactivityClaimNonce",
|
|
987
|
-
"constant": true,
|
|
988
|
-
"stateMutability": "view",
|
|
989
|
-
"payable": false,
|
|
990
|
-
"gas": 29000000,
|
|
991
1075
|
"inputs": [
|
|
992
1076
|
{
|
|
1077
|
+
"internalType": "bytes32",
|
|
1078
|
+
"name": "",
|
|
993
1079
|
"type": "bytes32"
|
|
994
1080
|
}
|
|
995
1081
|
],
|
|
1082
|
+
"name": "inactivityClaimNonce",
|
|
996
1083
|
"outputs": [
|
|
997
1084
|
{
|
|
1085
|
+
"internalType": "uint256",
|
|
1086
|
+
"name": "",
|
|
998
1087
|
"type": "uint256"
|
|
999
1088
|
}
|
|
1000
|
-
]
|
|
1089
|
+
],
|
|
1090
|
+
"stateMutability": "view",
|
|
1091
|
+
"type": "function"
|
|
1001
1092
|
},
|
|
1002
1093
|
{
|
|
1003
|
-
"type": "function",
|
|
1004
|
-
"name": "initialize",
|
|
1005
|
-
"constant": false,
|
|
1006
|
-
"payable": false,
|
|
1007
|
-
"gas": 29000000,
|
|
1008
1094
|
"inputs": [
|
|
1009
1095
|
{
|
|
1010
|
-
"
|
|
1011
|
-
"name": "_ecdsaDkgValidator"
|
|
1096
|
+
"internalType": "contract EcdsaDkgValidator",
|
|
1097
|
+
"name": "_ecdsaDkgValidator",
|
|
1098
|
+
"type": "address"
|
|
1012
1099
|
},
|
|
1013
1100
|
{
|
|
1014
|
-
"
|
|
1015
|
-
"name": "_randomBeacon"
|
|
1101
|
+
"internalType": "contract IRandomBeacon",
|
|
1102
|
+
"name": "_randomBeacon",
|
|
1103
|
+
"type": "address"
|
|
1016
1104
|
},
|
|
1017
1105
|
{
|
|
1018
|
-
"
|
|
1019
|
-
"name": "_reimbursementPool"
|
|
1106
|
+
"internalType": "contract ReimbursementPool",
|
|
1107
|
+
"name": "_reimbursementPool",
|
|
1108
|
+
"type": "address"
|
|
1020
1109
|
}
|
|
1021
1110
|
],
|
|
1022
|
-
"
|
|
1111
|
+
"name": "initialize",
|
|
1112
|
+
"outputs": [],
|
|
1113
|
+
"stateMutability": "nonpayable",
|
|
1114
|
+
"type": "function"
|
|
1023
1115
|
},
|
|
1024
1116
|
{
|
|
1025
|
-
"type": "function",
|
|
1026
|
-
"name": "involuntaryAuthorizationDecrease",
|
|
1027
|
-
"constant": false,
|
|
1028
|
-
"payable": false,
|
|
1029
|
-
"gas": 29000000,
|
|
1030
1117
|
"inputs": [
|
|
1031
1118
|
{
|
|
1032
|
-
"
|
|
1033
|
-
"name": "stakingProvider"
|
|
1119
|
+
"internalType": "address",
|
|
1120
|
+
"name": "stakingProvider",
|
|
1121
|
+
"type": "address"
|
|
1034
1122
|
},
|
|
1035
1123
|
{
|
|
1036
|
-
"
|
|
1037
|
-
"name": "fromAmount"
|
|
1124
|
+
"internalType": "uint96",
|
|
1125
|
+
"name": "fromAmount",
|
|
1126
|
+
"type": "uint96"
|
|
1038
1127
|
},
|
|
1039
1128
|
{
|
|
1040
|
-
"
|
|
1041
|
-
"name": "toAmount"
|
|
1129
|
+
"internalType": "uint96",
|
|
1130
|
+
"name": "toAmount",
|
|
1131
|
+
"type": "uint96"
|
|
1042
1132
|
}
|
|
1043
1133
|
],
|
|
1044
|
-
"
|
|
1134
|
+
"name": "involuntaryAuthorizationDecrease",
|
|
1135
|
+
"outputs": [],
|
|
1136
|
+
"stateMutability": "nonpayable",
|
|
1137
|
+
"type": "function"
|
|
1045
1138
|
},
|
|
1046
1139
|
{
|
|
1047
|
-
"type": "function",
|
|
1048
|
-
"name": "isDkgResultValid",
|
|
1049
|
-
"constant": true,
|
|
1050
|
-
"stateMutability": "view",
|
|
1051
|
-
"payable": false,
|
|
1052
|
-
"gas": 29000000,
|
|
1053
1140
|
"inputs": [
|
|
1054
1141
|
{
|
|
1055
|
-
"type": "tuple",
|
|
1056
|
-
"name": "result",
|
|
1057
1142
|
"components": [
|
|
1058
1143
|
{
|
|
1059
|
-
"
|
|
1060
|
-
"name": "submitterMemberIndex"
|
|
1144
|
+
"internalType": "uint256",
|
|
1145
|
+
"name": "submitterMemberIndex",
|
|
1146
|
+
"type": "uint256"
|
|
1061
1147
|
},
|
|
1062
1148
|
{
|
|
1063
|
-
"
|
|
1064
|
-
"name": "groupPubKey"
|
|
1149
|
+
"internalType": "bytes",
|
|
1150
|
+
"name": "groupPubKey",
|
|
1151
|
+
"type": "bytes"
|
|
1065
1152
|
},
|
|
1066
1153
|
{
|
|
1067
|
-
"
|
|
1068
|
-
"name": "misbehavedMembersIndices"
|
|
1154
|
+
"internalType": "uint8[]",
|
|
1155
|
+
"name": "misbehavedMembersIndices",
|
|
1156
|
+
"type": "uint8[]"
|
|
1069
1157
|
},
|
|
1070
1158
|
{
|
|
1071
|
-
"
|
|
1072
|
-
"name": "signatures"
|
|
1159
|
+
"internalType": "bytes",
|
|
1160
|
+
"name": "signatures",
|
|
1161
|
+
"type": "bytes"
|
|
1073
1162
|
},
|
|
1074
1163
|
{
|
|
1075
|
-
"
|
|
1076
|
-
"name": "signingMembersIndices"
|
|
1164
|
+
"internalType": "uint256[]",
|
|
1165
|
+
"name": "signingMembersIndices",
|
|
1166
|
+
"type": "uint256[]"
|
|
1077
1167
|
},
|
|
1078
1168
|
{
|
|
1079
|
-
"
|
|
1080
|
-
"name": "members"
|
|
1169
|
+
"internalType": "uint32[]",
|
|
1170
|
+
"name": "members",
|
|
1171
|
+
"type": "uint32[]"
|
|
1081
1172
|
},
|
|
1082
1173
|
{
|
|
1083
|
-
"
|
|
1084
|
-
"name": "membersHash"
|
|
1174
|
+
"internalType": "bytes32",
|
|
1175
|
+
"name": "membersHash",
|
|
1176
|
+
"type": "bytes32"
|
|
1085
1177
|
}
|
|
1086
|
-
]
|
|
1178
|
+
],
|
|
1179
|
+
"internalType": "struct EcdsaDkg.Result",
|
|
1180
|
+
"name": "result",
|
|
1181
|
+
"type": "tuple"
|
|
1087
1182
|
}
|
|
1088
1183
|
],
|
|
1184
|
+
"name": "isDkgResultValid",
|
|
1089
1185
|
"outputs": [
|
|
1090
1186
|
{
|
|
1187
|
+
"internalType": "bool",
|
|
1188
|
+
"name": "",
|
|
1091
1189
|
"type": "bool"
|
|
1092
1190
|
},
|
|
1093
1191
|
{
|
|
1192
|
+
"internalType": "string",
|
|
1193
|
+
"name": "",
|
|
1094
1194
|
"type": "string"
|
|
1095
1195
|
}
|
|
1096
|
-
]
|
|
1196
|
+
],
|
|
1197
|
+
"stateMutability": "view",
|
|
1198
|
+
"type": "function"
|
|
1097
1199
|
},
|
|
1098
1200
|
{
|
|
1099
|
-
"type": "function",
|
|
1100
|
-
"name": "isOperatorInPool",
|
|
1101
|
-
"constant": true,
|
|
1102
|
-
"stateMutability": "view",
|
|
1103
|
-
"payable": false,
|
|
1104
|
-
"gas": 29000000,
|
|
1105
1201
|
"inputs": [
|
|
1106
1202
|
{
|
|
1107
|
-
"
|
|
1108
|
-
"name": "operator"
|
|
1203
|
+
"internalType": "address",
|
|
1204
|
+
"name": "operator",
|
|
1205
|
+
"type": "address"
|
|
1109
1206
|
}
|
|
1110
1207
|
],
|
|
1208
|
+
"name": "isOperatorInPool",
|
|
1111
1209
|
"outputs": [
|
|
1112
1210
|
{
|
|
1211
|
+
"internalType": "bool",
|
|
1212
|
+
"name": "",
|
|
1113
1213
|
"type": "bool"
|
|
1114
1214
|
}
|
|
1115
|
-
]
|
|
1215
|
+
],
|
|
1216
|
+
"stateMutability": "view",
|
|
1217
|
+
"type": "function"
|
|
1116
1218
|
},
|
|
1117
1219
|
{
|
|
1118
|
-
"type": "function",
|
|
1119
|
-
"name": "isOperatorUpToDate",
|
|
1120
|
-
"constant": true,
|
|
1121
|
-
"stateMutability": "view",
|
|
1122
|
-
"payable": false,
|
|
1123
|
-
"gas": 29000000,
|
|
1124
1220
|
"inputs": [
|
|
1125
1221
|
{
|
|
1126
|
-
"
|
|
1127
|
-
"name": "operator"
|
|
1222
|
+
"internalType": "address",
|
|
1223
|
+
"name": "operator",
|
|
1224
|
+
"type": "address"
|
|
1128
1225
|
}
|
|
1129
1226
|
],
|
|
1227
|
+
"name": "isOperatorUpToDate",
|
|
1130
1228
|
"outputs": [
|
|
1131
1229
|
{
|
|
1230
|
+
"internalType": "bool",
|
|
1231
|
+
"name": "",
|
|
1132
1232
|
"type": "bool"
|
|
1133
1233
|
}
|
|
1134
|
-
]
|
|
1234
|
+
],
|
|
1235
|
+
"stateMutability": "view",
|
|
1236
|
+
"type": "function"
|
|
1135
1237
|
},
|
|
1136
1238
|
{
|
|
1137
|
-
"type": "function",
|
|
1138
|
-
"name": "isWalletMember",
|
|
1139
|
-
"constant": true,
|
|
1140
|
-
"stateMutability": "view",
|
|
1141
|
-
"payable": false,
|
|
1142
|
-
"gas": 29000000,
|
|
1143
1239
|
"inputs": [
|
|
1144
1240
|
{
|
|
1145
|
-
"
|
|
1146
|
-
"name": "walletID"
|
|
1241
|
+
"internalType": "bytes32",
|
|
1242
|
+
"name": "walletID",
|
|
1243
|
+
"type": "bytes32"
|
|
1147
1244
|
},
|
|
1148
1245
|
{
|
|
1149
|
-
"
|
|
1150
|
-
"name": "walletMembersIDs"
|
|
1246
|
+
"internalType": "uint32[]",
|
|
1247
|
+
"name": "walletMembersIDs",
|
|
1248
|
+
"type": "uint32[]"
|
|
1151
1249
|
},
|
|
1152
1250
|
{
|
|
1153
|
-
"
|
|
1154
|
-
"name": "operator"
|
|
1251
|
+
"internalType": "address",
|
|
1252
|
+
"name": "operator",
|
|
1253
|
+
"type": "address"
|
|
1155
1254
|
},
|
|
1156
1255
|
{
|
|
1157
|
-
"
|
|
1158
|
-
"name": "walletMemberIndex"
|
|
1256
|
+
"internalType": "uint256",
|
|
1257
|
+
"name": "walletMemberIndex",
|
|
1258
|
+
"type": "uint256"
|
|
1159
1259
|
}
|
|
1160
1260
|
],
|
|
1261
|
+
"name": "isWalletMember",
|
|
1161
1262
|
"outputs": [
|
|
1162
1263
|
{
|
|
1264
|
+
"internalType": "bool",
|
|
1265
|
+
"name": "",
|
|
1163
1266
|
"type": "bool"
|
|
1164
1267
|
}
|
|
1165
|
-
]
|
|
1268
|
+
],
|
|
1269
|
+
"stateMutability": "view",
|
|
1270
|
+
"type": "function"
|
|
1166
1271
|
},
|
|
1167
1272
|
{
|
|
1168
|
-
"type": "function",
|
|
1169
|
-
"name": "isWalletRegistered",
|
|
1170
|
-
"constant": true,
|
|
1171
|
-
"stateMutability": "view",
|
|
1172
|
-
"payable": false,
|
|
1173
|
-
"gas": 29000000,
|
|
1174
1273
|
"inputs": [
|
|
1175
1274
|
{
|
|
1176
|
-
"
|
|
1177
|
-
"name": "walletID"
|
|
1275
|
+
"internalType": "bytes32",
|
|
1276
|
+
"name": "walletID",
|
|
1277
|
+
"type": "bytes32"
|
|
1178
1278
|
}
|
|
1179
1279
|
],
|
|
1280
|
+
"name": "isWalletRegistered",
|
|
1180
1281
|
"outputs": [
|
|
1181
1282
|
{
|
|
1283
|
+
"internalType": "bool",
|
|
1284
|
+
"name": "",
|
|
1182
1285
|
"type": "bool"
|
|
1183
1286
|
}
|
|
1184
|
-
]
|
|
1287
|
+
],
|
|
1288
|
+
"stateMutability": "view",
|
|
1289
|
+
"type": "function"
|
|
1185
1290
|
},
|
|
1186
1291
|
{
|
|
1187
|
-
"type": "function",
|
|
1188
|
-
"name": "joinSortitionPool",
|
|
1189
|
-
"constant": false,
|
|
1190
|
-
"payable": false,
|
|
1191
|
-
"gas": 29000000,
|
|
1192
1292
|
"inputs": [],
|
|
1193
|
-
"
|
|
1293
|
+
"name": "joinSortitionPool",
|
|
1294
|
+
"outputs": [],
|
|
1295
|
+
"stateMutability": "nonpayable",
|
|
1296
|
+
"type": "function"
|
|
1194
1297
|
},
|
|
1195
1298
|
{
|
|
1196
|
-
"type": "function",
|
|
1197
|
-
"name": "minimumAuthorization",
|
|
1198
|
-
"constant": true,
|
|
1199
|
-
"stateMutability": "view",
|
|
1200
|
-
"payable": false,
|
|
1201
|
-
"gas": 29000000,
|
|
1202
1299
|
"inputs": [],
|
|
1300
|
+
"name": "minimumAuthorization",
|
|
1203
1301
|
"outputs": [
|
|
1204
1302
|
{
|
|
1303
|
+
"internalType": "uint96",
|
|
1304
|
+
"name": "",
|
|
1205
1305
|
"type": "uint96"
|
|
1206
1306
|
}
|
|
1207
|
-
]
|
|
1307
|
+
],
|
|
1308
|
+
"stateMutability": "view",
|
|
1309
|
+
"type": "function"
|
|
1208
1310
|
},
|
|
1209
1311
|
{
|
|
1210
|
-
"type": "function",
|
|
1211
|
-
"name": "notifyDkgTimeout",
|
|
1212
|
-
"constant": false,
|
|
1213
|
-
"payable": false,
|
|
1214
|
-
"gas": 29000000,
|
|
1215
1312
|
"inputs": [],
|
|
1216
|
-
"
|
|
1313
|
+
"name": "notifyDkgTimeout",
|
|
1314
|
+
"outputs": [],
|
|
1315
|
+
"stateMutability": "nonpayable",
|
|
1316
|
+
"type": "function"
|
|
1217
1317
|
},
|
|
1218
1318
|
{
|
|
1219
|
-
"type": "function",
|
|
1220
|
-
"name": "notifyOperatorInactivity",
|
|
1221
|
-
"constant": false,
|
|
1222
|
-
"payable": false,
|
|
1223
|
-
"gas": 29000000,
|
|
1224
1319
|
"inputs": [
|
|
1225
1320
|
{
|
|
1226
|
-
"type": "tuple",
|
|
1227
|
-
"name": "claim",
|
|
1228
1321
|
"components": [
|
|
1229
1322
|
{
|
|
1230
|
-
"
|
|
1231
|
-
"name": "walletID"
|
|
1323
|
+
"internalType": "bytes32",
|
|
1324
|
+
"name": "walletID",
|
|
1325
|
+
"type": "bytes32"
|
|
1232
1326
|
},
|
|
1233
1327
|
{
|
|
1234
|
-
"
|
|
1235
|
-
"name": "inactiveMembersIndices"
|
|
1328
|
+
"internalType": "uint256[]",
|
|
1329
|
+
"name": "inactiveMembersIndices",
|
|
1330
|
+
"type": "uint256[]"
|
|
1236
1331
|
},
|
|
1237
1332
|
{
|
|
1238
|
-
"
|
|
1239
|
-
"name": "heartbeatFailed"
|
|
1333
|
+
"internalType": "bool",
|
|
1334
|
+
"name": "heartbeatFailed",
|
|
1335
|
+
"type": "bool"
|
|
1240
1336
|
},
|
|
1241
1337
|
{
|
|
1242
|
-
"
|
|
1243
|
-
"name": "signatures"
|
|
1338
|
+
"internalType": "bytes",
|
|
1339
|
+
"name": "signatures",
|
|
1340
|
+
"type": "bytes"
|
|
1244
1341
|
},
|
|
1245
1342
|
{
|
|
1246
|
-
"
|
|
1247
|
-
"name": "signingMembersIndices"
|
|
1343
|
+
"internalType": "uint256[]",
|
|
1344
|
+
"name": "signingMembersIndices",
|
|
1345
|
+
"type": "uint256[]"
|
|
1248
1346
|
}
|
|
1249
|
-
]
|
|
1347
|
+
],
|
|
1348
|
+
"internalType": "struct EcdsaInactivity.Claim",
|
|
1349
|
+
"name": "claim",
|
|
1350
|
+
"type": "tuple"
|
|
1250
1351
|
},
|
|
1251
1352
|
{
|
|
1252
|
-
"
|
|
1253
|
-
"name": "nonce"
|
|
1353
|
+
"internalType": "uint256",
|
|
1354
|
+
"name": "nonce",
|
|
1355
|
+
"type": "uint256"
|
|
1254
1356
|
},
|
|
1255
1357
|
{
|
|
1256
|
-
"
|
|
1257
|
-
"name": "groupMembers"
|
|
1358
|
+
"internalType": "uint32[]",
|
|
1359
|
+
"name": "groupMembers",
|
|
1360
|
+
"type": "uint32[]"
|
|
1258
1361
|
}
|
|
1259
1362
|
],
|
|
1260
|
-
"
|
|
1363
|
+
"name": "notifyOperatorInactivity",
|
|
1364
|
+
"outputs": [],
|
|
1365
|
+
"stateMutability": "nonpayable",
|
|
1366
|
+
"type": "function"
|
|
1261
1367
|
},
|
|
1262
1368
|
{
|
|
1263
|
-
"type": "function",
|
|
1264
|
-
"name": "notifySeedTimeout",
|
|
1265
|
-
"constant": false,
|
|
1266
|
-
"payable": false,
|
|
1267
|
-
"gas": 29000000,
|
|
1268
1369
|
"inputs": [],
|
|
1269
|
-
"
|
|
1370
|
+
"name": "notifySeedTimeout",
|
|
1371
|
+
"outputs": [],
|
|
1372
|
+
"stateMutability": "nonpayable",
|
|
1373
|
+
"type": "function"
|
|
1270
1374
|
},
|
|
1271
1375
|
{
|
|
1272
|
-
"type": "function",
|
|
1273
|
-
"name": "operatorToStakingProvider",
|
|
1274
|
-
"constant": true,
|
|
1275
|
-
"stateMutability": "view",
|
|
1276
|
-
"payable": false,
|
|
1277
|
-
"gas": 29000000,
|
|
1278
1376
|
"inputs": [
|
|
1279
1377
|
{
|
|
1280
|
-
"
|
|
1281
|
-
"name": "operator"
|
|
1378
|
+
"internalType": "address",
|
|
1379
|
+
"name": "operator",
|
|
1380
|
+
"type": "address"
|
|
1282
1381
|
}
|
|
1283
1382
|
],
|
|
1383
|
+
"name": "operatorToStakingProvider",
|
|
1284
1384
|
"outputs": [
|
|
1285
1385
|
{
|
|
1386
|
+
"internalType": "address",
|
|
1387
|
+
"name": "",
|
|
1286
1388
|
"type": "address"
|
|
1287
1389
|
}
|
|
1288
|
-
]
|
|
1390
|
+
],
|
|
1391
|
+
"stateMutability": "view",
|
|
1392
|
+
"type": "function"
|
|
1289
1393
|
},
|
|
1290
1394
|
{
|
|
1291
|
-
"type": "function",
|
|
1292
|
-
"name": "pendingAuthorizationDecrease",
|
|
1293
|
-
"constant": true,
|
|
1294
|
-
"stateMutability": "view",
|
|
1295
|
-
"payable": false,
|
|
1296
|
-
"gas": 29000000,
|
|
1297
1395
|
"inputs": [
|
|
1298
1396
|
{
|
|
1299
|
-
"
|
|
1300
|
-
"name": "stakingProvider"
|
|
1397
|
+
"internalType": "address",
|
|
1398
|
+
"name": "stakingProvider",
|
|
1399
|
+
"type": "address"
|
|
1301
1400
|
}
|
|
1302
1401
|
],
|
|
1402
|
+
"name": "pendingAuthorizationDecrease",
|
|
1303
1403
|
"outputs": [
|
|
1304
1404
|
{
|
|
1405
|
+
"internalType": "uint96",
|
|
1406
|
+
"name": "",
|
|
1305
1407
|
"type": "uint96"
|
|
1306
1408
|
}
|
|
1307
|
-
]
|
|
1409
|
+
],
|
|
1410
|
+
"stateMutability": "view",
|
|
1411
|
+
"type": "function"
|
|
1308
1412
|
},
|
|
1309
1413
|
{
|
|
1310
|
-
"type": "function",
|
|
1311
|
-
"name": "randomBeacon",
|
|
1312
|
-
"constant": true,
|
|
1313
|
-
"stateMutability": "view",
|
|
1314
|
-
"payable": false,
|
|
1315
|
-
"gas": 29000000,
|
|
1316
1414
|
"inputs": [],
|
|
1415
|
+
"name": "randomBeacon",
|
|
1317
1416
|
"outputs": [
|
|
1318
1417
|
{
|
|
1418
|
+
"internalType": "contract IRandomBeacon",
|
|
1419
|
+
"name": "",
|
|
1319
1420
|
"type": "address"
|
|
1320
1421
|
}
|
|
1321
|
-
]
|
|
1422
|
+
],
|
|
1423
|
+
"stateMutability": "view",
|
|
1424
|
+
"type": "function"
|
|
1322
1425
|
},
|
|
1323
1426
|
{
|
|
1324
|
-
"type": "function",
|
|
1325
|
-
"name": "registerOperator",
|
|
1326
|
-
"constant": false,
|
|
1327
|
-
"payable": false,
|
|
1328
|
-
"gas": 29000000,
|
|
1329
1427
|
"inputs": [
|
|
1330
1428
|
{
|
|
1331
|
-
"
|
|
1332
|
-
"name": "operator"
|
|
1429
|
+
"internalType": "address",
|
|
1430
|
+
"name": "operator",
|
|
1431
|
+
"type": "address"
|
|
1333
1432
|
}
|
|
1334
1433
|
],
|
|
1335
|
-
"
|
|
1434
|
+
"name": "registerOperator",
|
|
1435
|
+
"outputs": [],
|
|
1436
|
+
"stateMutability": "nonpayable",
|
|
1437
|
+
"type": "function"
|
|
1336
1438
|
},
|
|
1337
1439
|
{
|
|
1338
|
-
"type": "function",
|
|
1339
|
-
"name": "reimbursementPool",
|
|
1340
|
-
"constant": true,
|
|
1341
|
-
"stateMutability": "view",
|
|
1342
|
-
"payable": false,
|
|
1343
|
-
"gas": 29000000,
|
|
1344
1440
|
"inputs": [],
|
|
1441
|
+
"name": "reimbursementPool",
|
|
1345
1442
|
"outputs": [
|
|
1346
1443
|
{
|
|
1444
|
+
"internalType": "contract ReimbursementPool",
|
|
1445
|
+
"name": "",
|
|
1347
1446
|
"type": "address"
|
|
1348
1447
|
}
|
|
1349
|
-
]
|
|
1448
|
+
],
|
|
1449
|
+
"stateMutability": "view",
|
|
1450
|
+
"type": "function"
|
|
1350
1451
|
},
|
|
1351
1452
|
{
|
|
1352
|
-
"type": "function",
|
|
1353
|
-
"name": "remainingAuthorizationDecreaseDelay",
|
|
1354
|
-
"constant": true,
|
|
1355
|
-
"stateMutability": "view",
|
|
1356
|
-
"payable": false,
|
|
1357
|
-
"gas": 29000000,
|
|
1358
1453
|
"inputs": [
|
|
1359
1454
|
{
|
|
1360
|
-
"
|
|
1361
|
-
"name": "stakingProvider"
|
|
1455
|
+
"internalType": "address",
|
|
1456
|
+
"name": "stakingProvider",
|
|
1457
|
+
"type": "address"
|
|
1362
1458
|
}
|
|
1363
1459
|
],
|
|
1460
|
+
"name": "remainingAuthorizationDecreaseDelay",
|
|
1364
1461
|
"outputs": [
|
|
1365
1462
|
{
|
|
1463
|
+
"internalType": "uint64",
|
|
1464
|
+
"name": "",
|
|
1366
1465
|
"type": "uint64"
|
|
1367
1466
|
}
|
|
1368
|
-
]
|
|
1467
|
+
],
|
|
1468
|
+
"stateMutability": "view",
|
|
1469
|
+
"type": "function"
|
|
1369
1470
|
},
|
|
1370
1471
|
{
|
|
1371
|
-
"type": "function",
|
|
1372
|
-
"name": "requestNewWallet",
|
|
1373
|
-
"constant": false,
|
|
1374
|
-
"payable": false,
|
|
1375
|
-
"gas": 29000000,
|
|
1376
1472
|
"inputs": [],
|
|
1377
|
-
"
|
|
1473
|
+
"name": "requestNewWallet",
|
|
1474
|
+
"outputs": [],
|
|
1475
|
+
"stateMutability": "nonpayable",
|
|
1476
|
+
"type": "function"
|
|
1378
1477
|
},
|
|
1379
1478
|
{
|
|
1380
|
-
"type": "function",
|
|
1381
|
-
"name": "rewardParameters",
|
|
1382
|
-
"constant": true,
|
|
1383
|
-
"stateMutability": "view",
|
|
1384
|
-
"payable": false,
|
|
1385
|
-
"gas": 29000000,
|
|
1386
1479
|
"inputs": [],
|
|
1480
|
+
"name": "rewardParameters",
|
|
1387
1481
|
"outputs": [
|
|
1388
1482
|
{
|
|
1389
|
-
"
|
|
1390
|
-
"name": "maliciousDkgResultNotificationRewardMultiplier"
|
|
1483
|
+
"internalType": "uint256",
|
|
1484
|
+
"name": "maliciousDkgResultNotificationRewardMultiplier",
|
|
1485
|
+
"type": "uint256"
|
|
1391
1486
|
},
|
|
1392
1487
|
{
|
|
1393
|
-
"
|
|
1394
|
-
"name": "sortitionPoolRewardsBanDuration"
|
|
1488
|
+
"internalType": "uint256",
|
|
1489
|
+
"name": "sortitionPoolRewardsBanDuration",
|
|
1490
|
+
"type": "uint256"
|
|
1395
1491
|
}
|
|
1396
|
-
]
|
|
1492
|
+
],
|
|
1493
|
+
"stateMutability": "view",
|
|
1494
|
+
"type": "function"
|
|
1397
1495
|
},
|
|
1398
1496
|
{
|
|
1399
|
-
"type": "function",
|
|
1400
|
-
"name": "seize",
|
|
1401
|
-
"constant": false,
|
|
1402
|
-
"payable": false,
|
|
1403
|
-
"gas": 29000000,
|
|
1404
1497
|
"inputs": [
|
|
1405
1498
|
{
|
|
1406
|
-
"
|
|
1407
|
-
"name": "amount"
|
|
1499
|
+
"internalType": "uint96",
|
|
1500
|
+
"name": "amount",
|
|
1501
|
+
"type": "uint96"
|
|
1408
1502
|
},
|
|
1409
1503
|
{
|
|
1410
|
-
"
|
|
1411
|
-
"name": "rewardMultiplier"
|
|
1504
|
+
"internalType": "uint256",
|
|
1505
|
+
"name": "rewardMultiplier",
|
|
1506
|
+
"type": "uint256"
|
|
1412
1507
|
},
|
|
1413
1508
|
{
|
|
1414
|
-
"
|
|
1415
|
-
"name": "notifier"
|
|
1509
|
+
"internalType": "address",
|
|
1510
|
+
"name": "notifier",
|
|
1511
|
+
"type": "address"
|
|
1416
1512
|
},
|
|
1417
1513
|
{
|
|
1418
|
-
"
|
|
1419
|
-
"name": "walletID"
|
|
1514
|
+
"internalType": "bytes32",
|
|
1515
|
+
"name": "walletID",
|
|
1516
|
+
"type": "bytes32"
|
|
1420
1517
|
},
|
|
1421
1518
|
{
|
|
1422
|
-
"
|
|
1423
|
-
"name": "walletMembersIDs"
|
|
1519
|
+
"internalType": "uint32[]",
|
|
1520
|
+
"name": "walletMembersIDs",
|
|
1521
|
+
"type": "uint32[]"
|
|
1424
1522
|
}
|
|
1425
1523
|
],
|
|
1426
|
-
"
|
|
1524
|
+
"name": "seize",
|
|
1525
|
+
"outputs": [],
|
|
1526
|
+
"stateMutability": "nonpayable",
|
|
1527
|
+
"type": "function"
|
|
1427
1528
|
},
|
|
1428
1529
|
{
|
|
1429
|
-
"type": "function",
|
|
1430
|
-
"name": "selectGroup",
|
|
1431
|
-
"constant": true,
|
|
1432
|
-
"stateMutability": "view",
|
|
1433
|
-
"payable": false,
|
|
1434
|
-
"gas": 29000000,
|
|
1435
1530
|
"inputs": [],
|
|
1531
|
+
"name": "selectGroup",
|
|
1436
1532
|
"outputs": [
|
|
1437
1533
|
{
|
|
1534
|
+
"internalType": "uint32[]",
|
|
1535
|
+
"name": "",
|
|
1438
1536
|
"type": "uint32[]"
|
|
1439
1537
|
}
|
|
1440
|
-
]
|
|
1538
|
+
],
|
|
1539
|
+
"stateMutability": "view",
|
|
1540
|
+
"type": "function"
|
|
1441
1541
|
},
|
|
1442
1542
|
{
|
|
1443
|
-
"type": "function",
|
|
1444
|
-
"name": "slashingParameters",
|
|
1445
|
-
"constant": true,
|
|
1446
|
-
"stateMutability": "view",
|
|
1447
|
-
"payable": false,
|
|
1448
|
-
"gas": 29000000,
|
|
1449
1543
|
"inputs": [],
|
|
1544
|
+
"name": "slashingParameters",
|
|
1450
1545
|
"outputs": [
|
|
1451
1546
|
{
|
|
1452
|
-
"
|
|
1453
|
-
"name": "maliciousDkgResultSlashingAmount"
|
|
1547
|
+
"internalType": "uint96",
|
|
1548
|
+
"name": "maliciousDkgResultSlashingAmount",
|
|
1549
|
+
"type": "uint96"
|
|
1454
1550
|
}
|
|
1455
|
-
]
|
|
1551
|
+
],
|
|
1552
|
+
"stateMutability": "view",
|
|
1553
|
+
"type": "function"
|
|
1456
1554
|
},
|
|
1457
1555
|
{
|
|
1458
|
-
"type": "function",
|
|
1459
|
-
"name": "sortitionPool",
|
|
1460
|
-
"constant": true,
|
|
1461
|
-
"stateMutability": "view",
|
|
1462
|
-
"payable": false,
|
|
1463
|
-
"gas": 29000000,
|
|
1464
1556
|
"inputs": [],
|
|
1557
|
+
"name": "sortitionPool",
|
|
1465
1558
|
"outputs": [
|
|
1466
1559
|
{
|
|
1560
|
+
"internalType": "contract SortitionPool",
|
|
1561
|
+
"name": "",
|
|
1467
1562
|
"type": "address"
|
|
1468
1563
|
}
|
|
1469
|
-
]
|
|
1564
|
+
],
|
|
1565
|
+
"stateMutability": "view",
|
|
1566
|
+
"type": "function"
|
|
1470
1567
|
},
|
|
1471
1568
|
{
|
|
1472
|
-
"type": "function",
|
|
1473
|
-
"name": "staking",
|
|
1474
|
-
"constant": true,
|
|
1475
|
-
"stateMutability": "view",
|
|
1476
|
-
"payable": false,
|
|
1477
|
-
"gas": 29000000,
|
|
1478
1569
|
"inputs": [],
|
|
1570
|
+
"name": "staking",
|
|
1479
1571
|
"outputs": [
|
|
1480
1572
|
{
|
|
1573
|
+
"internalType": "contract IStaking",
|
|
1574
|
+
"name": "",
|
|
1481
1575
|
"type": "address"
|
|
1482
1576
|
}
|
|
1483
|
-
]
|
|
1577
|
+
],
|
|
1578
|
+
"stateMutability": "view",
|
|
1579
|
+
"type": "function"
|
|
1484
1580
|
},
|
|
1485
1581
|
{
|
|
1486
|
-
"type": "function",
|
|
1487
|
-
"name": "stakingProviderToOperator",
|
|
1488
|
-
"constant": true,
|
|
1489
|
-
"stateMutability": "view",
|
|
1490
|
-
"payable": false,
|
|
1491
|
-
"gas": 29000000,
|
|
1492
1582
|
"inputs": [
|
|
1493
1583
|
{
|
|
1494
|
-
"
|
|
1495
|
-
"name": "stakingProvider"
|
|
1584
|
+
"internalType": "address",
|
|
1585
|
+
"name": "stakingProvider",
|
|
1586
|
+
"type": "address"
|
|
1496
1587
|
}
|
|
1497
1588
|
],
|
|
1589
|
+
"name": "stakingProviderToOperator",
|
|
1498
1590
|
"outputs": [
|
|
1499
1591
|
{
|
|
1592
|
+
"internalType": "address",
|
|
1593
|
+
"name": "",
|
|
1500
1594
|
"type": "address"
|
|
1501
1595
|
}
|
|
1502
|
-
]
|
|
1596
|
+
],
|
|
1597
|
+
"stateMutability": "view",
|
|
1598
|
+
"type": "function"
|
|
1503
1599
|
},
|
|
1504
1600
|
{
|
|
1505
|
-
"type": "function",
|
|
1506
|
-
"name": "submitDkgResult",
|
|
1507
|
-
"constant": false,
|
|
1508
|
-
"payable": false,
|
|
1509
|
-
"gas": 29000000,
|
|
1510
1601
|
"inputs": [
|
|
1511
1602
|
{
|
|
1512
|
-
"type": "tuple",
|
|
1513
|
-
"name": "dkgResult",
|
|
1514
1603
|
"components": [
|
|
1515
1604
|
{
|
|
1516
|
-
"
|
|
1517
|
-
"name": "submitterMemberIndex"
|
|
1605
|
+
"internalType": "uint256",
|
|
1606
|
+
"name": "submitterMemberIndex",
|
|
1607
|
+
"type": "uint256"
|
|
1518
1608
|
},
|
|
1519
1609
|
{
|
|
1520
|
-
"
|
|
1521
|
-
"name": "groupPubKey"
|
|
1610
|
+
"internalType": "bytes",
|
|
1611
|
+
"name": "groupPubKey",
|
|
1612
|
+
"type": "bytes"
|
|
1522
1613
|
},
|
|
1523
1614
|
{
|
|
1524
|
-
"
|
|
1525
|
-
"name": "misbehavedMembersIndices"
|
|
1615
|
+
"internalType": "uint8[]",
|
|
1616
|
+
"name": "misbehavedMembersIndices",
|
|
1617
|
+
"type": "uint8[]"
|
|
1526
1618
|
},
|
|
1527
1619
|
{
|
|
1528
|
-
"
|
|
1529
|
-
"name": "signatures"
|
|
1620
|
+
"internalType": "bytes",
|
|
1621
|
+
"name": "signatures",
|
|
1622
|
+
"type": "bytes"
|
|
1530
1623
|
},
|
|
1531
1624
|
{
|
|
1532
|
-
"
|
|
1533
|
-
"name": "signingMembersIndices"
|
|
1625
|
+
"internalType": "uint256[]",
|
|
1626
|
+
"name": "signingMembersIndices",
|
|
1627
|
+
"type": "uint256[]"
|
|
1534
1628
|
},
|
|
1535
1629
|
{
|
|
1536
|
-
"
|
|
1537
|
-
"name": "members"
|
|
1630
|
+
"internalType": "uint32[]",
|
|
1631
|
+
"name": "members",
|
|
1632
|
+
"type": "uint32[]"
|
|
1538
1633
|
},
|
|
1539
1634
|
{
|
|
1540
|
-
"
|
|
1541
|
-
"name": "membersHash"
|
|
1635
|
+
"internalType": "bytes32",
|
|
1636
|
+
"name": "membersHash",
|
|
1637
|
+
"type": "bytes32"
|
|
1542
1638
|
}
|
|
1543
|
-
]
|
|
1639
|
+
],
|
|
1640
|
+
"internalType": "struct EcdsaDkg.Result",
|
|
1641
|
+
"name": "dkgResult",
|
|
1642
|
+
"type": "tuple"
|
|
1544
1643
|
}
|
|
1545
1644
|
],
|
|
1546
|
-
"
|
|
1645
|
+
"name": "submitDkgResult",
|
|
1646
|
+
"outputs": [],
|
|
1647
|
+
"stateMutability": "nonpayable",
|
|
1648
|
+
"type": "function"
|
|
1547
1649
|
},
|
|
1548
1650
|
{
|
|
1549
|
-
"type": "function",
|
|
1550
|
-
"name": "transferGovernance",
|
|
1551
|
-
"constant": false,
|
|
1552
|
-
"payable": false,
|
|
1553
|
-
"gas": 29000000,
|
|
1554
1651
|
"inputs": [
|
|
1555
1652
|
{
|
|
1556
|
-
"
|
|
1557
|
-
"name": "newGovernance"
|
|
1653
|
+
"internalType": "address",
|
|
1654
|
+
"name": "newGovernance",
|
|
1655
|
+
"type": "address"
|
|
1558
1656
|
}
|
|
1559
1657
|
],
|
|
1560
|
-
"
|
|
1658
|
+
"name": "transferGovernance",
|
|
1659
|
+
"outputs": [],
|
|
1660
|
+
"stateMutability": "nonpayable",
|
|
1661
|
+
"type": "function"
|
|
1561
1662
|
},
|
|
1562
1663
|
{
|
|
1563
|
-
"type": "function",
|
|
1564
|
-
"name": "updateAuthorizationParameters",
|
|
1565
|
-
"constant": false,
|
|
1566
|
-
"payable": false,
|
|
1567
|
-
"gas": 29000000,
|
|
1568
1664
|
"inputs": [
|
|
1569
1665
|
{
|
|
1570
|
-
"
|
|
1571
|
-
"name": "_minimumAuthorization"
|
|
1666
|
+
"internalType": "uint96",
|
|
1667
|
+
"name": "_minimumAuthorization",
|
|
1668
|
+
"type": "uint96"
|
|
1572
1669
|
},
|
|
1573
1670
|
{
|
|
1574
|
-
"
|
|
1575
|
-
"name": "_authorizationDecreaseDelay"
|
|
1671
|
+
"internalType": "uint64",
|
|
1672
|
+
"name": "_authorizationDecreaseDelay",
|
|
1673
|
+
"type": "uint64"
|
|
1576
1674
|
},
|
|
1577
1675
|
{
|
|
1578
|
-
"
|
|
1579
|
-
"name": "_authorizationDecreaseChangePeriod"
|
|
1676
|
+
"internalType": "uint64",
|
|
1677
|
+
"name": "_authorizationDecreaseChangePeriod",
|
|
1678
|
+
"type": "uint64"
|
|
1580
1679
|
}
|
|
1581
1680
|
],
|
|
1582
|
-
"
|
|
1681
|
+
"name": "updateAuthorizationParameters",
|
|
1682
|
+
"outputs": [],
|
|
1683
|
+
"stateMutability": "nonpayable",
|
|
1684
|
+
"type": "function"
|
|
1583
1685
|
},
|
|
1584
1686
|
{
|
|
1585
|
-
"type": "function",
|
|
1586
|
-
"name": "updateDkgParameters",
|
|
1587
|
-
"constant": false,
|
|
1588
|
-
"payable": false,
|
|
1589
|
-
"gas": 29000000,
|
|
1590
1687
|
"inputs": [
|
|
1591
1688
|
{
|
|
1592
|
-
"
|
|
1593
|
-
"name": "_seedTimeout"
|
|
1689
|
+
"internalType": "uint256",
|
|
1690
|
+
"name": "_seedTimeout",
|
|
1691
|
+
"type": "uint256"
|
|
1594
1692
|
},
|
|
1595
1693
|
{
|
|
1596
|
-
"
|
|
1597
|
-
"name": "_resultChallengePeriodLength"
|
|
1694
|
+
"internalType": "uint256",
|
|
1695
|
+
"name": "_resultChallengePeriodLength",
|
|
1696
|
+
"type": "uint256"
|
|
1598
1697
|
},
|
|
1599
1698
|
{
|
|
1600
|
-
"
|
|
1601
|
-
"name": "_resultSubmissionTimeout"
|
|
1699
|
+
"internalType": "uint256",
|
|
1700
|
+
"name": "_resultSubmissionTimeout",
|
|
1701
|
+
"type": "uint256"
|
|
1602
1702
|
},
|
|
1603
1703
|
{
|
|
1604
|
-
"
|
|
1605
|
-
"name": "_submitterPrecedencePeriodLength"
|
|
1704
|
+
"internalType": "uint256",
|
|
1705
|
+
"name": "_submitterPrecedencePeriodLength",
|
|
1706
|
+
"type": "uint256"
|
|
1606
1707
|
}
|
|
1607
1708
|
],
|
|
1608
|
-
"
|
|
1709
|
+
"name": "updateDkgParameters",
|
|
1710
|
+
"outputs": [],
|
|
1711
|
+
"stateMutability": "nonpayable",
|
|
1712
|
+
"type": "function"
|
|
1609
1713
|
},
|
|
1610
1714
|
{
|
|
1611
|
-
"type": "function",
|
|
1612
|
-
"name": "updateGasParameters",
|
|
1613
|
-
"constant": false,
|
|
1614
|
-
"payable": false,
|
|
1615
|
-
"gas": 29000000,
|
|
1616
1715
|
"inputs": [
|
|
1617
1716
|
{
|
|
1618
|
-
"
|
|
1619
|
-
"name": "dkgResultSubmissionGas"
|
|
1717
|
+
"internalType": "uint256",
|
|
1718
|
+
"name": "dkgResultSubmissionGas",
|
|
1719
|
+
"type": "uint256"
|
|
1620
1720
|
},
|
|
1621
1721
|
{
|
|
1622
|
-
"
|
|
1623
|
-
"name": "dkgResultApprovalGasOffset"
|
|
1722
|
+
"internalType": "uint256",
|
|
1723
|
+
"name": "dkgResultApprovalGasOffset",
|
|
1724
|
+
"type": "uint256"
|
|
1624
1725
|
},
|
|
1625
1726
|
{
|
|
1626
|
-
"
|
|
1627
|
-
"name": "notifyOperatorInactivityGasOffset"
|
|
1727
|
+
"internalType": "uint256",
|
|
1728
|
+
"name": "notifyOperatorInactivityGasOffset",
|
|
1729
|
+
"type": "uint256"
|
|
1628
1730
|
},
|
|
1629
1731
|
{
|
|
1630
|
-
"
|
|
1631
|
-
"name": "notifySeedTimeoutGasOffset"
|
|
1732
|
+
"internalType": "uint256",
|
|
1733
|
+
"name": "notifySeedTimeoutGasOffset",
|
|
1734
|
+
"type": "uint256"
|
|
1632
1735
|
},
|
|
1633
1736
|
{
|
|
1634
|
-
"
|
|
1635
|
-
"name": "notifyDkgTimeoutNegativeGasOffset"
|
|
1737
|
+
"internalType": "uint256",
|
|
1738
|
+
"name": "notifyDkgTimeoutNegativeGasOffset",
|
|
1739
|
+
"type": "uint256"
|
|
1636
1740
|
}
|
|
1637
1741
|
],
|
|
1638
|
-
"
|
|
1742
|
+
"name": "updateGasParameters",
|
|
1743
|
+
"outputs": [],
|
|
1744
|
+
"stateMutability": "nonpayable",
|
|
1745
|
+
"type": "function"
|
|
1639
1746
|
},
|
|
1640
1747
|
{
|
|
1641
|
-
"type": "function",
|
|
1642
|
-
"name": "updateOperatorStatus",
|
|
1643
|
-
"constant": false,
|
|
1644
|
-
"payable": false,
|
|
1645
|
-
"gas": 29000000,
|
|
1646
1748
|
"inputs": [
|
|
1647
1749
|
{
|
|
1648
|
-
"
|
|
1649
|
-
"name": "operator"
|
|
1750
|
+
"internalType": "address",
|
|
1751
|
+
"name": "operator",
|
|
1752
|
+
"type": "address"
|
|
1650
1753
|
}
|
|
1651
1754
|
],
|
|
1652
|
-
"
|
|
1755
|
+
"name": "updateOperatorStatus",
|
|
1756
|
+
"outputs": [],
|
|
1757
|
+
"stateMutability": "nonpayable",
|
|
1758
|
+
"type": "function"
|
|
1653
1759
|
},
|
|
1654
1760
|
{
|
|
1655
|
-
"type": "function",
|
|
1656
|
-
"name": "updateReimbursementPool",
|
|
1657
|
-
"constant": false,
|
|
1658
|
-
"payable": false,
|
|
1659
|
-
"gas": 29000000,
|
|
1660
1761
|
"inputs": [
|
|
1661
1762
|
{
|
|
1662
|
-
"
|
|
1663
|
-
"name": "_reimbursementPool"
|
|
1763
|
+
"internalType": "contract ReimbursementPool",
|
|
1764
|
+
"name": "_reimbursementPool",
|
|
1765
|
+
"type": "address"
|
|
1664
1766
|
}
|
|
1665
1767
|
],
|
|
1666
|
-
"
|
|
1768
|
+
"name": "updateReimbursementPool",
|
|
1769
|
+
"outputs": [],
|
|
1770
|
+
"stateMutability": "nonpayable",
|
|
1771
|
+
"type": "function"
|
|
1667
1772
|
},
|
|
1668
1773
|
{
|
|
1669
|
-
"type": "function",
|
|
1670
|
-
"name": "updateRewardParameters",
|
|
1671
|
-
"constant": false,
|
|
1672
|
-
"payable": false,
|
|
1673
|
-
"gas": 29000000,
|
|
1674
1774
|
"inputs": [
|
|
1675
1775
|
{
|
|
1676
|
-
"
|
|
1677
|
-
"name": "maliciousDkgResultNotificationRewardMultiplier"
|
|
1776
|
+
"internalType": "uint256",
|
|
1777
|
+
"name": "maliciousDkgResultNotificationRewardMultiplier",
|
|
1778
|
+
"type": "uint256"
|
|
1678
1779
|
},
|
|
1679
1780
|
{
|
|
1680
|
-
"
|
|
1681
|
-
"name": "sortitionPoolRewardsBanDuration"
|
|
1781
|
+
"internalType": "uint256",
|
|
1782
|
+
"name": "sortitionPoolRewardsBanDuration",
|
|
1783
|
+
"type": "uint256"
|
|
1682
1784
|
}
|
|
1683
1785
|
],
|
|
1684
|
-
"
|
|
1786
|
+
"name": "updateRewardParameters",
|
|
1787
|
+
"outputs": [],
|
|
1788
|
+
"stateMutability": "nonpayable",
|
|
1789
|
+
"type": "function"
|
|
1685
1790
|
},
|
|
1686
1791
|
{
|
|
1687
|
-
"type": "function",
|
|
1688
|
-
"name": "updateSlashingParameters",
|
|
1689
|
-
"constant": false,
|
|
1690
|
-
"payable": false,
|
|
1691
|
-
"gas": 29000000,
|
|
1692
1792
|
"inputs": [
|
|
1693
1793
|
{
|
|
1694
|
-
"
|
|
1695
|
-
"name": "maliciousDkgResultSlashingAmount"
|
|
1794
|
+
"internalType": "uint96",
|
|
1795
|
+
"name": "maliciousDkgResultSlashingAmount",
|
|
1796
|
+
"type": "uint96"
|
|
1696
1797
|
}
|
|
1697
1798
|
],
|
|
1698
|
-
"
|
|
1799
|
+
"name": "updateSlashingParameters",
|
|
1800
|
+
"outputs": [],
|
|
1801
|
+
"stateMutability": "nonpayable",
|
|
1802
|
+
"type": "function"
|
|
1699
1803
|
},
|
|
1700
1804
|
{
|
|
1701
|
-
"type": "function",
|
|
1702
|
-
"name": "updateWalletOwner",
|
|
1703
|
-
"constant": false,
|
|
1704
|
-
"payable": false,
|
|
1705
|
-
"gas": 29000000,
|
|
1706
1805
|
"inputs": [
|
|
1707
1806
|
{
|
|
1708
|
-
"
|
|
1709
|
-
"name": "_walletOwner"
|
|
1807
|
+
"internalType": "contract IWalletOwner",
|
|
1808
|
+
"name": "_walletOwner",
|
|
1809
|
+
"type": "address"
|
|
1710
1810
|
}
|
|
1711
1811
|
],
|
|
1712
|
-
"
|
|
1812
|
+
"name": "updateWalletOwner",
|
|
1813
|
+
"outputs": [],
|
|
1814
|
+
"stateMutability": "nonpayable",
|
|
1815
|
+
"type": "function"
|
|
1713
1816
|
},
|
|
1714
1817
|
{
|
|
1715
|
-
"type": "function",
|
|
1716
|
-
"name": "upgradeRandomBeacon",
|
|
1717
|
-
"constant": false,
|
|
1718
|
-
"payable": false,
|
|
1719
|
-
"gas": 29000000,
|
|
1720
1818
|
"inputs": [
|
|
1721
1819
|
{
|
|
1722
|
-
"
|
|
1723
|
-
"name": "_randomBeacon"
|
|
1820
|
+
"internalType": "contract IRandomBeacon",
|
|
1821
|
+
"name": "_randomBeacon",
|
|
1822
|
+
"type": "address"
|
|
1724
1823
|
}
|
|
1725
1824
|
],
|
|
1726
|
-
"
|
|
1825
|
+
"name": "upgradeRandomBeacon",
|
|
1826
|
+
"outputs": [],
|
|
1827
|
+
"stateMutability": "nonpayable",
|
|
1828
|
+
"type": "function"
|
|
1727
1829
|
},
|
|
1728
1830
|
{
|
|
1729
|
-
"type": "function",
|
|
1730
|
-
"name": "walletOwner",
|
|
1731
|
-
"constant": true,
|
|
1732
|
-
"stateMutability": "view",
|
|
1733
|
-
"payable": false,
|
|
1734
|
-
"gas": 29000000,
|
|
1735
1831
|
"inputs": [],
|
|
1832
|
+
"name": "walletOwner",
|
|
1736
1833
|
"outputs": [
|
|
1737
1834
|
{
|
|
1835
|
+
"internalType": "contract IWalletOwner",
|
|
1836
|
+
"name": "",
|
|
1738
1837
|
"type": "address"
|
|
1739
1838
|
}
|
|
1740
|
-
]
|
|
1839
|
+
],
|
|
1840
|
+
"stateMutability": "view",
|
|
1841
|
+
"type": "function"
|
|
1741
1842
|
},
|
|
1742
1843
|
{
|
|
1743
|
-
"type": "function",
|
|
1744
|
-
"name": "withdrawIneligibleRewards",
|
|
1745
|
-
"constant": false,
|
|
1746
|
-
"payable": false,
|
|
1747
|
-
"gas": 29000000,
|
|
1748
1844
|
"inputs": [
|
|
1749
1845
|
{
|
|
1750
|
-
"
|
|
1751
|
-
"name": "recipient"
|
|
1846
|
+
"internalType": "address",
|
|
1847
|
+
"name": "recipient",
|
|
1848
|
+
"type": "address"
|
|
1752
1849
|
}
|
|
1753
1850
|
],
|
|
1754
|
-
"
|
|
1851
|
+
"name": "withdrawIneligibleRewards",
|
|
1852
|
+
"outputs": [],
|
|
1853
|
+
"stateMutability": "nonpayable",
|
|
1854
|
+
"type": "function"
|
|
1755
1855
|
},
|
|
1756
1856
|
{
|
|
1757
|
-
"type": "function",
|
|
1758
|
-
"name": "withdrawRewards",
|
|
1759
|
-
"constant": false,
|
|
1760
|
-
"payable": false,
|
|
1761
|
-
"gas": 29000000,
|
|
1762
1857
|
"inputs": [
|
|
1763
1858
|
{
|
|
1764
|
-
"
|
|
1765
|
-
"name": "stakingProvider"
|
|
1859
|
+
"internalType": "address",
|
|
1860
|
+
"name": "stakingProvider",
|
|
1861
|
+
"type": "address"
|
|
1766
1862
|
}
|
|
1767
1863
|
],
|
|
1768
|
-
"
|
|
1864
|
+
"name": "withdrawRewards",
|
|
1865
|
+
"outputs": [],
|
|
1866
|
+
"stateMutability": "nonpayable",
|
|
1867
|
+
"type": "function"
|
|
1769
1868
|
}
|
|
1770
1869
|
],
|
|
1771
|
-
"transactionHash": "
|
|
1870
|
+
"transactionHash": "0x5d84c277d620d53a7fb9120ae80ef7e95ef5914782ecf1dd19d57970cf836589",
|
|
1772
1871
|
"receipt": {
|
|
1773
1872
|
"to": null,
|
|
1774
1873
|
"from": "0x70997970C51812dc3A010C7d01b50e0d17dc79C8",
|
|
1775
|
-
"contractAddress": "
|
|
1874
|
+
"contractAddress": "0x55cb3b67D9E65F0Cf4eABCAC84564a1bE6E3b06A",
|
|
1776
1875
|
"transactionIndex": 0,
|
|
1777
1876
|
"gasUsed": "1031171",
|
|
1778
|
-
"logsBloom": "
|
|
1779
|
-
"blockHash": "
|
|
1780
|
-
"transactionHash": "
|
|
1877
|
+
"logsBloom": "0x00000000000000000001000000000000400000004000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002008000000000000800000000000000000000000000000000000000000000000000000000800000000000000000000000000010000000000000000000000000000000000000000080000000000000800000000000000000000000000080000400000000000000000000000000000000000000000020000000000000000000040000000000000400000000000000000000000000000000800000000800000000000000000000000000000000000000000000",
|
|
1878
|
+
"blockHash": "0x358d84c2dbac29bca1bb5aceb0129520147d284e978ea1246c2afd07a5328084",
|
|
1879
|
+
"transactionHash": "0x5d84c277d620d53a7fb9120ae80ef7e95ef5914782ecf1dd19d57970cf836589",
|
|
1781
1880
|
"logs": [
|
|
1782
1881
|
{
|
|
1783
1882
|
"transactionIndex": 0,
|
|
1784
|
-
"blockNumber":
|
|
1785
|
-
"transactionHash": "
|
|
1786
|
-
"address": "
|
|
1883
|
+
"blockNumber": 41,
|
|
1884
|
+
"transactionHash": "0x5d84c277d620d53a7fb9120ae80ef7e95ef5914782ecf1dd19d57970cf836589",
|
|
1885
|
+
"address": "0x55cb3b67D9E65F0Cf4eABCAC84564a1bE6E3b06A",
|
|
1787
1886
|
"topics": [
|
|
1788
1887
|
"0xbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b",
|
|
1789
|
-
"
|
|
1888
|
+
"0x000000000000000000000000ad5d57ad9bb17d34debb88566ab2f5db879cc46f"
|
|
1790
1889
|
],
|
|
1791
1890
|
"data": "0x",
|
|
1792
1891
|
"logIndex": 0,
|
|
1793
|
-
"blockHash": "
|
|
1892
|
+
"blockHash": "0x358d84c2dbac29bca1bb5aceb0129520147d284e978ea1246c2afd07a5328084"
|
|
1794
1893
|
},
|
|
1795
1894
|
{
|
|
1796
1895
|
"transactionIndex": 0,
|
|
1797
|
-
"blockNumber":
|
|
1798
|
-
"transactionHash": "
|
|
1799
|
-
"address": "
|
|
1896
|
+
"blockNumber": 41,
|
|
1897
|
+
"transactionHash": "0x5d84c277d620d53a7fb9120ae80ef7e95ef5914782ecf1dd19d57970cf836589",
|
|
1898
|
+
"address": "0x55cb3b67D9E65F0Cf4eABCAC84564a1bE6E3b06A",
|
|
1800
1899
|
"topics": [
|
|
1801
1900
|
"0x5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce80"
|
|
1802
1901
|
],
|
|
1803
1902
|
"data": "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000070997970c51812dc3a010c7d01b50e0d17dc79c8",
|
|
1804
1903
|
"logIndex": 1,
|
|
1805
|
-
"blockHash": "
|
|
1904
|
+
"blockHash": "0x358d84c2dbac29bca1bb5aceb0129520147d284e978ea1246c2afd07a5328084"
|
|
1806
1905
|
},
|
|
1807
1906
|
{
|
|
1808
1907
|
"transactionIndex": 0,
|
|
1809
|
-
"blockNumber":
|
|
1810
|
-
"transactionHash": "
|
|
1811
|
-
"address": "
|
|
1908
|
+
"blockNumber": 41,
|
|
1909
|
+
"transactionHash": "0x5d84c277d620d53a7fb9120ae80ef7e95ef5914782ecf1dd19d57970cf836589",
|
|
1910
|
+
"address": "0x55cb3b67D9E65F0Cf4eABCAC84564a1bE6E3b06A",
|
|
1812
1911
|
"topics": [
|
|
1813
1912
|
"0x7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498"
|
|
1814
1913
|
],
|
|
1815
1914
|
"data": "0x0000000000000000000000000000000000000000000000000000000000000001",
|
|
1816
1915
|
"logIndex": 2,
|
|
1817
|
-
"blockHash": "
|
|
1916
|
+
"blockHash": "0x358d84c2dbac29bca1bb5aceb0129520147d284e978ea1246c2afd07a5328084"
|
|
1818
1917
|
},
|
|
1819
1918
|
{
|
|
1820
1919
|
"transactionIndex": 0,
|
|
1821
|
-
"blockNumber":
|
|
1822
|
-
"transactionHash": "
|
|
1823
|
-
"address": "
|
|
1920
|
+
"blockNumber": 41,
|
|
1921
|
+
"transactionHash": "0x5d84c277d620d53a7fb9120ae80ef7e95ef5914782ecf1dd19d57970cf836589",
|
|
1922
|
+
"address": "0x55cb3b67D9E65F0Cf4eABCAC84564a1bE6E3b06A",
|
|
1824
1923
|
"topics": [
|
|
1825
1924
|
"0x7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f"
|
|
1826
1925
|
],
|
|
1827
|
-
"data": "
|
|
1926
|
+
"data": "0x0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000130a46b6e41db6e1e18fb9c759f223c459190e90",
|
|
1828
1927
|
"logIndex": 3,
|
|
1829
|
-
"blockHash": "
|
|
1928
|
+
"blockHash": "0x358d84c2dbac29bca1bb5aceb0129520147d284e978ea1246c2afd07a5328084"
|
|
1830
1929
|
}
|
|
1831
1930
|
],
|
|
1832
|
-
"blockNumber":
|
|
1931
|
+
"blockNumber": 41,
|
|
1833
1932
|
"cumulativeGasUsed": "1031171",
|
|
1834
1933
|
"status": 1,
|
|
1835
1934
|
"byzantium": true
|
|
1836
1935
|
},
|
|
1837
1936
|
"numDeployments": 1,
|
|
1838
1937
|
"libraries": {
|
|
1839
|
-
"EcdsaInactivity": "
|
|
1938
|
+
"EcdsaInactivity": "0xE5BD5bDC03371fB239956dbbF40bD185D6c2ea28"
|
|
1840
1939
|
},
|
|
1841
|
-
"implementation": "
|
|
1940
|
+
"implementation": "0xAd5d57aD9bB17d34Debb88566ab2F5dB879Cc46F",
|
|
1842
1941
|
"devdoc": "Contract deployed as upgradable proxy"
|
|
1843
1942
|
}
|