defi-state-querier 0.4.25__py3-none-any.whl → 0.4.27__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- defi_services/__init__.py +1 -1
- defi_services/abis/vault/lido/__init__.py +0 -0
- defi_services/abis/vault/lido/event_transfer_shares.py +8 -0
- defi_services/abis/vault/lido/lido_1inch_steth_dai_pool.py +1308 -0
- defi_services/abis/vault/lido/lido_accounting_oracle.py +1342 -0
- defi_services/abis/vault/lido/lido_add_allowed_recipient.py +96 -0
- defi_services/abis/vault/lido/lido_allowed_recipents_factory.py +303 -0
- defi_services/abis/vault/lido/lido_allowed_recipients_builder_multi_token_tooling.py +427 -0
- defi_services/abis/vault/lido/lido_allowed_recipients_builder_tooling.py +414 -0
- defi_services/abis/vault/lido/lido_allowed_recipients_factory_multi_token.py +369 -0
- defi_services/abis/vault/lido/lido_allowed_recipients_registry.py +654 -0
- defi_services/abis/vault/lido/lido_allowed_token_registry.py +397 -0
- defi_services/abis/vault/lido/lido_anchor_vault.py +599 -0
- defi_services/abis/vault/lido/lido_aragon_acl.py +755 -0
- defi_services/abis/vault/lido/lido_aragon_agent.py +984 -0
- defi_services/abis/vault/lido/lido_aragon_finance.py +1013 -0
- defi_services/abis/vault/lido/lido_aragon_pm.py +490 -0
- defi_services/abis/vault/lido/lido_aragon_token_manager.py +759 -0
- defi_services/abis/vault/lido/lido_aragon_voting.py +887 -0
- defi_services/abis/vault/lido/lido_balancer_wseth_eth_pool.py +1441 -0
- defi_services/abis/vault/lido/lido_burner.py +698 -0
- defi_services/abis/vault/lido/lido_curated_staking_module.py +1571 -0
- defi_services/abis/vault/lido/lido_curve_liquidity_farming_manager.py +113 -0
- defi_services/abis/vault/lido/lido_curve_liquidity_farming_pool.py +899 -0
- defi_services/abis/vault/lido/lido_curve_liquidity_farming_reward.py +666 -0
- defi_services/abis/vault/lido/lido_curve_steth_eth_gauge.py +967 -0
- defi_services/abis/vault/lido/lido_curve_steth_eth_pool.py +986 -0
- defi_services/abis/vault/lido/lido_dao.py +623 -0
- defi_services/abis/vault/lido/lido_dao_insurance_fund.py +283 -0
- defi_services/abis/vault/lido/lido_dao_token.py +590 -0
- defi_services/abis/vault/lido/lido_deposit_security_module.py +687 -0
- defi_services/abis/vault/lido/lido_early_stakes_airdrop.py +120 -0
- defi_services/abis/vault/lido/lido_easy_track.py +1108 -0
- defi_services/abis/vault/lido/lido_evem_script_executor.py +170 -0
- defi_services/abis/vault/lido/lido_execution_layer_rewards_vaults.py +170 -0
- defi_services/abis/vault/lido/lido_l1_executor.py +135 -0
- defi_services/abis/vault/lido/lido_l1_proxy_admin.py +155 -0
- defi_services/abis/vault/lido/lido_legacy_oracle.py +539 -0
- defi_services/abis/vault/lido/lido_liquidity_farming_pool.py +899 -0
- defi_services/abis/vault/lido/lido_locator.py +357 -0
- defi_services/abis/vault/lido/lido_mev_boost_relay_allowed_list.py +331 -0
- defi_services/abis/vault/lido/lido_multisigs.py +1037 -0
- defi_services/abis/vault/lido/lido_oracle_daemon_config.py +474 -0
- defi_services/abis/vault/lido/lido_oracle_report_sanity_checker.py +1327 -0
- defi_services/abis/vault/lido/lido_remove_allowed_recipient.py +91 -0
- defi_services/abis/vault/lido/lido_staking_router.py +2311 -0
- defi_services/abis/vault/lido/lido_steth.py +1604 -0
- defi_services/abis/vault/lido/lido_stonks.py +744 -0
- defi_services/abis/vault/lido/lido_sushi_wsteth_dai_pool.py +662 -0
- defi_services/abis/vault/lido/lido_token_brigde.py +735 -0
- defi_services/abis/vault/lido/lido_token_gateway.py +808 -0
- defi_services/abis/vault/lido/lido_token_reward_program.py +363 -0
- defi_services/abis/vault/lido/lido_top_up_allowed_recipients.py +150 -0
- defi_services/abis/vault/lido/lido_validators_exit_bus_oracle.py +1230 -0
- defi_services/abis/vault/lido/lido_validators_exit_bus_oracle_hash_consensus.py +1085 -0
- defi_services/abis/vault/lido/lido_voting_repo.py +434 -0
- defi_services/abis/vault/lido/lido_withdrawal_vault.py +121 -0
- defi_services/abis/vault/lido/lido_withdrawl_queue.py +2031 -0
- defi_services/abis/vault/lido/lido_wsteth.py +481 -0
- defi_services/abis/vault/lido/lidor_accounting_oracle_hash_consensus.py +1085 -0
- defi_services/jobs/processors/multi_state_processor.py +2 -2
- defi_services/jobs/processors/state_processor.py +2 -2
- defi_services/jobs/queriers/state_querier.py +4 -4
- defi_services/services/dex/pancakeswap_service.py +1 -1
- defi_services/services/dex/pancakeswap_v2_service.py +1 -1
- defi_services/services/dex/uniswap_v2_service.py +1 -1
- defi_services/services/dex/uniswap_v3_service.py +2 -2
- defi_services/services/lending/aave_v2_services.py +2 -2
- defi_services/services/lending/aave_v3_services.py +4 -4
- defi_services/services/lending/apeswap_services.py +3 -3
- defi_services/services/lending/compound_service.py +3 -3
- defi_services/services/lending/compound_v3_services.py +1 -1
- defi_services/services/lending/flux_services.py +3 -3
- defi_services/services/lending/granary_services.py +1 -1
- defi_services/services/lending/iron_bank_service.py +4 -4
- defi_services/services/lending/justlend_service.py +3 -3
- defi_services/services/lending/liqee_service.py +3 -3
- defi_services/services/lending/morpho_aave_v2_services.py +2 -2
- defi_services/services/lending/morpho_aave_v3_services.py +2 -2
- defi_services/services/lending/morpho_compound_services.py +5 -5
- defi_services/services/lending/onyx_service.py +4 -4
- defi_services/services/lending/silo_services.py +3 -3
- defi_services/services/lending/strike_service.py +3 -3
- defi_services/services/lending/trava_services.py +2 -2
- defi_services/services/lending/uwu_services.py +2 -2
- defi_services/services/lending/valas_services.py +1 -1
- defi_services/services/lending/venus_services.py +7 -7
- defi_services/services/lending/wepiggy_services.py +4 -4
- defi_services/services/token_services.py +1 -1
- defi_services/utils/convert_address.py +2 -2
- {defi_state_querier-0.4.25.dist-info → defi_state_querier-0.4.27.dist-info}/METADATA +1 -1
- {defi_state_querier-0.4.25.dist-info → defi_state_querier-0.4.27.dist-info}/RECORD +95 -36
- {defi_state_querier-0.4.25.dist-info → defi_state_querier-0.4.27.dist-info}/WHEEL +1 -1
- {defi_state_querier-0.4.25.dist-info → defi_state_querier-0.4.27.dist-info}/LICENSE +0 -0
- {defi_state_querier-0.4.25.dist-info → defi_state_querier-0.4.27.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,2031 @@
|
|
1
|
+
import json
|
2
|
+
|
3
|
+
LIDO_WITHDRAWAL_QUEUE_ABI = json.loads('''
|
4
|
+
[
|
5
|
+
{
|
6
|
+
"inputs": [
|
7
|
+
{
|
8
|
+
"internalType": "address",
|
9
|
+
"name": "_wstETH",
|
10
|
+
"type": "address"
|
11
|
+
},
|
12
|
+
{
|
13
|
+
"internalType": "string",
|
14
|
+
"name": "_name",
|
15
|
+
"type": "string"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"internalType": "string",
|
19
|
+
"name": "_symbol",
|
20
|
+
"type": "string"
|
21
|
+
}
|
22
|
+
],
|
23
|
+
"stateMutability": "nonpayable",
|
24
|
+
"type": "constructor"
|
25
|
+
},
|
26
|
+
{
|
27
|
+
"inputs": [],
|
28
|
+
"name": "AdminZeroAddress",
|
29
|
+
"type": "error"
|
30
|
+
},
|
31
|
+
{
|
32
|
+
"inputs": [],
|
33
|
+
"name": "ApprovalToOwner",
|
34
|
+
"type": "error"
|
35
|
+
},
|
36
|
+
{
|
37
|
+
"inputs": [],
|
38
|
+
"name": "ApproveToCaller",
|
39
|
+
"type": "error"
|
40
|
+
},
|
41
|
+
{
|
42
|
+
"inputs": [
|
43
|
+
{
|
44
|
+
"internalType": "uint256",
|
45
|
+
"name": "_firstArrayLength",
|
46
|
+
"type": "uint256"
|
47
|
+
},
|
48
|
+
{
|
49
|
+
"internalType": "uint256",
|
50
|
+
"name": "_secondArrayLength",
|
51
|
+
"type": "uint256"
|
52
|
+
}
|
53
|
+
],
|
54
|
+
"name": "ArraysLengthMismatch",
|
55
|
+
"type": "error"
|
56
|
+
},
|
57
|
+
{
|
58
|
+
"inputs": [],
|
59
|
+
"name": "BatchesAreNotSorted",
|
60
|
+
"type": "error"
|
61
|
+
},
|
62
|
+
{
|
63
|
+
"inputs": [],
|
64
|
+
"name": "CantSendValueRecipientMayHaveReverted",
|
65
|
+
"type": "error"
|
66
|
+
},
|
67
|
+
{
|
68
|
+
"inputs": [],
|
69
|
+
"name": "EmptyBatches",
|
70
|
+
"type": "error"
|
71
|
+
},
|
72
|
+
{
|
73
|
+
"inputs": [],
|
74
|
+
"name": "InvalidContractVersionIncrement",
|
75
|
+
"type": "error"
|
76
|
+
},
|
77
|
+
{
|
78
|
+
"inputs": [
|
79
|
+
{
|
80
|
+
"internalType": "uint256",
|
81
|
+
"name": "_hint",
|
82
|
+
"type": "uint256"
|
83
|
+
}
|
84
|
+
],
|
85
|
+
"name": "InvalidHint",
|
86
|
+
"type": "error"
|
87
|
+
},
|
88
|
+
{
|
89
|
+
"inputs": [
|
90
|
+
{
|
91
|
+
"internalType": "address",
|
92
|
+
"name": "",
|
93
|
+
"type": "address"
|
94
|
+
}
|
95
|
+
],
|
96
|
+
"name": "InvalidOwnerAddress",
|
97
|
+
"type": "error"
|
98
|
+
},
|
99
|
+
{
|
100
|
+
"inputs": [],
|
101
|
+
"name": "InvalidReportTimestamp",
|
102
|
+
"type": "error"
|
103
|
+
},
|
104
|
+
{
|
105
|
+
"inputs": [
|
106
|
+
{
|
107
|
+
"internalType": "uint256",
|
108
|
+
"name": "_requestId",
|
109
|
+
"type": "uint256"
|
110
|
+
}
|
111
|
+
],
|
112
|
+
"name": "InvalidRequestId",
|
113
|
+
"type": "error"
|
114
|
+
},
|
115
|
+
{
|
116
|
+
"inputs": [
|
117
|
+
{
|
118
|
+
"internalType": "uint256",
|
119
|
+
"name": "startId",
|
120
|
+
"type": "uint256"
|
121
|
+
},
|
122
|
+
{
|
123
|
+
"internalType": "uint256",
|
124
|
+
"name": "endId",
|
125
|
+
"type": "uint256"
|
126
|
+
}
|
127
|
+
],
|
128
|
+
"name": "InvalidRequestIdRange",
|
129
|
+
"type": "error"
|
130
|
+
},
|
131
|
+
{
|
132
|
+
"inputs": [],
|
133
|
+
"name": "InvalidState",
|
134
|
+
"type": "error"
|
135
|
+
},
|
136
|
+
{
|
137
|
+
"inputs": [],
|
138
|
+
"name": "NonZeroContractVersionOnInit",
|
139
|
+
"type": "error"
|
140
|
+
},
|
141
|
+
{
|
142
|
+
"inputs": [],
|
143
|
+
"name": "NotEnoughEther",
|
144
|
+
"type": "error"
|
145
|
+
},
|
146
|
+
{
|
147
|
+
"inputs": [
|
148
|
+
{
|
149
|
+
"internalType": "address",
|
150
|
+
"name": "_sender",
|
151
|
+
"type": "address"
|
152
|
+
},
|
153
|
+
{
|
154
|
+
"internalType": "address",
|
155
|
+
"name": "_owner",
|
156
|
+
"type": "address"
|
157
|
+
}
|
158
|
+
],
|
159
|
+
"name": "NotOwner",
|
160
|
+
"type": "error"
|
161
|
+
},
|
162
|
+
{
|
163
|
+
"inputs": [
|
164
|
+
{
|
165
|
+
"internalType": "address",
|
166
|
+
"name": "sender",
|
167
|
+
"type": "address"
|
168
|
+
}
|
169
|
+
],
|
170
|
+
"name": "NotOwnerOrApproved",
|
171
|
+
"type": "error"
|
172
|
+
},
|
173
|
+
{
|
174
|
+
"inputs": [
|
175
|
+
{
|
176
|
+
"internalType": "address",
|
177
|
+
"name": "sender",
|
178
|
+
"type": "address"
|
179
|
+
}
|
180
|
+
],
|
181
|
+
"name": "NotOwnerOrApprovedForAll",
|
182
|
+
"type": "error"
|
183
|
+
},
|
184
|
+
{
|
185
|
+
"inputs": [],
|
186
|
+
"name": "PauseUntilMustBeInFuture",
|
187
|
+
"type": "error"
|
188
|
+
},
|
189
|
+
{
|
190
|
+
"inputs": [],
|
191
|
+
"name": "PausedExpected",
|
192
|
+
"type": "error"
|
193
|
+
},
|
194
|
+
{
|
195
|
+
"inputs": [
|
196
|
+
{
|
197
|
+
"internalType": "uint256",
|
198
|
+
"name": "_requestId",
|
199
|
+
"type": "uint256"
|
200
|
+
}
|
201
|
+
],
|
202
|
+
"name": "RequestAlreadyClaimed",
|
203
|
+
"type": "error"
|
204
|
+
},
|
205
|
+
{
|
206
|
+
"inputs": [
|
207
|
+
{
|
208
|
+
"internalType": "uint256",
|
209
|
+
"name": "_amountOfStETH",
|
210
|
+
"type": "uint256"
|
211
|
+
}
|
212
|
+
],
|
213
|
+
"name": "RequestAmountTooLarge",
|
214
|
+
"type": "error"
|
215
|
+
},
|
216
|
+
{
|
217
|
+
"inputs": [
|
218
|
+
{
|
219
|
+
"internalType": "uint256",
|
220
|
+
"name": "_amountOfStETH",
|
221
|
+
"type": "uint256"
|
222
|
+
}
|
223
|
+
],
|
224
|
+
"name": "RequestAmountTooSmall",
|
225
|
+
"type": "error"
|
226
|
+
},
|
227
|
+
{
|
228
|
+
"inputs": [],
|
229
|
+
"name": "RequestIdsNotSorted",
|
230
|
+
"type": "error"
|
231
|
+
},
|
232
|
+
{
|
233
|
+
"inputs": [
|
234
|
+
{
|
235
|
+
"internalType": "uint256",
|
236
|
+
"name": "_requestId",
|
237
|
+
"type": "uint256"
|
238
|
+
}
|
239
|
+
],
|
240
|
+
"name": "RequestNotFoundOrNotFinalized",
|
241
|
+
"type": "error"
|
242
|
+
},
|
243
|
+
{
|
244
|
+
"inputs": [],
|
245
|
+
"name": "ResumedExpected",
|
246
|
+
"type": "error"
|
247
|
+
},
|
248
|
+
{
|
249
|
+
"inputs": [
|
250
|
+
{
|
251
|
+
"internalType": "string",
|
252
|
+
"name": "str",
|
253
|
+
"type": "string"
|
254
|
+
}
|
255
|
+
],
|
256
|
+
"name": "StringTooLong",
|
257
|
+
"type": "error"
|
258
|
+
},
|
259
|
+
{
|
260
|
+
"inputs": [
|
261
|
+
{
|
262
|
+
"internalType": "uint256",
|
263
|
+
"name": "sent",
|
264
|
+
"type": "uint256"
|
265
|
+
},
|
266
|
+
{
|
267
|
+
"internalType": "uint256",
|
268
|
+
"name": "maxExpected",
|
269
|
+
"type": "uint256"
|
270
|
+
}
|
271
|
+
],
|
272
|
+
"name": "TooMuchEtherToFinalize",
|
273
|
+
"type": "error"
|
274
|
+
},
|
275
|
+
{
|
276
|
+
"inputs": [
|
277
|
+
{
|
278
|
+
"internalType": "address",
|
279
|
+
"name": "from",
|
280
|
+
"type": "address"
|
281
|
+
},
|
282
|
+
{
|
283
|
+
"internalType": "address",
|
284
|
+
"name": "realOwner",
|
285
|
+
"type": "address"
|
286
|
+
}
|
287
|
+
],
|
288
|
+
"name": "TransferFromIncorrectOwner",
|
289
|
+
"type": "error"
|
290
|
+
},
|
291
|
+
{
|
292
|
+
"inputs": [],
|
293
|
+
"name": "TransferFromZeroAddress",
|
294
|
+
"type": "error"
|
295
|
+
},
|
296
|
+
{
|
297
|
+
"inputs": [
|
298
|
+
{
|
299
|
+
"internalType": "address",
|
300
|
+
"name": "",
|
301
|
+
"type": "address"
|
302
|
+
}
|
303
|
+
],
|
304
|
+
"name": "TransferToNonIERC721Receiver",
|
305
|
+
"type": "error"
|
306
|
+
},
|
307
|
+
{
|
308
|
+
"inputs": [],
|
309
|
+
"name": "TransferToThemselves",
|
310
|
+
"type": "error"
|
311
|
+
},
|
312
|
+
{
|
313
|
+
"inputs": [],
|
314
|
+
"name": "TransferToZeroAddress",
|
315
|
+
"type": "error"
|
316
|
+
},
|
317
|
+
{
|
318
|
+
"inputs": [
|
319
|
+
{
|
320
|
+
"internalType": "uint256",
|
321
|
+
"name": "expected",
|
322
|
+
"type": "uint256"
|
323
|
+
},
|
324
|
+
{
|
325
|
+
"internalType": "uint256",
|
326
|
+
"name": "received",
|
327
|
+
"type": "uint256"
|
328
|
+
}
|
329
|
+
],
|
330
|
+
"name": "UnexpectedContractVersion",
|
331
|
+
"type": "error"
|
332
|
+
},
|
333
|
+
{
|
334
|
+
"inputs": [],
|
335
|
+
"name": "ZeroAmountOfETH",
|
336
|
+
"type": "error"
|
337
|
+
},
|
338
|
+
{
|
339
|
+
"inputs": [],
|
340
|
+
"name": "ZeroMetadata",
|
341
|
+
"type": "error"
|
342
|
+
},
|
343
|
+
{
|
344
|
+
"inputs": [],
|
345
|
+
"name": "ZeroPauseDuration",
|
346
|
+
"type": "error"
|
347
|
+
},
|
348
|
+
{
|
349
|
+
"inputs": [],
|
350
|
+
"name": "ZeroRecipient",
|
351
|
+
"type": "error"
|
352
|
+
},
|
353
|
+
{
|
354
|
+
"inputs": [],
|
355
|
+
"name": "ZeroShareRate",
|
356
|
+
"type": "error"
|
357
|
+
},
|
358
|
+
{
|
359
|
+
"inputs": [],
|
360
|
+
"name": "ZeroTimestamp",
|
361
|
+
"type": "error"
|
362
|
+
},
|
363
|
+
{
|
364
|
+
"anonymous": false,
|
365
|
+
"inputs": [
|
366
|
+
{
|
367
|
+
"indexed": true,
|
368
|
+
"internalType": "address",
|
369
|
+
"name": "owner",
|
370
|
+
"type": "address"
|
371
|
+
},
|
372
|
+
{
|
373
|
+
"indexed": true,
|
374
|
+
"internalType": "address",
|
375
|
+
"name": "approved",
|
376
|
+
"type": "address"
|
377
|
+
},
|
378
|
+
{
|
379
|
+
"indexed": true,
|
380
|
+
"internalType": "uint256",
|
381
|
+
"name": "tokenId",
|
382
|
+
"type": "uint256"
|
383
|
+
}
|
384
|
+
],
|
385
|
+
"name": "Approval",
|
386
|
+
"type": "event"
|
387
|
+
},
|
388
|
+
{
|
389
|
+
"anonymous": false,
|
390
|
+
"inputs": [
|
391
|
+
{
|
392
|
+
"indexed": true,
|
393
|
+
"internalType": "address",
|
394
|
+
"name": "owner",
|
395
|
+
"type": "address"
|
396
|
+
},
|
397
|
+
{
|
398
|
+
"indexed": true,
|
399
|
+
"internalType": "address",
|
400
|
+
"name": "operator",
|
401
|
+
"type": "address"
|
402
|
+
},
|
403
|
+
{
|
404
|
+
"indexed": false,
|
405
|
+
"internalType": "bool",
|
406
|
+
"name": "approved",
|
407
|
+
"type": "bool"
|
408
|
+
}
|
409
|
+
],
|
410
|
+
"name": "ApprovalForAll",
|
411
|
+
"type": "event"
|
412
|
+
},
|
413
|
+
{
|
414
|
+
"anonymous": false,
|
415
|
+
"inputs": [
|
416
|
+
{
|
417
|
+
"indexed": false,
|
418
|
+
"internalType": "string",
|
419
|
+
"name": "baseURI",
|
420
|
+
"type": "string"
|
421
|
+
}
|
422
|
+
],
|
423
|
+
"name": "BaseURISet",
|
424
|
+
"type": "event"
|
425
|
+
},
|
426
|
+
{
|
427
|
+
"anonymous": false,
|
428
|
+
"inputs": [
|
429
|
+
{
|
430
|
+
"indexed": false,
|
431
|
+
"internalType": "uint256",
|
432
|
+
"name": "_fromTokenId",
|
433
|
+
"type": "uint256"
|
434
|
+
},
|
435
|
+
{
|
436
|
+
"indexed": false,
|
437
|
+
"internalType": "uint256",
|
438
|
+
"name": "_toTokenId",
|
439
|
+
"type": "uint256"
|
440
|
+
}
|
441
|
+
],
|
442
|
+
"name": "BatchMetadataUpdate",
|
443
|
+
"type": "event"
|
444
|
+
},
|
445
|
+
{
|
446
|
+
"anonymous": false,
|
447
|
+
"inputs": [],
|
448
|
+
"name": "BunkerModeDisabled",
|
449
|
+
"type": "event"
|
450
|
+
},
|
451
|
+
{
|
452
|
+
"anonymous": false,
|
453
|
+
"inputs": [
|
454
|
+
{
|
455
|
+
"indexed": false,
|
456
|
+
"internalType": "uint256",
|
457
|
+
"name": "_sinceTimestamp",
|
458
|
+
"type": "uint256"
|
459
|
+
}
|
460
|
+
],
|
461
|
+
"name": "BunkerModeEnabled",
|
462
|
+
"type": "event"
|
463
|
+
},
|
464
|
+
{
|
465
|
+
"anonymous": false,
|
466
|
+
"inputs": [
|
467
|
+
{
|
468
|
+
"indexed": false,
|
469
|
+
"internalType": "uint256",
|
470
|
+
"name": "version",
|
471
|
+
"type": "uint256"
|
472
|
+
}
|
473
|
+
],
|
474
|
+
"name": "ContractVersionSet",
|
475
|
+
"type": "event"
|
476
|
+
},
|
477
|
+
{
|
478
|
+
"anonymous": false,
|
479
|
+
"inputs": [
|
480
|
+
{
|
481
|
+
"indexed": false,
|
482
|
+
"internalType": "address",
|
483
|
+
"name": "_admin",
|
484
|
+
"type": "address"
|
485
|
+
}
|
486
|
+
],
|
487
|
+
"name": "InitializedV1",
|
488
|
+
"type": "event"
|
489
|
+
},
|
490
|
+
{
|
491
|
+
"anonymous": false,
|
492
|
+
"inputs": [
|
493
|
+
{
|
494
|
+
"indexed": false,
|
495
|
+
"internalType": "uint256",
|
496
|
+
"name": "_tokenId",
|
497
|
+
"type": "uint256"
|
498
|
+
}
|
499
|
+
],
|
500
|
+
"name": "MetadataUpdate",
|
501
|
+
"type": "event"
|
502
|
+
},
|
503
|
+
{
|
504
|
+
"anonymous": false,
|
505
|
+
"inputs": [
|
506
|
+
{
|
507
|
+
"indexed": false,
|
508
|
+
"internalType": "address",
|
509
|
+
"name": "nftDescriptorAddress",
|
510
|
+
"type": "address"
|
511
|
+
}
|
512
|
+
],
|
513
|
+
"name": "NftDescriptorAddressSet",
|
514
|
+
"type": "event"
|
515
|
+
},
|
516
|
+
{
|
517
|
+
"anonymous": false,
|
518
|
+
"inputs": [
|
519
|
+
{
|
520
|
+
"indexed": false,
|
521
|
+
"internalType": "uint256",
|
522
|
+
"name": "duration",
|
523
|
+
"type": "uint256"
|
524
|
+
}
|
525
|
+
],
|
526
|
+
"name": "Paused",
|
527
|
+
"type": "event"
|
528
|
+
},
|
529
|
+
{
|
530
|
+
"anonymous": false,
|
531
|
+
"inputs": [],
|
532
|
+
"name": "Resumed",
|
533
|
+
"type": "event"
|
534
|
+
},
|
535
|
+
{
|
536
|
+
"anonymous": false,
|
537
|
+
"inputs": [
|
538
|
+
{
|
539
|
+
"indexed": true,
|
540
|
+
"internalType": "bytes32",
|
541
|
+
"name": "role",
|
542
|
+
"type": "bytes32"
|
543
|
+
},
|
544
|
+
{
|
545
|
+
"indexed": true,
|
546
|
+
"internalType": "bytes32",
|
547
|
+
"name": "previousAdminRole",
|
548
|
+
"type": "bytes32"
|
549
|
+
},
|
550
|
+
{
|
551
|
+
"indexed": true,
|
552
|
+
"internalType": "bytes32",
|
553
|
+
"name": "newAdminRole",
|
554
|
+
"type": "bytes32"
|
555
|
+
}
|
556
|
+
],
|
557
|
+
"name": "RoleAdminChanged",
|
558
|
+
"type": "event"
|
559
|
+
},
|
560
|
+
{
|
561
|
+
"anonymous": false,
|
562
|
+
"inputs": [
|
563
|
+
{
|
564
|
+
"indexed": true,
|
565
|
+
"internalType": "bytes32",
|
566
|
+
"name": "role",
|
567
|
+
"type": "bytes32"
|
568
|
+
},
|
569
|
+
{
|
570
|
+
"indexed": true,
|
571
|
+
"internalType": "address",
|
572
|
+
"name": "account",
|
573
|
+
"type": "address"
|
574
|
+
},
|
575
|
+
{
|
576
|
+
"indexed": true,
|
577
|
+
"internalType": "address",
|
578
|
+
"name": "sender",
|
579
|
+
"type": "address"
|
580
|
+
}
|
581
|
+
],
|
582
|
+
"name": "RoleGranted",
|
583
|
+
"type": "event"
|
584
|
+
},
|
585
|
+
{
|
586
|
+
"anonymous": false,
|
587
|
+
"inputs": [
|
588
|
+
{
|
589
|
+
"indexed": true,
|
590
|
+
"internalType": "bytes32",
|
591
|
+
"name": "role",
|
592
|
+
"type": "bytes32"
|
593
|
+
},
|
594
|
+
{
|
595
|
+
"indexed": true,
|
596
|
+
"internalType": "address",
|
597
|
+
"name": "account",
|
598
|
+
"type": "address"
|
599
|
+
},
|
600
|
+
{
|
601
|
+
"indexed": true,
|
602
|
+
"internalType": "address",
|
603
|
+
"name": "sender",
|
604
|
+
"type": "address"
|
605
|
+
}
|
606
|
+
],
|
607
|
+
"name": "RoleRevoked",
|
608
|
+
"type": "event"
|
609
|
+
},
|
610
|
+
{
|
611
|
+
"anonymous": false,
|
612
|
+
"inputs": [
|
613
|
+
{
|
614
|
+
"indexed": true,
|
615
|
+
"internalType": "address",
|
616
|
+
"name": "from",
|
617
|
+
"type": "address"
|
618
|
+
},
|
619
|
+
{
|
620
|
+
"indexed": true,
|
621
|
+
"internalType": "address",
|
622
|
+
"name": "to",
|
623
|
+
"type": "address"
|
624
|
+
},
|
625
|
+
{
|
626
|
+
"indexed": true,
|
627
|
+
"internalType": "uint256",
|
628
|
+
"name": "tokenId",
|
629
|
+
"type": "uint256"
|
630
|
+
}
|
631
|
+
],
|
632
|
+
"name": "Transfer",
|
633
|
+
"type": "event"
|
634
|
+
},
|
635
|
+
{
|
636
|
+
"anonymous": false,
|
637
|
+
"inputs": [
|
638
|
+
{
|
639
|
+
"indexed": true,
|
640
|
+
"internalType": "uint256",
|
641
|
+
"name": "requestId",
|
642
|
+
"type": "uint256"
|
643
|
+
},
|
644
|
+
{
|
645
|
+
"indexed": true,
|
646
|
+
"internalType": "address",
|
647
|
+
"name": "owner",
|
648
|
+
"type": "address"
|
649
|
+
},
|
650
|
+
{
|
651
|
+
"indexed": true,
|
652
|
+
"internalType": "address",
|
653
|
+
"name": "receiver",
|
654
|
+
"type": "address"
|
655
|
+
},
|
656
|
+
{
|
657
|
+
"indexed": false,
|
658
|
+
"internalType": "uint256",
|
659
|
+
"name": "amountOfETH",
|
660
|
+
"type": "uint256"
|
661
|
+
}
|
662
|
+
],
|
663
|
+
"name": "WithdrawalClaimed",
|
664
|
+
"type": "event"
|
665
|
+
},
|
666
|
+
{
|
667
|
+
"anonymous": false,
|
668
|
+
"inputs": [
|
669
|
+
{
|
670
|
+
"indexed": true,
|
671
|
+
"internalType": "uint256",
|
672
|
+
"name": "requestId",
|
673
|
+
"type": "uint256"
|
674
|
+
},
|
675
|
+
{
|
676
|
+
"indexed": true,
|
677
|
+
"internalType": "address",
|
678
|
+
"name": "requestor",
|
679
|
+
"type": "address"
|
680
|
+
},
|
681
|
+
{
|
682
|
+
"indexed": true,
|
683
|
+
"internalType": "address",
|
684
|
+
"name": "owner",
|
685
|
+
"type": "address"
|
686
|
+
},
|
687
|
+
{
|
688
|
+
"indexed": false,
|
689
|
+
"internalType": "uint256",
|
690
|
+
"name": "amountOfStETH",
|
691
|
+
"type": "uint256"
|
692
|
+
},
|
693
|
+
{
|
694
|
+
"indexed": false,
|
695
|
+
"internalType": "uint256",
|
696
|
+
"name": "amountOfShares",
|
697
|
+
"type": "uint256"
|
698
|
+
}
|
699
|
+
],
|
700
|
+
"name": "WithdrawalRequested",
|
701
|
+
"type": "event"
|
702
|
+
},
|
703
|
+
{
|
704
|
+
"anonymous": false,
|
705
|
+
"inputs": [
|
706
|
+
{
|
707
|
+
"indexed": true,
|
708
|
+
"internalType": "uint256",
|
709
|
+
"name": "from",
|
710
|
+
"type": "uint256"
|
711
|
+
},
|
712
|
+
{
|
713
|
+
"indexed": true,
|
714
|
+
"internalType": "uint256",
|
715
|
+
"name": "to",
|
716
|
+
"type": "uint256"
|
717
|
+
},
|
718
|
+
{
|
719
|
+
"indexed": false,
|
720
|
+
"internalType": "uint256",
|
721
|
+
"name": "amountOfETHLocked",
|
722
|
+
"type": "uint256"
|
723
|
+
},
|
724
|
+
{
|
725
|
+
"indexed": false,
|
726
|
+
"internalType": "uint256",
|
727
|
+
"name": "sharesToBurn",
|
728
|
+
"type": "uint256"
|
729
|
+
},
|
730
|
+
{
|
731
|
+
"indexed": false,
|
732
|
+
"internalType": "uint256",
|
733
|
+
"name": "timestamp",
|
734
|
+
"type": "uint256"
|
735
|
+
}
|
736
|
+
],
|
737
|
+
"name": "WithdrawalsFinalized",
|
738
|
+
"type": "event"
|
739
|
+
},
|
740
|
+
{
|
741
|
+
"inputs": [],
|
742
|
+
"name": "BUNKER_MODE_DISABLED_TIMESTAMP",
|
743
|
+
"outputs": [
|
744
|
+
{
|
745
|
+
"internalType": "uint256",
|
746
|
+
"name": "",
|
747
|
+
"type": "uint256"
|
748
|
+
}
|
749
|
+
],
|
750
|
+
"stateMutability": "view",
|
751
|
+
"type": "function"
|
752
|
+
},
|
753
|
+
{
|
754
|
+
"inputs": [],
|
755
|
+
"name": "DEFAULT_ADMIN_ROLE",
|
756
|
+
"outputs": [
|
757
|
+
{
|
758
|
+
"internalType": "bytes32",
|
759
|
+
"name": "",
|
760
|
+
"type": "bytes32"
|
761
|
+
}
|
762
|
+
],
|
763
|
+
"stateMutability": "view",
|
764
|
+
"type": "function"
|
765
|
+
},
|
766
|
+
{
|
767
|
+
"inputs": [],
|
768
|
+
"name": "FINALIZE_ROLE",
|
769
|
+
"outputs": [
|
770
|
+
{
|
771
|
+
"internalType": "bytes32",
|
772
|
+
"name": "",
|
773
|
+
"type": "bytes32"
|
774
|
+
}
|
775
|
+
],
|
776
|
+
"stateMutability": "view",
|
777
|
+
"type": "function"
|
778
|
+
},
|
779
|
+
{
|
780
|
+
"inputs": [],
|
781
|
+
"name": "MANAGE_TOKEN_URI_ROLE",
|
782
|
+
"outputs": [
|
783
|
+
{
|
784
|
+
"internalType": "bytes32",
|
785
|
+
"name": "",
|
786
|
+
"type": "bytes32"
|
787
|
+
}
|
788
|
+
],
|
789
|
+
"stateMutability": "view",
|
790
|
+
"type": "function"
|
791
|
+
},
|
792
|
+
{
|
793
|
+
"inputs": [],
|
794
|
+
"name": "MAX_BATCHES_LENGTH",
|
795
|
+
"outputs": [
|
796
|
+
{
|
797
|
+
"internalType": "uint256",
|
798
|
+
"name": "",
|
799
|
+
"type": "uint256"
|
800
|
+
}
|
801
|
+
],
|
802
|
+
"stateMutability": "view",
|
803
|
+
"type": "function"
|
804
|
+
},
|
805
|
+
{
|
806
|
+
"inputs": [],
|
807
|
+
"name": "MAX_STETH_WITHDRAWAL_AMOUNT",
|
808
|
+
"outputs": [
|
809
|
+
{
|
810
|
+
"internalType": "uint256",
|
811
|
+
"name": "",
|
812
|
+
"type": "uint256"
|
813
|
+
}
|
814
|
+
],
|
815
|
+
"stateMutability": "view",
|
816
|
+
"type": "function"
|
817
|
+
},
|
818
|
+
{
|
819
|
+
"inputs": [],
|
820
|
+
"name": "MIN_STETH_WITHDRAWAL_AMOUNT",
|
821
|
+
"outputs": [
|
822
|
+
{
|
823
|
+
"internalType": "uint256",
|
824
|
+
"name": "",
|
825
|
+
"type": "uint256"
|
826
|
+
}
|
827
|
+
],
|
828
|
+
"stateMutability": "view",
|
829
|
+
"type": "function"
|
830
|
+
},
|
831
|
+
{
|
832
|
+
"inputs": [],
|
833
|
+
"name": "ORACLE_ROLE",
|
834
|
+
"outputs": [
|
835
|
+
{
|
836
|
+
"internalType": "bytes32",
|
837
|
+
"name": "",
|
838
|
+
"type": "bytes32"
|
839
|
+
}
|
840
|
+
],
|
841
|
+
"stateMutability": "view",
|
842
|
+
"type": "function"
|
843
|
+
},
|
844
|
+
{
|
845
|
+
"inputs": [],
|
846
|
+
"name": "PAUSE_INFINITELY",
|
847
|
+
"outputs": [
|
848
|
+
{
|
849
|
+
"internalType": "uint256",
|
850
|
+
"name": "",
|
851
|
+
"type": "uint256"
|
852
|
+
}
|
853
|
+
],
|
854
|
+
"stateMutability": "view",
|
855
|
+
"type": "function"
|
856
|
+
},
|
857
|
+
{
|
858
|
+
"inputs": [],
|
859
|
+
"name": "PAUSE_ROLE",
|
860
|
+
"outputs": [
|
861
|
+
{
|
862
|
+
"internalType": "bytes32",
|
863
|
+
"name": "",
|
864
|
+
"type": "bytes32"
|
865
|
+
}
|
866
|
+
],
|
867
|
+
"stateMutability": "view",
|
868
|
+
"type": "function"
|
869
|
+
},
|
870
|
+
{
|
871
|
+
"inputs": [],
|
872
|
+
"name": "RESUME_ROLE",
|
873
|
+
"outputs": [
|
874
|
+
{
|
875
|
+
"internalType": "bytes32",
|
876
|
+
"name": "",
|
877
|
+
"type": "bytes32"
|
878
|
+
}
|
879
|
+
],
|
880
|
+
"stateMutability": "view",
|
881
|
+
"type": "function"
|
882
|
+
},
|
883
|
+
{
|
884
|
+
"inputs": [],
|
885
|
+
"name": "STETH",
|
886
|
+
"outputs": [
|
887
|
+
{
|
888
|
+
"internalType": "contract IStETH",
|
889
|
+
"name": "",
|
890
|
+
"type": "address"
|
891
|
+
}
|
892
|
+
],
|
893
|
+
"stateMutability": "view",
|
894
|
+
"type": "function"
|
895
|
+
},
|
896
|
+
{
|
897
|
+
"inputs": [],
|
898
|
+
"name": "WSTETH",
|
899
|
+
"outputs": [
|
900
|
+
{
|
901
|
+
"internalType": "contract IWstETH",
|
902
|
+
"name": "",
|
903
|
+
"type": "address"
|
904
|
+
}
|
905
|
+
],
|
906
|
+
"stateMutability": "view",
|
907
|
+
"type": "function"
|
908
|
+
},
|
909
|
+
{
|
910
|
+
"inputs": [
|
911
|
+
{
|
912
|
+
"internalType": "address",
|
913
|
+
"name": "_to",
|
914
|
+
"type": "address"
|
915
|
+
},
|
916
|
+
{
|
917
|
+
"internalType": "uint256",
|
918
|
+
"name": "_requestId",
|
919
|
+
"type": "uint256"
|
920
|
+
}
|
921
|
+
],
|
922
|
+
"name": "approve",
|
923
|
+
"outputs": [],
|
924
|
+
"stateMutability": "nonpayable",
|
925
|
+
"type": "function"
|
926
|
+
},
|
927
|
+
{
|
928
|
+
"inputs": [
|
929
|
+
{
|
930
|
+
"internalType": "address",
|
931
|
+
"name": "_owner",
|
932
|
+
"type": "address"
|
933
|
+
}
|
934
|
+
],
|
935
|
+
"name": "balanceOf",
|
936
|
+
"outputs": [
|
937
|
+
{
|
938
|
+
"internalType": "uint256",
|
939
|
+
"name": "",
|
940
|
+
"type": "uint256"
|
941
|
+
}
|
942
|
+
],
|
943
|
+
"stateMutability": "view",
|
944
|
+
"type": "function"
|
945
|
+
},
|
946
|
+
{
|
947
|
+
"inputs": [],
|
948
|
+
"name": "bunkerModeSinceTimestamp",
|
949
|
+
"outputs": [
|
950
|
+
{
|
951
|
+
"internalType": "uint256",
|
952
|
+
"name": "",
|
953
|
+
"type": "uint256"
|
954
|
+
}
|
955
|
+
],
|
956
|
+
"stateMutability": "view",
|
957
|
+
"type": "function"
|
958
|
+
},
|
959
|
+
{
|
960
|
+
"inputs": [
|
961
|
+
{
|
962
|
+
"internalType": "uint256",
|
963
|
+
"name": "_maxShareRate",
|
964
|
+
"type": "uint256"
|
965
|
+
},
|
966
|
+
{
|
967
|
+
"internalType": "uint256",
|
968
|
+
"name": "_maxTimestamp",
|
969
|
+
"type": "uint256"
|
970
|
+
},
|
971
|
+
{
|
972
|
+
"internalType": "uint256",
|
973
|
+
"name": "_maxRequestsPerCall",
|
974
|
+
"type": "uint256"
|
975
|
+
},
|
976
|
+
{
|
977
|
+
"components": [
|
978
|
+
{
|
979
|
+
"internalType": "uint256",
|
980
|
+
"name": "remainingEthBudget",
|
981
|
+
"type": "uint256"
|
982
|
+
},
|
983
|
+
{
|
984
|
+
"internalType": "bool",
|
985
|
+
"name": "finished",
|
986
|
+
"type": "bool"
|
987
|
+
},
|
988
|
+
{
|
989
|
+
"internalType": "uint256[36]",
|
990
|
+
"name": "batches",
|
991
|
+
"type": "uint256[36]"
|
992
|
+
},
|
993
|
+
{
|
994
|
+
"internalType": "uint256",
|
995
|
+
"name": "batchesLength",
|
996
|
+
"type": "uint256"
|
997
|
+
}
|
998
|
+
],
|
999
|
+
"internalType": "struct WithdrawalQueueBase.BatchesCalculationState",
|
1000
|
+
"name": "_state",
|
1001
|
+
"type": "tuple"
|
1002
|
+
}
|
1003
|
+
],
|
1004
|
+
"name": "calculateFinalizationBatches",
|
1005
|
+
"outputs": [
|
1006
|
+
{
|
1007
|
+
"components": [
|
1008
|
+
{
|
1009
|
+
"internalType": "uint256",
|
1010
|
+
"name": "remainingEthBudget",
|
1011
|
+
"type": "uint256"
|
1012
|
+
},
|
1013
|
+
{
|
1014
|
+
"internalType": "bool",
|
1015
|
+
"name": "finished",
|
1016
|
+
"type": "bool"
|
1017
|
+
},
|
1018
|
+
{
|
1019
|
+
"internalType": "uint256[36]",
|
1020
|
+
"name": "batches",
|
1021
|
+
"type": "uint256[36]"
|
1022
|
+
},
|
1023
|
+
{
|
1024
|
+
"internalType": "uint256",
|
1025
|
+
"name": "batchesLength",
|
1026
|
+
"type": "uint256"
|
1027
|
+
}
|
1028
|
+
],
|
1029
|
+
"internalType": "struct WithdrawalQueueBase.BatchesCalculationState",
|
1030
|
+
"name": "",
|
1031
|
+
"type": "tuple"
|
1032
|
+
}
|
1033
|
+
],
|
1034
|
+
"stateMutability": "view",
|
1035
|
+
"type": "function"
|
1036
|
+
},
|
1037
|
+
{
|
1038
|
+
"inputs": [
|
1039
|
+
{
|
1040
|
+
"internalType": "uint256",
|
1041
|
+
"name": "_requestId",
|
1042
|
+
"type": "uint256"
|
1043
|
+
}
|
1044
|
+
],
|
1045
|
+
"name": "claimWithdrawal",
|
1046
|
+
"outputs": [],
|
1047
|
+
"stateMutability": "nonpayable",
|
1048
|
+
"type": "function"
|
1049
|
+
},
|
1050
|
+
{
|
1051
|
+
"inputs": [
|
1052
|
+
{
|
1053
|
+
"internalType": "uint256[]",
|
1054
|
+
"name": "_requestIds",
|
1055
|
+
"type": "uint256[]"
|
1056
|
+
},
|
1057
|
+
{
|
1058
|
+
"internalType": "uint256[]",
|
1059
|
+
"name": "_hints",
|
1060
|
+
"type": "uint256[]"
|
1061
|
+
}
|
1062
|
+
],
|
1063
|
+
"name": "claimWithdrawals",
|
1064
|
+
"outputs": [],
|
1065
|
+
"stateMutability": "nonpayable",
|
1066
|
+
"type": "function"
|
1067
|
+
},
|
1068
|
+
{
|
1069
|
+
"inputs": [
|
1070
|
+
{
|
1071
|
+
"internalType": "uint256[]",
|
1072
|
+
"name": "_requestIds",
|
1073
|
+
"type": "uint256[]"
|
1074
|
+
},
|
1075
|
+
{
|
1076
|
+
"internalType": "uint256[]",
|
1077
|
+
"name": "_hints",
|
1078
|
+
"type": "uint256[]"
|
1079
|
+
},
|
1080
|
+
{
|
1081
|
+
"internalType": "address",
|
1082
|
+
"name": "_recipient",
|
1083
|
+
"type": "address"
|
1084
|
+
}
|
1085
|
+
],
|
1086
|
+
"name": "claimWithdrawalsTo",
|
1087
|
+
"outputs": [],
|
1088
|
+
"stateMutability": "nonpayable",
|
1089
|
+
"type": "function"
|
1090
|
+
},
|
1091
|
+
{
|
1092
|
+
"inputs": [
|
1093
|
+
{
|
1094
|
+
"internalType": "uint256",
|
1095
|
+
"name": "_lastRequestIdToBeFinalized",
|
1096
|
+
"type": "uint256"
|
1097
|
+
},
|
1098
|
+
{
|
1099
|
+
"internalType": "uint256",
|
1100
|
+
"name": "_maxShareRate",
|
1101
|
+
"type": "uint256"
|
1102
|
+
}
|
1103
|
+
],
|
1104
|
+
"name": "finalize",
|
1105
|
+
"outputs": [],
|
1106
|
+
"stateMutability": "payable",
|
1107
|
+
"type": "function"
|
1108
|
+
},
|
1109
|
+
{
|
1110
|
+
"inputs": [
|
1111
|
+
{
|
1112
|
+
"internalType": "uint256[]",
|
1113
|
+
"name": "_requestIds",
|
1114
|
+
"type": "uint256[]"
|
1115
|
+
},
|
1116
|
+
{
|
1117
|
+
"internalType": "uint256",
|
1118
|
+
"name": "_firstIndex",
|
1119
|
+
"type": "uint256"
|
1120
|
+
},
|
1121
|
+
{
|
1122
|
+
"internalType": "uint256",
|
1123
|
+
"name": "_lastIndex",
|
1124
|
+
"type": "uint256"
|
1125
|
+
}
|
1126
|
+
],
|
1127
|
+
"name": "findCheckpointHints",
|
1128
|
+
"outputs": [
|
1129
|
+
{
|
1130
|
+
"internalType": "uint256[]",
|
1131
|
+
"name": "hintIds",
|
1132
|
+
"type": "uint256[]"
|
1133
|
+
}
|
1134
|
+
],
|
1135
|
+
"stateMutability": "view",
|
1136
|
+
"type": "function"
|
1137
|
+
},
|
1138
|
+
{
|
1139
|
+
"inputs": [
|
1140
|
+
{
|
1141
|
+
"internalType": "uint256",
|
1142
|
+
"name": "_requestId",
|
1143
|
+
"type": "uint256"
|
1144
|
+
}
|
1145
|
+
],
|
1146
|
+
"name": "getApproved",
|
1147
|
+
"outputs": [
|
1148
|
+
{
|
1149
|
+
"internalType": "address",
|
1150
|
+
"name": "",
|
1151
|
+
"type": "address"
|
1152
|
+
}
|
1153
|
+
],
|
1154
|
+
"stateMutability": "view",
|
1155
|
+
"type": "function"
|
1156
|
+
},
|
1157
|
+
{
|
1158
|
+
"inputs": [],
|
1159
|
+
"name": "getBaseURI",
|
1160
|
+
"outputs": [
|
1161
|
+
{
|
1162
|
+
"internalType": "string",
|
1163
|
+
"name": "",
|
1164
|
+
"type": "string"
|
1165
|
+
}
|
1166
|
+
],
|
1167
|
+
"stateMutability": "view",
|
1168
|
+
"type": "function"
|
1169
|
+
},
|
1170
|
+
{
|
1171
|
+
"inputs": [
|
1172
|
+
{
|
1173
|
+
"internalType": "uint256[]",
|
1174
|
+
"name": "_requestIds",
|
1175
|
+
"type": "uint256[]"
|
1176
|
+
},
|
1177
|
+
{
|
1178
|
+
"internalType": "uint256[]",
|
1179
|
+
"name": "_hints",
|
1180
|
+
"type": "uint256[]"
|
1181
|
+
}
|
1182
|
+
],
|
1183
|
+
"name": "getClaimableEther",
|
1184
|
+
"outputs": [
|
1185
|
+
{
|
1186
|
+
"internalType": "uint256[]",
|
1187
|
+
"name": "claimableEthValues",
|
1188
|
+
"type": "uint256[]"
|
1189
|
+
}
|
1190
|
+
],
|
1191
|
+
"stateMutability": "view",
|
1192
|
+
"type": "function"
|
1193
|
+
},
|
1194
|
+
{
|
1195
|
+
"inputs": [],
|
1196
|
+
"name": "getContractVersion",
|
1197
|
+
"outputs": [
|
1198
|
+
{
|
1199
|
+
"internalType": "uint256",
|
1200
|
+
"name": "",
|
1201
|
+
"type": "uint256"
|
1202
|
+
}
|
1203
|
+
],
|
1204
|
+
"stateMutability": "view",
|
1205
|
+
"type": "function"
|
1206
|
+
},
|
1207
|
+
{
|
1208
|
+
"inputs": [],
|
1209
|
+
"name": "getLastCheckpointIndex",
|
1210
|
+
"outputs": [
|
1211
|
+
{
|
1212
|
+
"internalType": "uint256",
|
1213
|
+
"name": "",
|
1214
|
+
"type": "uint256"
|
1215
|
+
}
|
1216
|
+
],
|
1217
|
+
"stateMutability": "view",
|
1218
|
+
"type": "function"
|
1219
|
+
},
|
1220
|
+
{
|
1221
|
+
"inputs": [],
|
1222
|
+
"name": "getLastFinalizedRequestId",
|
1223
|
+
"outputs": [
|
1224
|
+
{
|
1225
|
+
"internalType": "uint256",
|
1226
|
+
"name": "",
|
1227
|
+
"type": "uint256"
|
1228
|
+
}
|
1229
|
+
],
|
1230
|
+
"stateMutability": "view",
|
1231
|
+
"type": "function"
|
1232
|
+
},
|
1233
|
+
{
|
1234
|
+
"inputs": [],
|
1235
|
+
"name": "getLastRequestId",
|
1236
|
+
"outputs": [
|
1237
|
+
{
|
1238
|
+
"internalType": "uint256",
|
1239
|
+
"name": "",
|
1240
|
+
"type": "uint256"
|
1241
|
+
}
|
1242
|
+
],
|
1243
|
+
"stateMutability": "view",
|
1244
|
+
"type": "function"
|
1245
|
+
},
|
1246
|
+
{
|
1247
|
+
"inputs": [],
|
1248
|
+
"name": "getLockedEtherAmount",
|
1249
|
+
"outputs": [
|
1250
|
+
{
|
1251
|
+
"internalType": "uint256",
|
1252
|
+
"name": "",
|
1253
|
+
"type": "uint256"
|
1254
|
+
}
|
1255
|
+
],
|
1256
|
+
"stateMutability": "view",
|
1257
|
+
"type": "function"
|
1258
|
+
},
|
1259
|
+
{
|
1260
|
+
"inputs": [],
|
1261
|
+
"name": "getNFTDescriptorAddress",
|
1262
|
+
"outputs": [
|
1263
|
+
{
|
1264
|
+
"internalType": "address",
|
1265
|
+
"name": "",
|
1266
|
+
"type": "address"
|
1267
|
+
}
|
1268
|
+
],
|
1269
|
+
"stateMutability": "view",
|
1270
|
+
"type": "function"
|
1271
|
+
},
|
1272
|
+
{
|
1273
|
+
"inputs": [],
|
1274
|
+
"name": "getResumeSinceTimestamp",
|
1275
|
+
"outputs": [
|
1276
|
+
{
|
1277
|
+
"internalType": "uint256",
|
1278
|
+
"name": "",
|
1279
|
+
"type": "uint256"
|
1280
|
+
}
|
1281
|
+
],
|
1282
|
+
"stateMutability": "view",
|
1283
|
+
"type": "function"
|
1284
|
+
},
|
1285
|
+
{
|
1286
|
+
"inputs": [
|
1287
|
+
{
|
1288
|
+
"internalType": "bytes32",
|
1289
|
+
"name": "role",
|
1290
|
+
"type": "bytes32"
|
1291
|
+
}
|
1292
|
+
],
|
1293
|
+
"name": "getRoleAdmin",
|
1294
|
+
"outputs": [
|
1295
|
+
{
|
1296
|
+
"internalType": "bytes32",
|
1297
|
+
"name": "",
|
1298
|
+
"type": "bytes32"
|
1299
|
+
}
|
1300
|
+
],
|
1301
|
+
"stateMutability": "view",
|
1302
|
+
"type": "function"
|
1303
|
+
},
|
1304
|
+
{
|
1305
|
+
"inputs": [
|
1306
|
+
{
|
1307
|
+
"internalType": "bytes32",
|
1308
|
+
"name": "role",
|
1309
|
+
"type": "bytes32"
|
1310
|
+
},
|
1311
|
+
{
|
1312
|
+
"internalType": "uint256",
|
1313
|
+
"name": "index",
|
1314
|
+
"type": "uint256"
|
1315
|
+
}
|
1316
|
+
],
|
1317
|
+
"name": "getRoleMember",
|
1318
|
+
"outputs": [
|
1319
|
+
{
|
1320
|
+
"internalType": "address",
|
1321
|
+
"name": "",
|
1322
|
+
"type": "address"
|
1323
|
+
}
|
1324
|
+
],
|
1325
|
+
"stateMutability": "view",
|
1326
|
+
"type": "function"
|
1327
|
+
},
|
1328
|
+
{
|
1329
|
+
"inputs": [
|
1330
|
+
{
|
1331
|
+
"internalType": "bytes32",
|
1332
|
+
"name": "role",
|
1333
|
+
"type": "bytes32"
|
1334
|
+
}
|
1335
|
+
],
|
1336
|
+
"name": "getRoleMemberCount",
|
1337
|
+
"outputs": [
|
1338
|
+
{
|
1339
|
+
"internalType": "uint256",
|
1340
|
+
"name": "",
|
1341
|
+
"type": "uint256"
|
1342
|
+
}
|
1343
|
+
],
|
1344
|
+
"stateMutability": "view",
|
1345
|
+
"type": "function"
|
1346
|
+
},
|
1347
|
+
{
|
1348
|
+
"inputs": [
|
1349
|
+
{
|
1350
|
+
"internalType": "address",
|
1351
|
+
"name": "_owner",
|
1352
|
+
"type": "address"
|
1353
|
+
}
|
1354
|
+
],
|
1355
|
+
"name": "getWithdrawalRequests",
|
1356
|
+
"outputs": [
|
1357
|
+
{
|
1358
|
+
"internalType": "uint256[]",
|
1359
|
+
"name": "requestsIds",
|
1360
|
+
"type": "uint256[]"
|
1361
|
+
}
|
1362
|
+
],
|
1363
|
+
"stateMutability": "view",
|
1364
|
+
"type": "function"
|
1365
|
+
},
|
1366
|
+
{
|
1367
|
+
"inputs": [
|
1368
|
+
{
|
1369
|
+
"internalType": "uint256[]",
|
1370
|
+
"name": "_requestIds",
|
1371
|
+
"type": "uint256[]"
|
1372
|
+
}
|
1373
|
+
],
|
1374
|
+
"name": "getWithdrawalStatus",
|
1375
|
+
"outputs": [
|
1376
|
+
{
|
1377
|
+
"components": [
|
1378
|
+
{
|
1379
|
+
"internalType": "uint256",
|
1380
|
+
"name": "amountOfStETH",
|
1381
|
+
"type": "uint256"
|
1382
|
+
},
|
1383
|
+
{
|
1384
|
+
"internalType": "uint256",
|
1385
|
+
"name": "amountOfShares",
|
1386
|
+
"type": "uint256"
|
1387
|
+
},
|
1388
|
+
{
|
1389
|
+
"internalType": "address",
|
1390
|
+
"name": "owner",
|
1391
|
+
"type": "address"
|
1392
|
+
},
|
1393
|
+
{
|
1394
|
+
"internalType": "uint256",
|
1395
|
+
"name": "timestamp",
|
1396
|
+
"type": "uint256"
|
1397
|
+
},
|
1398
|
+
{
|
1399
|
+
"internalType": "bool",
|
1400
|
+
"name": "isFinalized",
|
1401
|
+
"type": "bool"
|
1402
|
+
},
|
1403
|
+
{
|
1404
|
+
"internalType": "bool",
|
1405
|
+
"name": "isClaimed",
|
1406
|
+
"type": "bool"
|
1407
|
+
}
|
1408
|
+
],
|
1409
|
+
"internalType": "struct WithdrawalQueueBase.WithdrawalRequestStatus[]",
|
1410
|
+
"name": "statuses",
|
1411
|
+
"type": "tuple[]"
|
1412
|
+
}
|
1413
|
+
],
|
1414
|
+
"stateMutability": "view",
|
1415
|
+
"type": "function"
|
1416
|
+
},
|
1417
|
+
{
|
1418
|
+
"inputs": [
|
1419
|
+
{
|
1420
|
+
"internalType": "bytes32",
|
1421
|
+
"name": "role",
|
1422
|
+
"type": "bytes32"
|
1423
|
+
},
|
1424
|
+
{
|
1425
|
+
"internalType": "address",
|
1426
|
+
"name": "account",
|
1427
|
+
"type": "address"
|
1428
|
+
}
|
1429
|
+
],
|
1430
|
+
"name": "grantRole",
|
1431
|
+
"outputs": [],
|
1432
|
+
"stateMutability": "nonpayable",
|
1433
|
+
"type": "function"
|
1434
|
+
},
|
1435
|
+
{
|
1436
|
+
"inputs": [
|
1437
|
+
{
|
1438
|
+
"internalType": "bytes32",
|
1439
|
+
"name": "role",
|
1440
|
+
"type": "bytes32"
|
1441
|
+
},
|
1442
|
+
{
|
1443
|
+
"internalType": "address",
|
1444
|
+
"name": "account",
|
1445
|
+
"type": "address"
|
1446
|
+
}
|
1447
|
+
],
|
1448
|
+
"name": "hasRole",
|
1449
|
+
"outputs": [
|
1450
|
+
{
|
1451
|
+
"internalType": "bool",
|
1452
|
+
"name": "",
|
1453
|
+
"type": "bool"
|
1454
|
+
}
|
1455
|
+
],
|
1456
|
+
"stateMutability": "view",
|
1457
|
+
"type": "function"
|
1458
|
+
},
|
1459
|
+
{
|
1460
|
+
"inputs": [
|
1461
|
+
{
|
1462
|
+
"internalType": "address",
|
1463
|
+
"name": "_admin",
|
1464
|
+
"type": "address"
|
1465
|
+
}
|
1466
|
+
],
|
1467
|
+
"name": "initialize",
|
1468
|
+
"outputs": [],
|
1469
|
+
"stateMutability": "nonpayable",
|
1470
|
+
"type": "function"
|
1471
|
+
},
|
1472
|
+
{
|
1473
|
+
"inputs": [
|
1474
|
+
{
|
1475
|
+
"internalType": "address",
|
1476
|
+
"name": "_owner",
|
1477
|
+
"type": "address"
|
1478
|
+
},
|
1479
|
+
{
|
1480
|
+
"internalType": "address",
|
1481
|
+
"name": "_operator",
|
1482
|
+
"type": "address"
|
1483
|
+
}
|
1484
|
+
],
|
1485
|
+
"name": "isApprovedForAll",
|
1486
|
+
"outputs": [
|
1487
|
+
{
|
1488
|
+
"internalType": "bool",
|
1489
|
+
"name": "",
|
1490
|
+
"type": "bool"
|
1491
|
+
}
|
1492
|
+
],
|
1493
|
+
"stateMutability": "view",
|
1494
|
+
"type": "function"
|
1495
|
+
},
|
1496
|
+
{
|
1497
|
+
"inputs": [],
|
1498
|
+
"name": "isBunkerModeActive",
|
1499
|
+
"outputs": [
|
1500
|
+
{
|
1501
|
+
"internalType": "bool",
|
1502
|
+
"name": "",
|
1503
|
+
"type": "bool"
|
1504
|
+
}
|
1505
|
+
],
|
1506
|
+
"stateMutability": "view",
|
1507
|
+
"type": "function"
|
1508
|
+
},
|
1509
|
+
{
|
1510
|
+
"inputs": [],
|
1511
|
+
"name": "isPaused",
|
1512
|
+
"outputs": [
|
1513
|
+
{
|
1514
|
+
"internalType": "bool",
|
1515
|
+
"name": "",
|
1516
|
+
"type": "bool"
|
1517
|
+
}
|
1518
|
+
],
|
1519
|
+
"stateMutability": "view",
|
1520
|
+
"type": "function"
|
1521
|
+
},
|
1522
|
+
{
|
1523
|
+
"inputs": [],
|
1524
|
+
"name": "name",
|
1525
|
+
"outputs": [
|
1526
|
+
{
|
1527
|
+
"internalType": "string",
|
1528
|
+
"name": "",
|
1529
|
+
"type": "string"
|
1530
|
+
}
|
1531
|
+
],
|
1532
|
+
"stateMutability": "view",
|
1533
|
+
"type": "function"
|
1534
|
+
},
|
1535
|
+
{
|
1536
|
+
"inputs": [
|
1537
|
+
{
|
1538
|
+
"internalType": "bool",
|
1539
|
+
"name": "_isBunkerModeNow",
|
1540
|
+
"type": "bool"
|
1541
|
+
},
|
1542
|
+
{
|
1543
|
+
"internalType": "uint256",
|
1544
|
+
"name": "_bunkerStartTimestamp",
|
1545
|
+
"type": "uint256"
|
1546
|
+
},
|
1547
|
+
{
|
1548
|
+
"internalType": "uint256",
|
1549
|
+
"name": "_currentReportTimestamp",
|
1550
|
+
"type": "uint256"
|
1551
|
+
}
|
1552
|
+
],
|
1553
|
+
"name": "onOracleReport",
|
1554
|
+
"outputs": [],
|
1555
|
+
"stateMutability": "nonpayable",
|
1556
|
+
"type": "function"
|
1557
|
+
},
|
1558
|
+
{
|
1559
|
+
"inputs": [
|
1560
|
+
{
|
1561
|
+
"internalType": "uint256",
|
1562
|
+
"name": "_requestId",
|
1563
|
+
"type": "uint256"
|
1564
|
+
}
|
1565
|
+
],
|
1566
|
+
"name": "ownerOf",
|
1567
|
+
"outputs": [
|
1568
|
+
{
|
1569
|
+
"internalType": "address",
|
1570
|
+
"name": "",
|
1571
|
+
"type": "address"
|
1572
|
+
}
|
1573
|
+
],
|
1574
|
+
"stateMutability": "view",
|
1575
|
+
"type": "function"
|
1576
|
+
},
|
1577
|
+
{
|
1578
|
+
"inputs": [
|
1579
|
+
{
|
1580
|
+
"internalType": "uint256",
|
1581
|
+
"name": "_duration",
|
1582
|
+
"type": "uint256"
|
1583
|
+
}
|
1584
|
+
],
|
1585
|
+
"name": "pauseFor",
|
1586
|
+
"outputs": [],
|
1587
|
+
"stateMutability": "nonpayable",
|
1588
|
+
"type": "function"
|
1589
|
+
},
|
1590
|
+
{
|
1591
|
+
"inputs": [
|
1592
|
+
{
|
1593
|
+
"internalType": "uint256",
|
1594
|
+
"name": "_pauseUntilInclusive",
|
1595
|
+
"type": "uint256"
|
1596
|
+
}
|
1597
|
+
],
|
1598
|
+
"name": "pauseUntil",
|
1599
|
+
"outputs": [],
|
1600
|
+
"stateMutability": "nonpayable",
|
1601
|
+
"type": "function"
|
1602
|
+
},
|
1603
|
+
{
|
1604
|
+
"inputs": [
|
1605
|
+
{
|
1606
|
+
"internalType": "uint256[]",
|
1607
|
+
"name": "_batches",
|
1608
|
+
"type": "uint256[]"
|
1609
|
+
},
|
1610
|
+
{
|
1611
|
+
"internalType": "uint256",
|
1612
|
+
"name": "_maxShareRate",
|
1613
|
+
"type": "uint256"
|
1614
|
+
}
|
1615
|
+
],
|
1616
|
+
"name": "prefinalize",
|
1617
|
+
"outputs": [
|
1618
|
+
{
|
1619
|
+
"internalType": "uint256",
|
1620
|
+
"name": "ethToLock",
|
1621
|
+
"type": "uint256"
|
1622
|
+
},
|
1623
|
+
{
|
1624
|
+
"internalType": "uint256",
|
1625
|
+
"name": "sharesToBurn",
|
1626
|
+
"type": "uint256"
|
1627
|
+
}
|
1628
|
+
],
|
1629
|
+
"stateMutability": "view",
|
1630
|
+
"type": "function"
|
1631
|
+
},
|
1632
|
+
{
|
1633
|
+
"inputs": [
|
1634
|
+
{
|
1635
|
+
"internalType": "bytes32",
|
1636
|
+
"name": "role",
|
1637
|
+
"type": "bytes32"
|
1638
|
+
},
|
1639
|
+
{
|
1640
|
+
"internalType": "address",
|
1641
|
+
"name": "account",
|
1642
|
+
"type": "address"
|
1643
|
+
}
|
1644
|
+
],
|
1645
|
+
"name": "renounceRole",
|
1646
|
+
"outputs": [],
|
1647
|
+
"stateMutability": "nonpayable",
|
1648
|
+
"type": "function"
|
1649
|
+
},
|
1650
|
+
{
|
1651
|
+
"inputs": [
|
1652
|
+
{
|
1653
|
+
"internalType": "uint256[]",
|
1654
|
+
"name": "_amounts",
|
1655
|
+
"type": "uint256[]"
|
1656
|
+
},
|
1657
|
+
{
|
1658
|
+
"internalType": "address",
|
1659
|
+
"name": "_owner",
|
1660
|
+
"type": "address"
|
1661
|
+
}
|
1662
|
+
],
|
1663
|
+
"name": "requestWithdrawals",
|
1664
|
+
"outputs": [
|
1665
|
+
{
|
1666
|
+
"internalType": "uint256[]",
|
1667
|
+
"name": "requestIds",
|
1668
|
+
"type": "uint256[]"
|
1669
|
+
}
|
1670
|
+
],
|
1671
|
+
"stateMutability": "nonpayable",
|
1672
|
+
"type": "function"
|
1673
|
+
},
|
1674
|
+
{
|
1675
|
+
"inputs": [
|
1676
|
+
{
|
1677
|
+
"internalType": "uint256[]",
|
1678
|
+
"name": "_amounts",
|
1679
|
+
"type": "uint256[]"
|
1680
|
+
},
|
1681
|
+
{
|
1682
|
+
"internalType": "address",
|
1683
|
+
"name": "_owner",
|
1684
|
+
"type": "address"
|
1685
|
+
},
|
1686
|
+
{
|
1687
|
+
"components": [
|
1688
|
+
{
|
1689
|
+
"internalType": "uint256",
|
1690
|
+
"name": "value",
|
1691
|
+
"type": "uint256"
|
1692
|
+
},
|
1693
|
+
{
|
1694
|
+
"internalType": "uint256",
|
1695
|
+
"name": "deadline",
|
1696
|
+
"type": "uint256"
|
1697
|
+
},
|
1698
|
+
{
|
1699
|
+
"internalType": "uint8",
|
1700
|
+
"name": "v",
|
1701
|
+
"type": "uint8"
|
1702
|
+
},
|
1703
|
+
{
|
1704
|
+
"internalType": "bytes32",
|
1705
|
+
"name": "r",
|
1706
|
+
"type": "bytes32"
|
1707
|
+
},
|
1708
|
+
{
|
1709
|
+
"internalType": "bytes32",
|
1710
|
+
"name": "s",
|
1711
|
+
"type": "bytes32"
|
1712
|
+
}
|
1713
|
+
],
|
1714
|
+
"internalType": "struct WithdrawalQueue.PermitInput",
|
1715
|
+
"name": "_permit",
|
1716
|
+
"type": "tuple"
|
1717
|
+
}
|
1718
|
+
],
|
1719
|
+
"name": "requestWithdrawalsWithPermit",
|
1720
|
+
"outputs": [
|
1721
|
+
{
|
1722
|
+
"internalType": "uint256[]",
|
1723
|
+
"name": "requestIds",
|
1724
|
+
"type": "uint256[]"
|
1725
|
+
}
|
1726
|
+
],
|
1727
|
+
"stateMutability": "nonpayable",
|
1728
|
+
"type": "function"
|
1729
|
+
},
|
1730
|
+
{
|
1731
|
+
"inputs": [
|
1732
|
+
{
|
1733
|
+
"internalType": "uint256[]",
|
1734
|
+
"name": "_amounts",
|
1735
|
+
"type": "uint256[]"
|
1736
|
+
},
|
1737
|
+
{
|
1738
|
+
"internalType": "address",
|
1739
|
+
"name": "_owner",
|
1740
|
+
"type": "address"
|
1741
|
+
}
|
1742
|
+
],
|
1743
|
+
"name": "requestWithdrawalsWstETH",
|
1744
|
+
"outputs": [
|
1745
|
+
{
|
1746
|
+
"internalType": "uint256[]",
|
1747
|
+
"name": "requestIds",
|
1748
|
+
"type": "uint256[]"
|
1749
|
+
}
|
1750
|
+
],
|
1751
|
+
"stateMutability": "nonpayable",
|
1752
|
+
"type": "function"
|
1753
|
+
},
|
1754
|
+
{
|
1755
|
+
"inputs": [
|
1756
|
+
{
|
1757
|
+
"internalType": "uint256[]",
|
1758
|
+
"name": "_amounts",
|
1759
|
+
"type": "uint256[]"
|
1760
|
+
},
|
1761
|
+
{
|
1762
|
+
"internalType": "address",
|
1763
|
+
"name": "_owner",
|
1764
|
+
"type": "address"
|
1765
|
+
},
|
1766
|
+
{
|
1767
|
+
"components": [
|
1768
|
+
{
|
1769
|
+
"internalType": "uint256",
|
1770
|
+
"name": "value",
|
1771
|
+
"type": "uint256"
|
1772
|
+
},
|
1773
|
+
{
|
1774
|
+
"internalType": "uint256",
|
1775
|
+
"name": "deadline",
|
1776
|
+
"type": "uint256"
|
1777
|
+
},
|
1778
|
+
{
|
1779
|
+
"internalType": "uint8",
|
1780
|
+
"name": "v",
|
1781
|
+
"type": "uint8"
|
1782
|
+
},
|
1783
|
+
{
|
1784
|
+
"internalType": "bytes32",
|
1785
|
+
"name": "r",
|
1786
|
+
"type": "bytes32"
|
1787
|
+
},
|
1788
|
+
{
|
1789
|
+
"internalType": "bytes32",
|
1790
|
+
"name": "s",
|
1791
|
+
"type": "bytes32"
|
1792
|
+
}
|
1793
|
+
],
|
1794
|
+
"internalType": "struct WithdrawalQueue.PermitInput",
|
1795
|
+
"name": "_permit",
|
1796
|
+
"type": "tuple"
|
1797
|
+
}
|
1798
|
+
],
|
1799
|
+
"name": "requestWithdrawalsWstETHWithPermit",
|
1800
|
+
"outputs": [
|
1801
|
+
{
|
1802
|
+
"internalType": "uint256[]",
|
1803
|
+
"name": "requestIds",
|
1804
|
+
"type": "uint256[]"
|
1805
|
+
}
|
1806
|
+
],
|
1807
|
+
"stateMutability": "nonpayable",
|
1808
|
+
"type": "function"
|
1809
|
+
},
|
1810
|
+
{
|
1811
|
+
"inputs": [],
|
1812
|
+
"name": "resume",
|
1813
|
+
"outputs": [],
|
1814
|
+
"stateMutability": "nonpayable",
|
1815
|
+
"type": "function"
|
1816
|
+
},
|
1817
|
+
{
|
1818
|
+
"inputs": [
|
1819
|
+
{
|
1820
|
+
"internalType": "bytes32",
|
1821
|
+
"name": "role",
|
1822
|
+
"type": "bytes32"
|
1823
|
+
},
|
1824
|
+
{
|
1825
|
+
"internalType": "address",
|
1826
|
+
"name": "account",
|
1827
|
+
"type": "address"
|
1828
|
+
}
|
1829
|
+
],
|
1830
|
+
"name": "revokeRole",
|
1831
|
+
"outputs": [],
|
1832
|
+
"stateMutability": "nonpayable",
|
1833
|
+
"type": "function"
|
1834
|
+
},
|
1835
|
+
{
|
1836
|
+
"inputs": [
|
1837
|
+
{
|
1838
|
+
"internalType": "address",
|
1839
|
+
"name": "_from",
|
1840
|
+
"type": "address"
|
1841
|
+
},
|
1842
|
+
{
|
1843
|
+
"internalType": "address",
|
1844
|
+
"name": "_to",
|
1845
|
+
"type": "address"
|
1846
|
+
},
|
1847
|
+
{
|
1848
|
+
"internalType": "uint256",
|
1849
|
+
"name": "_requestId",
|
1850
|
+
"type": "uint256"
|
1851
|
+
}
|
1852
|
+
],
|
1853
|
+
"name": "safeTransferFrom",
|
1854
|
+
"outputs": [],
|
1855
|
+
"stateMutability": "nonpayable",
|
1856
|
+
"type": "function"
|
1857
|
+
},
|
1858
|
+
{
|
1859
|
+
"inputs": [
|
1860
|
+
{
|
1861
|
+
"internalType": "address",
|
1862
|
+
"name": "_from",
|
1863
|
+
"type": "address"
|
1864
|
+
},
|
1865
|
+
{
|
1866
|
+
"internalType": "address",
|
1867
|
+
"name": "_to",
|
1868
|
+
"type": "address"
|
1869
|
+
},
|
1870
|
+
{
|
1871
|
+
"internalType": "uint256",
|
1872
|
+
"name": "_requestId",
|
1873
|
+
"type": "uint256"
|
1874
|
+
},
|
1875
|
+
{
|
1876
|
+
"internalType": "bytes",
|
1877
|
+
"name": "_data",
|
1878
|
+
"type": "bytes"
|
1879
|
+
}
|
1880
|
+
],
|
1881
|
+
"name": "safeTransferFrom",
|
1882
|
+
"outputs": [],
|
1883
|
+
"stateMutability": "nonpayable",
|
1884
|
+
"type": "function"
|
1885
|
+
},
|
1886
|
+
{
|
1887
|
+
"inputs": [
|
1888
|
+
{
|
1889
|
+
"internalType": "address",
|
1890
|
+
"name": "_operator",
|
1891
|
+
"type": "address"
|
1892
|
+
},
|
1893
|
+
{
|
1894
|
+
"internalType": "bool",
|
1895
|
+
"name": "_approved",
|
1896
|
+
"type": "bool"
|
1897
|
+
}
|
1898
|
+
],
|
1899
|
+
"name": "setApprovalForAll",
|
1900
|
+
"outputs": [],
|
1901
|
+
"stateMutability": "nonpayable",
|
1902
|
+
"type": "function"
|
1903
|
+
},
|
1904
|
+
{
|
1905
|
+
"inputs": [
|
1906
|
+
{
|
1907
|
+
"internalType": "string",
|
1908
|
+
"name": "_baseURI",
|
1909
|
+
"type": "string"
|
1910
|
+
}
|
1911
|
+
],
|
1912
|
+
"name": "setBaseURI",
|
1913
|
+
"outputs": [],
|
1914
|
+
"stateMutability": "nonpayable",
|
1915
|
+
"type": "function"
|
1916
|
+
},
|
1917
|
+
{
|
1918
|
+
"inputs": [
|
1919
|
+
{
|
1920
|
+
"internalType": "address",
|
1921
|
+
"name": "_nftDescriptorAddress",
|
1922
|
+
"type": "address"
|
1923
|
+
}
|
1924
|
+
],
|
1925
|
+
"name": "setNFTDescriptorAddress",
|
1926
|
+
"outputs": [],
|
1927
|
+
"stateMutability": "nonpayable",
|
1928
|
+
"type": "function"
|
1929
|
+
},
|
1930
|
+
{
|
1931
|
+
"inputs": [
|
1932
|
+
{
|
1933
|
+
"internalType": "bytes4",
|
1934
|
+
"name": "interfaceId",
|
1935
|
+
"type": "bytes4"
|
1936
|
+
}
|
1937
|
+
],
|
1938
|
+
"name": "supportsInterface",
|
1939
|
+
"outputs": [
|
1940
|
+
{
|
1941
|
+
"internalType": "bool",
|
1942
|
+
"name": "",
|
1943
|
+
"type": "bool"
|
1944
|
+
}
|
1945
|
+
],
|
1946
|
+
"stateMutability": "view",
|
1947
|
+
"type": "function"
|
1948
|
+
},
|
1949
|
+
{
|
1950
|
+
"inputs": [],
|
1951
|
+
"name": "symbol",
|
1952
|
+
"outputs": [
|
1953
|
+
{
|
1954
|
+
"internalType": "string",
|
1955
|
+
"name": "",
|
1956
|
+
"type": "string"
|
1957
|
+
}
|
1958
|
+
],
|
1959
|
+
"stateMutability": "view",
|
1960
|
+
"type": "function"
|
1961
|
+
},
|
1962
|
+
{
|
1963
|
+
"inputs": [
|
1964
|
+
{
|
1965
|
+
"internalType": "uint256",
|
1966
|
+
"name": "_requestId",
|
1967
|
+
"type": "uint256"
|
1968
|
+
}
|
1969
|
+
],
|
1970
|
+
"name": "tokenURI",
|
1971
|
+
"outputs": [
|
1972
|
+
{
|
1973
|
+
"internalType": "string",
|
1974
|
+
"name": "",
|
1975
|
+
"type": "string"
|
1976
|
+
}
|
1977
|
+
],
|
1978
|
+
"stateMutability": "view",
|
1979
|
+
"type": "function"
|
1980
|
+
},
|
1981
|
+
{
|
1982
|
+
"inputs": [
|
1983
|
+
{
|
1984
|
+
"internalType": "address",
|
1985
|
+
"name": "_from",
|
1986
|
+
"type": "address"
|
1987
|
+
},
|
1988
|
+
{
|
1989
|
+
"internalType": "address",
|
1990
|
+
"name": "_to",
|
1991
|
+
"type": "address"
|
1992
|
+
},
|
1993
|
+
{
|
1994
|
+
"internalType": "uint256",
|
1995
|
+
"name": "_requestId",
|
1996
|
+
"type": "uint256"
|
1997
|
+
}
|
1998
|
+
],
|
1999
|
+
"name": "transferFrom",
|
2000
|
+
"outputs": [],
|
2001
|
+
"stateMutability": "nonpayable",
|
2002
|
+
"type": "function"
|
2003
|
+
},
|
2004
|
+
{
|
2005
|
+
"inputs": [],
|
2006
|
+
"name": "unfinalizedRequestNumber",
|
2007
|
+
"outputs": [
|
2008
|
+
{
|
2009
|
+
"internalType": "uint256",
|
2010
|
+
"name": "",
|
2011
|
+
"type": "uint256"
|
2012
|
+
}
|
2013
|
+
],
|
2014
|
+
"stateMutability": "view",
|
2015
|
+
"type": "function"
|
2016
|
+
},
|
2017
|
+
{
|
2018
|
+
"inputs": [],
|
2019
|
+
"name": "unfinalizedStETH",
|
2020
|
+
"outputs": [
|
2021
|
+
{
|
2022
|
+
"internalType": "uint256",
|
2023
|
+
"name": "",
|
2024
|
+
"type": "uint256"
|
2025
|
+
}
|
2026
|
+
],
|
2027
|
+
"stateMutability": "view",
|
2028
|
+
"type": "function"
|
2029
|
+
}
|
2030
|
+
]
|
2031
|
+
''')
|