@web3dotorg/evm-slc-core-sdk 0.3.12 → 0.3.13

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.
Files changed (30) hide show
  1. package/abi/ExecutorsRegistry.json +1123 -0
  2. package/abi/Governance.json +2351 -0
  3. package/abi/IExecutorsRegistry.json +357 -0
  4. package/abi/IGovernance.json +133 -0
  5. package/abi/INeutralsRegistry.json +504 -0
  6. package/abi/IQParameters.json +78 -0
  7. package/abi/ISLCCore.json +207 -0
  8. package/abi/ISLCCoreFactory.json +174 -0
  9. package/abi/IWrappedToken.json +198 -0
  10. package/abi/NeutralsRegistry.json +1446 -0
  11. package/abi/ParameterRegistry.json +765 -0
  12. package/abi/SLCCore.json +307 -0
  13. package/abi/SLCCoreFactory.json +499 -0
  14. package/lib.commonjs/contracts/governance/ExecutorsRegistry.d.ts +1 -29
  15. package/lib.commonjs/contracts/interfaces/IExecutorsRegistry.d.ts +1 -29
  16. package/lib.commonjs/factories/contracts/governance/ExecutorsRegistry__factory.d.ts +0 -36
  17. package/lib.commonjs/factories/contracts/governance/ExecutorsRegistry__factory.js +0 -48
  18. package/lib.commonjs/factories/contracts/interfaces/IExecutorsRegistry__factory.d.ts +0 -36
  19. package/lib.commonjs/factories/contracts/interfaces/IExecutorsRegistry__factory.js +0 -48
  20. package/lib.commonjs/index.d.ts +1 -1
  21. package/lib.commonjs/index.js +31 -2
  22. package/lib.esm/contracts/governance/ExecutorsRegistry.d.ts +1 -29
  23. package/lib.esm/contracts/interfaces/IExecutorsRegistry.d.ts +1 -29
  24. package/lib.esm/factories/contracts/governance/ExecutorsRegistry__factory.d.ts +0 -36
  25. package/lib.esm/factories/contracts/governance/ExecutorsRegistry__factory.js +0 -48
  26. package/lib.esm/factories/contracts/interfaces/IExecutorsRegistry__factory.d.ts +0 -36
  27. package/lib.esm/factories/contracts/interfaces/IExecutorsRegistry__factory.js +0 -48
  28. package/lib.esm/index.d.ts +1 -1
  29. package/lib.esm/index.js +12 -2
  30. package/package.json +4 -4
@@ -0,0 +1,1123 @@
1
+ [
2
+ {
3
+ "inputs": [
4
+ {
5
+ "internalType": "address",
6
+ "name": "target",
7
+ "type": "address"
8
+ }
9
+ ],
10
+ "name": "AddressEmptyCode",
11
+ "type": "error"
12
+ },
13
+ {
14
+ "inputs": [],
15
+ "name": "AmountIsZero",
16
+ "type": "error"
17
+ },
18
+ {
19
+ "inputs": [
20
+ {
21
+ "internalType": "address",
22
+ "name": "implementation",
23
+ "type": "address"
24
+ }
25
+ ],
26
+ "name": "ERC1967InvalidImplementation",
27
+ "type": "error"
28
+ },
29
+ {
30
+ "inputs": [],
31
+ "name": "ERC1967NonPayable",
32
+ "type": "error"
33
+ },
34
+ {
35
+ "inputs": [
36
+ {
37
+ "internalType": "address",
38
+ "name": "executor",
39
+ "type": "address"
40
+ }
41
+ ],
42
+ "name": "ExecutorAlreadyApproved",
43
+ "type": "error"
44
+ },
45
+ {
46
+ "inputs": [
47
+ {
48
+ "internalType": "address",
49
+ "name": "executor",
50
+ "type": "address"
51
+ }
52
+ ],
53
+ "name": "ExecutorHasNoStake",
54
+ "type": "error"
55
+ },
56
+ {
57
+ "inputs": [
58
+ {
59
+ "internalType": "address",
60
+ "name": "executor",
61
+ "type": "address"
62
+ }
63
+ ],
64
+ "name": "ExecutorNotApproved",
65
+ "type": "error"
66
+ },
67
+ {
68
+ "inputs": [],
69
+ "name": "FailedCall",
70
+ "type": "error"
71
+ },
72
+ {
73
+ "inputs": [
74
+ {
75
+ "internalType": "address",
76
+ "name": "account",
77
+ "type": "address"
78
+ },
79
+ {
80
+ "internalType": "uint256",
81
+ "name": "balance",
82
+ "type": "uint256"
83
+ },
84
+ {
85
+ "internalType": "uint256",
86
+ "name": "needed",
87
+ "type": "uint256"
88
+ }
89
+ ],
90
+ "name": "InsufficientOwedValue",
91
+ "type": "error"
92
+ },
93
+ {
94
+ "inputs": [
95
+ {
96
+ "internalType": "address",
97
+ "name": "account",
98
+ "type": "address"
99
+ },
100
+ {
101
+ "internalType": "uint256",
102
+ "name": "balance",
103
+ "type": "uint256"
104
+ },
105
+ {
106
+ "internalType": "uint256",
107
+ "name": "needed",
108
+ "type": "uint256"
109
+ }
110
+ ],
111
+ "name": "InsufficientSharesAmount",
112
+ "type": "error"
113
+ },
114
+ {
115
+ "inputs": [
116
+ {
117
+ "internalType": "address",
118
+ "name": "subject",
119
+ "type": "address"
120
+ },
121
+ {
122
+ "internalType": "uint256",
123
+ "name": "requestedAmount",
124
+ "type": "uint256"
125
+ },
126
+ {
127
+ "internalType": "uint256",
128
+ "name": "availibleAmount",
129
+ "type": "uint256"
130
+ }
131
+ ],
132
+ "name": "InsufficientStakeAmount",
133
+ "type": "error"
134
+ },
135
+ {
136
+ "inputs": [],
137
+ "name": "InvalidERC20Token",
138
+ "type": "error"
139
+ },
140
+ {
141
+ "inputs": [],
142
+ "name": "InvalidGovernance",
143
+ "type": "error"
144
+ },
145
+ {
146
+ "inputs": [
147
+ {
148
+ "internalType": "address",
149
+ "name": "executor",
150
+ "type": "address"
151
+ }
152
+ ],
153
+ "name": "InvalidInitialExecutor",
154
+ "type": "error"
155
+ },
156
+ {
157
+ "inputs": [],
158
+ "name": "InvalidInitialization",
159
+ "type": "error"
160
+ },
161
+ {
162
+ "inputs": [],
163
+ "name": "InvalidParametersRegistry",
164
+ "type": "error"
165
+ },
166
+ {
167
+ "inputs": [
168
+ {
169
+ "internalType": "uint256",
170
+ "name": "amount_",
171
+ "type": "uint256"
172
+ }
173
+ ],
174
+ "name": "InvalidStakeAmount",
175
+ "type": "error"
176
+ },
177
+ {
178
+ "inputs": [
179
+ {
180
+ "internalType": "address",
181
+ "name": "executor",
182
+ "type": "address"
183
+ }
184
+ ],
185
+ "name": "NoWithdrawalAnnouncement",
186
+ "type": "error"
187
+ },
188
+ {
189
+ "inputs": [],
190
+ "name": "NotInitializing",
191
+ "type": "error"
192
+ },
193
+ {
194
+ "inputs": [
195
+ {
196
+ "internalType": "string",
197
+ "name": "parameterName",
198
+ "type": "string"
199
+ }
200
+ ],
201
+ "name": "ParameterIsAlreadySynced",
202
+ "type": "error"
203
+ },
204
+ {
205
+ "inputs": [
206
+ {
207
+ "internalType": "address",
208
+ "name": "parametersRegistry",
209
+ "type": "address"
210
+ },
211
+ {
212
+ "internalType": "string",
213
+ "name": "parameterName",
214
+ "type": "string"
215
+ }
216
+ ],
217
+ "name": "ParameterIsNotSet",
218
+ "type": "error"
219
+ },
220
+ {
221
+ "inputs": [
222
+ {
223
+ "internalType": "string",
224
+ "name": "parameterName",
225
+ "type": "string"
226
+ }
227
+ ],
228
+ "name": "ParameterIsNotSynced",
229
+ "type": "error"
230
+ },
231
+ {
232
+ "inputs": [],
233
+ "name": "QueueIsEmpty",
234
+ "type": "error"
235
+ },
236
+ {
237
+ "inputs": [
238
+ {
239
+ "internalType": "address",
240
+ "name": "token",
241
+ "type": "address"
242
+ }
243
+ ],
244
+ "name": "SafeERC20FailedOperation",
245
+ "type": "error"
246
+ },
247
+ {
248
+ "inputs": [
249
+ {
250
+ "internalType": "address",
251
+ "name": "sender",
252
+ "type": "address"
253
+ }
254
+ ],
255
+ "name": "SenderExpectedToBeDAOSLC",
256
+ "type": "error"
257
+ },
258
+ {
259
+ "inputs": [
260
+ {
261
+ "internalType": "address",
262
+ "name": "sender",
263
+ "type": "address"
264
+ }
265
+ ],
266
+ "name": "SenderExpectedToBeGovernance",
267
+ "type": "error"
268
+ },
269
+ {
270
+ "inputs": [],
271
+ "name": "UUPSUnauthorizedCallContext",
272
+ "type": "error"
273
+ },
274
+ {
275
+ "inputs": [
276
+ {
277
+ "internalType": "bytes32",
278
+ "name": "slot",
279
+ "type": "bytes32"
280
+ }
281
+ ],
282
+ "name": "UUPSUnsupportedProxiableUUID",
283
+ "type": "error"
284
+ },
285
+ {
286
+ "inputs": [],
287
+ "name": "UserIsZeroAddress",
288
+ "type": "error"
289
+ },
290
+ {
291
+ "inputs": [
292
+ {
293
+ "internalType": "address",
294
+ "name": "executor",
295
+ "type": "address"
296
+ }
297
+ ],
298
+ "name": "WithdrawalAlreadyAnnounced",
299
+ "type": "error"
300
+ },
301
+ {
302
+ "inputs": [
303
+ {
304
+ "internalType": "address",
305
+ "name": "executor",
306
+ "type": "address"
307
+ },
308
+ {
309
+ "internalType": "uint256",
310
+ "name": "availableAt",
311
+ "type": "uint256"
312
+ }
313
+ ],
314
+ "name": "WithdrawalNotReady",
315
+ "type": "error"
316
+ },
317
+ {
318
+ "anonymous": false,
319
+ "inputs": [
320
+ {
321
+ "indexed": true,
322
+ "internalType": "address",
323
+ "name": "executor",
324
+ "type": "address"
325
+ },
326
+ {
327
+ "indexed": false,
328
+ "internalType": "uint256",
329
+ "name": "stake",
330
+ "type": "uint256"
331
+ }
332
+ ],
333
+ "name": "ExecutorActivated",
334
+ "type": "event"
335
+ },
336
+ {
337
+ "anonymous": false,
338
+ "inputs": [
339
+ {
340
+ "indexed": true,
341
+ "internalType": "address",
342
+ "name": "executor",
343
+ "type": "address"
344
+ }
345
+ ],
346
+ "name": "ExecutorApproved",
347
+ "type": "event"
348
+ },
349
+ {
350
+ "anonymous": false,
351
+ "inputs": [
352
+ {
353
+ "indexed": true,
354
+ "internalType": "address",
355
+ "name": "executor",
356
+ "type": "address"
357
+ }
358
+ ],
359
+ "name": "ExecutorDisapproved",
360
+ "type": "event"
361
+ },
362
+ {
363
+ "anonymous": false,
364
+ "inputs": [
365
+ {
366
+ "indexed": true,
367
+ "internalType": "address",
368
+ "name": "executor",
369
+ "type": "address"
370
+ }
371
+ ],
372
+ "name": "ExecutorMovedToStandby",
373
+ "type": "event"
374
+ },
375
+ {
376
+ "anonymous": false,
377
+ "inputs": [
378
+ {
379
+ "indexed": true,
380
+ "internalType": "address",
381
+ "name": "executor",
382
+ "type": "address"
383
+ },
384
+ {
385
+ "indexed": false,
386
+ "internalType": "uint256",
387
+ "name": "amount",
388
+ "type": "uint256"
389
+ },
390
+ {
391
+ "indexed": false,
392
+ "internalType": "address",
393
+ "name": "recipient",
394
+ "type": "address"
395
+ }
396
+ ],
397
+ "name": "ExecutorSlashed",
398
+ "type": "event"
399
+ },
400
+ {
401
+ "anonymous": false,
402
+ "inputs": [
403
+ {
404
+ "indexed": true,
405
+ "internalType": "address",
406
+ "name": "executor",
407
+ "type": "address"
408
+ },
409
+ {
410
+ "indexed": false,
411
+ "internalType": "uint256",
412
+ "name": "amount",
413
+ "type": "uint256"
414
+ },
415
+ {
416
+ "indexed": false,
417
+ "internalType": "uint256",
418
+ "name": "totalStake",
419
+ "type": "uint256"
420
+ }
421
+ ],
422
+ "name": "ExecutorStaked",
423
+ "type": "event"
424
+ },
425
+ {
426
+ "anonymous": false,
427
+ "inputs": [
428
+ {
429
+ "indexed": true,
430
+ "internalType": "address",
431
+ "name": "executor",
432
+ "type": "address"
433
+ },
434
+ {
435
+ "indexed": false,
436
+ "internalType": "uint256",
437
+ "name": "amount",
438
+ "type": "uint256"
439
+ },
440
+ {
441
+ "indexed": false,
442
+ "internalType": "uint256",
443
+ "name": "remainingStake",
444
+ "type": "uint256"
445
+ }
446
+ ],
447
+ "name": "ExecutorUnstaked",
448
+ "type": "event"
449
+ },
450
+ {
451
+ "anonymous": false,
452
+ "inputs": [
453
+ {
454
+ "indexed": false,
455
+ "internalType": "uint64",
456
+ "name": "version",
457
+ "type": "uint64"
458
+ }
459
+ ],
460
+ "name": "Initialized",
461
+ "type": "event"
462
+ },
463
+ {
464
+ "anonymous": false,
465
+ "inputs": [
466
+ {
467
+ "indexed": true,
468
+ "internalType": "address",
469
+ "name": "executor",
470
+ "type": "address"
471
+ },
472
+ {
473
+ "indexed": false,
474
+ "internalType": "uint256",
475
+ "name": "amount",
476
+ "type": "uint256"
477
+ }
478
+ ],
479
+ "name": "RewardsClaimed",
480
+ "type": "event"
481
+ },
482
+ {
483
+ "anonymous": false,
484
+ "inputs": [
485
+ {
486
+ "indexed": false,
487
+ "internalType": "uint256",
488
+ "name": "totalAmount",
489
+ "type": "uint256"
490
+ }
491
+ ],
492
+ "name": "RewardsDistributed",
493
+ "type": "event"
494
+ },
495
+ {
496
+ "anonymous": false,
497
+ "inputs": [
498
+ {
499
+ "indexed": false,
500
+ "internalType": "address",
501
+ "name": "user",
502
+ "type": "address"
503
+ },
504
+ {
505
+ "indexed": false,
506
+ "internalType": "uint256",
507
+ "name": "amount",
508
+ "type": "uint256"
509
+ }
510
+ ],
511
+ "name": "SharesAdded",
512
+ "type": "event"
513
+ },
514
+ {
515
+ "anonymous": false,
516
+ "inputs": [
517
+ {
518
+ "indexed": false,
519
+ "internalType": "address",
520
+ "name": "user",
521
+ "type": "address"
522
+ },
523
+ {
524
+ "indexed": false,
525
+ "internalType": "uint256",
526
+ "name": "amount",
527
+ "type": "uint256"
528
+ }
529
+ ],
530
+ "name": "SharesRemoved",
531
+ "type": "event"
532
+ },
533
+ {
534
+ "anonymous": false,
535
+ "inputs": [
536
+ {
537
+ "indexed": true,
538
+ "internalType": "address",
539
+ "name": "implementation",
540
+ "type": "address"
541
+ }
542
+ ],
543
+ "name": "Upgraded",
544
+ "type": "event"
545
+ },
546
+ {
547
+ "anonymous": false,
548
+ "inputs": [
549
+ {
550
+ "indexed": false,
551
+ "internalType": "address",
552
+ "name": "user",
553
+ "type": "address"
554
+ },
555
+ {
556
+ "indexed": false,
557
+ "internalType": "uint256",
558
+ "name": "amount",
559
+ "type": "uint256"
560
+ }
561
+ ],
562
+ "name": "ValueDistributed",
563
+ "type": "event"
564
+ },
565
+ {
566
+ "anonymous": false,
567
+ "inputs": [
568
+ {
569
+ "indexed": true,
570
+ "internalType": "address",
571
+ "name": "executor",
572
+ "type": "address"
573
+ },
574
+ {
575
+ "indexed": false,
576
+ "internalType": "uint256",
577
+ "name": "amount",
578
+ "type": "uint256"
579
+ },
580
+ {
581
+ "indexed": false,
582
+ "internalType": "uint256",
583
+ "name": "availableAt",
584
+ "type": "uint256"
585
+ }
586
+ ],
587
+ "name": "WithdrawalAnnounced",
588
+ "type": "event"
589
+ },
590
+ {
591
+ "anonymous": false,
592
+ "inputs": [
593
+ {
594
+ "indexed": true,
595
+ "internalType": "address",
596
+ "name": "executor",
597
+ "type": "address"
598
+ },
599
+ {
600
+ "indexed": false,
601
+ "internalType": "uint256",
602
+ "name": "amount",
603
+ "type": "uint256"
604
+ }
605
+ ],
606
+ "name": "WithdrawalCancelled",
607
+ "type": "event"
608
+ },
609
+ {
610
+ "inputs": [],
611
+ "name": "UPGRADE_INTERFACE_VERSION",
612
+ "outputs": [
613
+ {
614
+ "internalType": "string",
615
+ "name": "",
616
+ "type": "string"
617
+ }
618
+ ],
619
+ "stateMutability": "view",
620
+ "type": "function"
621
+ },
622
+ {
623
+ "inputs": [
624
+ {
625
+ "internalType": "address",
626
+ "name": "governance_",
627
+ "type": "address"
628
+ },
629
+ {
630
+ "internalType": "address[]",
631
+ "name": "initialExecutors_",
632
+ "type": "address[]"
633
+ }
634
+ ],
635
+ "name": "__ExecutorsRegistry_init",
636
+ "outputs": [],
637
+ "stateMutability": "nonpayable",
638
+ "type": "function"
639
+ },
640
+ {
641
+ "inputs": [
642
+ {
643
+ "internalType": "uint256",
644
+ "name": "amount_",
645
+ "type": "uint256"
646
+ }
647
+ ],
648
+ "name": "announceWithdrawal",
649
+ "outputs": [],
650
+ "stateMutability": "nonpayable",
651
+ "type": "function"
652
+ },
653
+ {
654
+ "inputs": [
655
+ {
656
+ "internalType": "address",
657
+ "name": "executor_",
658
+ "type": "address"
659
+ }
660
+ ],
661
+ "name": "approveExecutor",
662
+ "outputs": [],
663
+ "stateMutability": "nonpayable",
664
+ "type": "function"
665
+ },
666
+ {
667
+ "inputs": [],
668
+ "name": "boundActiveExecutors",
669
+ "outputs": [],
670
+ "stateMutability": "nonpayable",
671
+ "type": "function"
672
+ },
673
+ {
674
+ "inputs": [],
675
+ "name": "cancelWithdrawal",
676
+ "outputs": [],
677
+ "stateMutability": "nonpayable",
678
+ "type": "function"
679
+ },
680
+ {
681
+ "inputs": [],
682
+ "name": "claimRewards",
683
+ "outputs": [],
684
+ "stateMutability": "nonpayable",
685
+ "type": "function"
686
+ },
687
+ {
688
+ "inputs": [],
689
+ "name": "completeWithdrawal",
690
+ "outputs": [],
691
+ "stateMutability": "nonpayable",
692
+ "type": "function"
693
+ },
694
+ {
695
+ "inputs": [],
696
+ "name": "cumulativeSum",
697
+ "outputs": [
698
+ {
699
+ "internalType": "uint256",
700
+ "name": "",
701
+ "type": "uint256"
702
+ }
703
+ ],
704
+ "stateMutability": "view",
705
+ "type": "function"
706
+ },
707
+ {
708
+ "inputs": [
709
+ {
710
+ "internalType": "address",
711
+ "name": "executor_",
712
+ "type": "address"
713
+ }
714
+ ],
715
+ "name": "disapproveExecutor",
716
+ "outputs": [],
717
+ "stateMutability": "nonpayable",
718
+ "type": "function"
719
+ },
720
+ {
721
+ "inputs": [
722
+ {
723
+ "internalType": "uint256",
724
+ "name": "amount_",
725
+ "type": "uint256"
726
+ }
727
+ ],
728
+ "name": "distributeRewards",
729
+ "outputs": [],
730
+ "stateMutability": "nonpayable",
731
+ "type": "function"
732
+ },
733
+ {
734
+ "inputs": [
735
+ {
736
+ "internalType": "uint256",
737
+ "name": "offset_",
738
+ "type": "uint256"
739
+ },
740
+ {
741
+ "internalType": "uint256",
742
+ "name": "limit_",
743
+ "type": "uint256"
744
+ }
745
+ ],
746
+ "name": "getActiveExecutors",
747
+ "outputs": [
748
+ {
749
+ "internalType": "address[]",
750
+ "name": "",
751
+ "type": "address[]"
752
+ }
753
+ ],
754
+ "stateMutability": "view",
755
+ "type": "function"
756
+ },
757
+ {
758
+ "inputs": [
759
+ {
760
+ "internalType": "address",
761
+ "name": "executor_",
762
+ "type": "address"
763
+ }
764
+ ],
765
+ "name": "getExecutorInfo",
766
+ "outputs": [
767
+ {
768
+ "components": [
769
+ {
770
+ "internalType": "uint256",
771
+ "name": "stake",
772
+ "type": "uint256"
773
+ },
774
+ {
775
+ "internalType": "bool",
776
+ "name": "isApproved",
777
+ "type": "bool"
778
+ },
779
+ {
780
+ "internalType": "bool",
781
+ "name": "isActive",
782
+ "type": "bool"
783
+ },
784
+ {
785
+ "internalType": "bool",
786
+ "name": "isStandby",
787
+ "type": "bool"
788
+ }
789
+ ],
790
+ "internalType": "struct ExecutorsRegistry.ExecutorInfo",
791
+ "name": "",
792
+ "type": "tuple"
793
+ }
794
+ ],
795
+ "stateMutability": "view",
796
+ "type": "function"
797
+ },
798
+ {
799
+ "inputs": [],
800
+ "name": "getExecutorsCount",
801
+ "outputs": [
802
+ {
803
+ "internalType": "uint256",
804
+ "name": "",
805
+ "type": "uint256"
806
+ }
807
+ ],
808
+ "stateMutability": "view",
809
+ "type": "function"
810
+ },
811
+ {
812
+ "inputs": [
813
+ {
814
+ "internalType": "address",
815
+ "name": "user_",
816
+ "type": "address"
817
+ }
818
+ ],
819
+ "name": "getOwedValue",
820
+ "outputs": [
821
+ {
822
+ "internalType": "uint256",
823
+ "name": "",
824
+ "type": "uint256"
825
+ }
826
+ ],
827
+ "stateMutability": "view",
828
+ "type": "function"
829
+ },
830
+ {
831
+ "inputs": [
832
+ {
833
+ "internalType": "uint256",
834
+ "name": "offset_",
835
+ "type": "uint256"
836
+ },
837
+ {
838
+ "internalType": "uint256",
839
+ "name": "limit_",
840
+ "type": "uint256"
841
+ }
842
+ ],
843
+ "name": "getStandbyExecutors",
844
+ "outputs": [
845
+ {
846
+ "internalType": "address[]",
847
+ "name": "",
848
+ "type": "address[]"
849
+ }
850
+ ],
851
+ "stateMutability": "view",
852
+ "type": "function"
853
+ },
854
+ {
855
+ "inputs": [
856
+ {
857
+ "internalType": "address",
858
+ "name": "executor_",
859
+ "type": "address"
860
+ }
861
+ ],
862
+ "name": "getWithdrawalAnnouncement",
863
+ "outputs": [
864
+ {
865
+ "components": [
866
+ {
867
+ "internalType": "uint256",
868
+ "name": "amount",
869
+ "type": "uint256"
870
+ },
871
+ {
872
+ "internalType": "uint256",
873
+ "name": "announcedAt",
874
+ "type": "uint256"
875
+ },
876
+ {
877
+ "internalType": "uint256",
878
+ "name": "availableAt",
879
+ "type": "uint256"
880
+ }
881
+ ],
882
+ "internalType": "struct ExecutorsRegistry.WithdrawalAnnouncement",
883
+ "name": "",
884
+ "type": "tuple"
885
+ }
886
+ ],
887
+ "stateMutability": "view",
888
+ "type": "function"
889
+ },
890
+ {
891
+ "inputs": [
892
+ {
893
+ "internalType": "address",
894
+ "name": "executor_",
895
+ "type": "address"
896
+ }
897
+ ],
898
+ "name": "hasShares",
899
+ "outputs": [
900
+ {
901
+ "internalType": "bool",
902
+ "name": "",
903
+ "type": "bool"
904
+ }
905
+ ],
906
+ "stateMutability": "view",
907
+ "type": "function"
908
+ },
909
+ {
910
+ "inputs": [],
911
+ "name": "implementation",
912
+ "outputs": [
913
+ {
914
+ "internalType": "address",
915
+ "name": "",
916
+ "type": "address"
917
+ }
918
+ ],
919
+ "stateMutability": "view",
920
+ "type": "function"
921
+ },
922
+ {
923
+ "inputs": [
924
+ {
925
+ "internalType": "address",
926
+ "name": "candidate_",
927
+ "type": "address"
928
+ }
929
+ ],
930
+ "name": "isExecutor",
931
+ "outputs": [
932
+ {
933
+ "internalType": "bool",
934
+ "name": "",
935
+ "type": "bool"
936
+ }
937
+ ],
938
+ "stateMutability": "view",
939
+ "type": "function"
940
+ },
941
+ {
942
+ "inputs": [
943
+ {
944
+ "internalType": "address",
945
+ "name": "executor_",
946
+ "type": "address"
947
+ }
948
+ ],
949
+ "name": "isWithdrawalReady",
950
+ "outputs": [
951
+ {
952
+ "internalType": "bool",
953
+ "name": "",
954
+ "type": "bool"
955
+ }
956
+ ],
957
+ "stateMutability": "view",
958
+ "type": "function"
959
+ },
960
+ {
961
+ "inputs": [],
962
+ "name": "proxiableUUID",
963
+ "outputs": [
964
+ {
965
+ "internalType": "bytes32",
966
+ "name": "",
967
+ "type": "bytes32"
968
+ }
969
+ ],
970
+ "stateMutability": "view",
971
+ "type": "function"
972
+ },
973
+ {
974
+ "inputs": [
975
+ {
976
+ "internalType": "address",
977
+ "name": "executor_",
978
+ "type": "address"
979
+ },
980
+ {
981
+ "internalType": "uint256",
982
+ "name": "amount_",
983
+ "type": "uint256"
984
+ }
985
+ ],
986
+ "name": "slashExecutor",
987
+ "outputs": [],
988
+ "stateMutability": "nonpayable",
989
+ "type": "function"
990
+ },
991
+ {
992
+ "inputs": [
993
+ {
994
+ "internalType": "uint256",
995
+ "name": "amount_",
996
+ "type": "uint256"
997
+ }
998
+ ],
999
+ "name": "stake",
1000
+ "outputs": [],
1001
+ "stateMutability": "nonpayable",
1002
+ "type": "function"
1003
+ },
1004
+ {
1005
+ "inputs": [
1006
+ {
1007
+ "internalType": "bytes4",
1008
+ "name": "interfaceId_",
1009
+ "type": "bytes4"
1010
+ }
1011
+ ],
1012
+ "name": "supportsInterface",
1013
+ "outputs": [
1014
+ {
1015
+ "internalType": "bool",
1016
+ "name": "",
1017
+ "type": "bool"
1018
+ }
1019
+ ],
1020
+ "stateMutability": "view",
1021
+ "type": "function"
1022
+ },
1023
+ {
1024
+ "inputs": [],
1025
+ "name": "totalShares",
1026
+ "outputs": [
1027
+ {
1028
+ "internalType": "uint256",
1029
+ "name": "",
1030
+ "type": "uint256"
1031
+ }
1032
+ ],
1033
+ "stateMutability": "view",
1034
+ "type": "function"
1035
+ },
1036
+ {
1037
+ "inputs": [],
1038
+ "name": "tryBecomeActive",
1039
+ "outputs": [],
1040
+ "stateMutability": "nonpayable",
1041
+ "type": "function"
1042
+ },
1043
+ {
1044
+ "inputs": [
1045
+ {
1046
+ "internalType": "uint256",
1047
+ "name": "newAmount_",
1048
+ "type": "uint256"
1049
+ }
1050
+ ],
1051
+ "name": "updateWithdrawalAnnouncement",
1052
+ "outputs": [],
1053
+ "stateMutability": "nonpayable",
1054
+ "type": "function"
1055
+ },
1056
+ {
1057
+ "inputs": [],
1058
+ "name": "updatedAt",
1059
+ "outputs": [
1060
+ {
1061
+ "internalType": "uint256",
1062
+ "name": "",
1063
+ "type": "uint256"
1064
+ }
1065
+ ],
1066
+ "stateMutability": "view",
1067
+ "type": "function"
1068
+ },
1069
+ {
1070
+ "inputs": [
1071
+ {
1072
+ "internalType": "address",
1073
+ "name": "newImplementation",
1074
+ "type": "address"
1075
+ },
1076
+ {
1077
+ "internalType": "bytes",
1078
+ "name": "data",
1079
+ "type": "bytes"
1080
+ }
1081
+ ],
1082
+ "name": "upgradeToAndCall",
1083
+ "outputs": [],
1084
+ "stateMutability": "payable",
1085
+ "type": "function"
1086
+ },
1087
+ {
1088
+ "inputs": [
1089
+ {
1090
+ "internalType": "address",
1091
+ "name": "user_",
1092
+ "type": "address"
1093
+ }
1094
+ ],
1095
+ "name": "userDistribution",
1096
+ "outputs": [
1097
+ {
1098
+ "components": [
1099
+ {
1100
+ "internalType": "uint256",
1101
+ "name": "shares",
1102
+ "type": "uint256"
1103
+ },
1104
+ {
1105
+ "internalType": "uint256",
1106
+ "name": "cumulativeSum",
1107
+ "type": "uint256"
1108
+ },
1109
+ {
1110
+ "internalType": "uint256",
1111
+ "name": "owedValue",
1112
+ "type": "uint256"
1113
+ }
1114
+ ],
1115
+ "internalType": "struct AValueDistributor.UserDistribution",
1116
+ "name": "",
1117
+ "type": "tuple"
1118
+ }
1119
+ ],
1120
+ "stateMutability": "view",
1121
+ "type": "function"
1122
+ }
1123
+ ]