-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathcontract_selectors.txt
More file actions
978 lines (934 loc) · 127 KB
/
contract_selectors.txt
File metadata and controls
978 lines (934 loc) · 127 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
ACL
╭----------+---------------------------------------------------------------------------+--------------------------------------------------------------------╮
| Type | Signature | Selector |
+===========================================================================================================================================================+
| Function | UPGRADE_INTERFACE_VERSION() | 0xad3cb1cc |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | acceptOwnership() | 0x79ba5097 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | allow(bytes32,address) | 0xb9496b62 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | allowForDecryption(bytes32[]) | 0xfadd2246 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | allowTransient(bytes32,address) | 0x3e395cec |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | allowedTransient(bytes32,address) | 0x74b79a5a |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | blockAccount(address) | 0x7c0a893d |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | cleanTransientStorage() | 0x35334c23 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | delegateForUserDecryption(address,address,uint64) | 0x04f61a95 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | getFHEVMExecutorAddress() | 0x268d6d31 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | getPauserSetAddress() | 0x2490fc9a |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | getUserDecryptionDelegationExpirationDate(address,address,address) | 0x3f462dbe |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | getVersion() | 0x0d8e6e2c |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | initializeFromEmptyProxy() | 0x39f73810 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | isAccountDenied(address) | 0x9edc01ec |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | isAllowed(bytes32,address) | 0x82027b6d |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | isAllowedForDecryption(bytes32) | 0xc0d02943 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | isHandleDelegatedForUserDecryption(address,address,address,bytes32) | 0xd09c0dee |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | isPauser(address) | 0x46fbf68e |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | multicall(bytes[]) | 0xac9650d8 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | owner() | 0x8da5cb5b |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | pause() | 0x8456cb59 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | paused() | 0x5c975abb |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | pendingOwner() | 0xe30c3978 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | persistAllowed(bytes32,address) | 0x1e2f86ba |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | proxiableUUID() | 0x52d1902d |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | reinitializeV3() | 0xbac22bb8 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | renounceOwnership() | 0x715018a6 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | revokeDelegationForUserDecryption(address,address) | 0x669e6316 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | transferOwnership(address) | 0xf2fde38b |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | unblockAccount(address) | 0x4d78fdc6 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | unpause() | 0x3f4ba83a |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | upgradeToAndCall(address,bytes) | 0x4f1ef286 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Event | Allowed(address,address,bytes32) | 0xe2e1decee6e05ee246cd7c7f1337d25cdfd41dcbdcf8c57b61630be56cc7366a |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Event | AllowedForDecryption(address,bytes32[]) | 0xd913ac93a959116526793ef772233273d5249597d33cddfdc34f29920541fd0a |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Event | BlockedAccount(address) | 0x8632489584ac3cfc9b78cc6c2197c31ca9e3821bfa5ca5c9af28917b92db24d9 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Event | DelegatedForUserDecryption(address,address,address,uint64,uint64,uint64) | 0x527b025d7ff06689c1ab9d32dfd7881c964cce72ce8ac5b2fe1d3be8cfda5bfc |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Event | Initialized(uint64) | 0xc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Event | OwnershipTransferStarted(address,address) | 0x38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e22700 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Event | OwnershipTransferred(address,address) | 0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Event | Paused(address) | 0x62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Event | RevokedDelegationForUserDecryption(address,address,address,uint64,uint64) | 0x7aca80b6b7928b9038f186e3d9922a0fc5d52c398fbf144725c142c52a5277e4 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Event | UnblockedAccount(address) | 0xa885a62df16bfeabc96ed9b845b30dd4038f039ca1679490125c314222355e3f |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Event | Unpaused(address) | 0x5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Event | Upgraded(address) | 0xbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | AccountAlreadyBlocked(address) | 0x4099a803 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | AccountNotBlocked(address) | 0x64a5cb46 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | AddressEmptyCode(address) | 0x9996b315 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | AlreadyDelegatedOrRevokedInSameBlock(address,address,address,uint256) | 0xf0ec8aec |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | DelegateCannotBeContractAddress(address) | 0xadf169da |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | ERC1967InvalidImplementation(address) | 0x4c9c8ce3 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | ERC1967NonPayable() | 0xb398979f |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | EnforcedPause() | 0xd93c0665 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | ExpectedPause() | 0x8dfc202b |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | ExpirationDateAlreadySetToSameValue(address,address,address,uint256) | 0x39a48202 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | ExpirationDateInThePast() | 0x15515f1a |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | FailedCall() | 0xd6bda275 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | HandlesListIsEmpty() | 0x70bd1996 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | InvalidInitialization() | 0xf92ee8a9 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | NotDelegatedYet(address,address,address) | 0xc227e905 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | NotInitializing() | 0xd7e6bcf8 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | NotInitializingFromEmptyProxy() | 0x6f4f731f |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | NotPauser(address) | 0x206a346e |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | OwnableInvalidOwner(address) | 0x1e4fbdf7 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | OwnableUnauthorizedAccount(address) | 0x118cdaa7 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | SenderCannotBeContractAddress(address) | 0x61241b58 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | SenderCannotBeDelegate(address) | 0x230daafc |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | SenderDenied(address) | 0xa7820abe |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | SenderNotAllowed(address) | 0xd0d25976 |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | UUPSUnauthorizedCallContext() | 0xe07c8dba |
|----------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | UUPSUnsupportedProxiableUUID(bytes32) | 0xaa1d49a4 |
╰----------+---------------------------------------------------------------------------+--------------------------------------------------------------------╯
ACLEvents
╭-------+---------------------------------------------------------------------------+--------------------------------------------------------------------╮
| Type | Signature | Selector |
+========================================================================================================================================================+
| Event | Allowed(address,address,bytes32) | 0xe2e1decee6e05ee246cd7c7f1337d25cdfd41dcbdcf8c57b61630be56cc7366a |
|-------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Event | AllowedForDecryption(address,bytes32[]) | 0xd913ac93a959116526793ef772233273d5249597d33cddfdc34f29920541fd0a |
|-------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Event | BlockedAccount(address) | 0x8632489584ac3cfc9b78cc6c2197c31ca9e3821bfa5ca5c9af28917b92db24d9 |
|-------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Event | DelegatedForUserDecryption(address,address,address,uint64,uint64,uint64) | 0x527b025d7ff06689c1ab9d32dfd7881c964cce72ce8ac5b2fe1d3be8cfda5bfc |
|-------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Event | RevokedDelegationForUserDecryption(address,address,address,uint64,uint64) | 0x7aca80b6b7928b9038f186e3d9922a0fc5d52c398fbf144725c142c52a5277e4 |
|-------+---------------------------------------------------------------------------+--------------------------------------------------------------------|
| Event | UnblockedAccount(address) | 0xa885a62df16bfeabc96ed9b845b30dd4038f039ca1679490125c314222355e3f |
╰-------+---------------------------------------------------------------------------+--------------------------------------------------------------------╯
FHEEvents
╭-------+----------------------------------------------------------+--------------------------------------------------------------------╮
| Type | Signature | Selector |
+=======================================================================================================================================+
| Event | Cast(address,bytes32,uint8,bytes32) | 0x31ccae6a2f8e3ced1692f77c8f668133e4afdaaa35afe844ff4659a6c27e627f |
|-------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheAdd(address,bytes32,bytes32,bytes1,bytes32) | 0xdb9050d65240431621d61d6f94b970e63f53a67a5766614ee6e5c5bbd41c8e2e |
|-------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheBitAnd(address,bytes32,bytes32,bytes1,bytes32) | 0xe42486b0ccdbef81a2075c48c8e515c079aea73c8b82429997c72a2fe1bf4fef |
|-------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheBitOr(address,bytes32,bytes32,bytes1,bytes32) | 0x56df279bbfb03d9ed097bbe2f28d520ca0c1161206327926e98664d70d2c24c4 |
|-------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheBitXor(address,bytes32,bytes32,bytes1,bytes32) | 0x4d32284bd3193ecaa44e1ceca32f41c5d6c32803a92e07967dd3ee4229721582 |
|-------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheDiv(address,bytes32,bytes32,bytes1,bytes32) | 0x3bab2ee0e2f90f4690c6a87bf63cf1a6b626086e95f231860b152966e8dabbf7 |
|-------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheEq(address,bytes32,bytes32,bytes1,bytes32) | 0xb3d5c664ec86575818e8d75ff25c5f867250df8954088549c41c848cd10e76cb |
|-------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheGe(address,bytes32,bytes32,bytes1,bytes32) | 0x38c3a63c4230de5b741f494ffb54e3087104030279bc7bccee8ad9ad31712b21 |
|-------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheGt(address,bytes32,bytes32,bytes1,bytes32) | 0xc9ff8f0d18a3f766ce5de3de216076050140e4fc2652f5e0e745f6fc836cda8b |
|-------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheIfThenElse(address,bytes32,bytes32,bytes32,bytes32) | 0x60be9d61aad849facc28c38b048cb5c4be3420b8fa2233e08cfa06be1b6d1c3e |
|-------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheLe(address,bytes32,bytes32,bytes1,bytes32) | 0xdef2e704a077284a07f3d0b436db88f5d981b69f58ab7c1ae623252718a6de01 |
|-------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheLt(address,bytes32,bytes32,bytes1,bytes32) | 0x0d483b100d8c73b208984ec697caa3091521ee5525ce69edcf97d7e395d3d059 |
|-------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheMax(address,bytes32,bytes32,bytes1,bytes32) | 0xfd7c9208f956bf0c6ab76a667f04361245ad3e0a2d0eff92eb827acfcca68ea9 |
|-------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheMin(address,bytes32,bytes32,bytes1,bytes32) | 0xc11d62b13c360a83082487064be1ec0878b2f0be4f012bf59f89e128063d47ff |
|-------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheMul(address,bytes32,bytes32,bytes1,bytes32) | 0x215346a4f9f975e6d5484e290bd4e53ca14453a9d282ebd3ccedb2a0f171753d |
|-------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheNe(address,bytes32,bytes32,bytes1,bytes32) | 0x6960c1e88f61c352dba34d1bbf6753e302795264d5d8ae82f7983c7004651e5d |
|-------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheNeg(address,bytes32,bytes32) | 0x8c664d3c3ca583fc5803b8a91c49644bbd9550bfa87967c73ad1de83027768c0 |
|-------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheNot(address,bytes32,bytes32) | 0x55aff4cc7a3d160c83f1f15b818011ede841a0b4597fb14dcd3603df3a11e5e0 |
|-------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheRand(address,uint8,bytes16,bytes32) | 0x0c8aca6017003326051e19913ef02631f24b801125e1fa8a1d812e868319fda6 |
|-------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheRandBounded(address,uint256,uint8,bytes16,bytes32) | 0x5222d96b836727a1d6fe1ee9aef27f9bb507bd41794defa376ff6c648aaf8ff1 |
|-------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheRem(address,bytes32,bytes32,bytes1,bytes32) | 0x0e691cd0bf8c4e9308e4ced1bb9c964117dc5c5bb9b9ab5bdfebf2c9b13a897c |
|-------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheRotl(address,bytes32,bytes32,bytes1,bytes32) | 0xeb0e4f8dc74058194d0602425fe602f955c222200f7f10c6fe67992f7b24c7e9 |
|-------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheRotr(address,bytes32,bytes32,bytes1,bytes32) | 0xc148675905d07ad5496f8ef4d8195c907503f3ec12fd10ed5f21240abc693634 |
|-------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheShl(address,bytes32,bytes32,bytes1,bytes32) | 0xe84282aaebcca698443e39a2a948a345d0d2ebc654af5cb657a2d7e8053bf6cb |
|-------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheShr(address,bytes32,bytes32,bytes1,bytes32) | 0x324220bfc9cb158b492991c03c309cd86e5345cac45aacae2092ddabe31fa3d8 |
|-------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheSub(address,bytes32,bytes32,bytes1,bytes32) | 0xeb6d37bd271abe1395b21d6d78f3487d6584862872c29ffd3f90736ee99b7393 |
|-------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | TrivialEncrypt(address,uint256,uint8,bytes32) | 0x063ccd1bba45151d91f6a418065047a3d048d058a922535747bb2b575a01d236 |
|-------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | VerifyInput(address,bytes32,address,bytes,uint8,bytes32) | 0xdc370db33589e73371dc3ee42c789c003d336eefcb7c3f56fe0f51ae5b1d9702 |
╰-------+----------------------------------------------------------+--------------------------------------------------------------------╯
FHEVMExecutor
╭----------+----------------------------------------------------------+--------------------------------------------------------------------╮
| Type | Signature | Selector |
+==========================================================================================================================================+
| Function | UPGRADE_INTERFACE_VERSION() | 0xad3cb1cc |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | cast(bytes32,uint8) | 0x1c89ee44 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | fheAdd(bytes32,bytes32,bytes1) | 0x117b2f38 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | fheBitAnd(bytes32,bytes32,bytes1) | 0xd99882d5 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | fheBitOr(bytes32,bytes32,bytes1) | 0x63a2db29 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | fheBitXor(bytes32,bytes32,bytes1) | 0x8b49ceb4 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | fheDiv(bytes32,bytes32,bytes1) | 0x5a53accb |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | fheEq(bytes32,bytes32,bytes1) | 0xf77f3f1d |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | fheGe(bytes32,bytes32,bytes1) | 0x1391547f |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | fheGt(bytes32,bytes32,bytes1) | 0x85362ee7 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | fheIfThenElse(bytes32,bytes32,bytes32) | 0x7702dcff |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | fheLe(bytes32,bytes32,bytes1) | 0x7513a404 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | fheLt(bytes32,bytes32,bytes1) | 0x72107681 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | fheMax(bytes32,bytes32,bytes1) | 0x36318d64 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | fheMin(bytes32,bytes32,bytes1) | 0x04559f71 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | fheMul(bytes32,bytes32,bytes1) | 0x57f0a568 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | fheNe(bytes32,bytes32,bytes1) | 0xd8092cbc |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | fheNeg(bytes32) | 0xd580c063 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | fheNot(bytes32) | 0xf51ccfb0 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | fheRand(uint8) | 0xd75d6e8a |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | fheRandBounded(uint256,uint8) | 0x48eef47e |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | fheRem(bytes32,bytes32,bytes1) | 0xcf4d18aa |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | fheRotl(bytes32,bytes32,bytes1) | 0x6754b360 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | fheRotr(bytes32,bytes32,bytes1) | 0xc021329e |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | fheShl(bytes32,bytes32,bytes1) | 0xccc480a1 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | fheShr(bytes32,bytes32,bytes1) | 0x91f98ffe |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | fheSub(bytes32,bytes32,bytes1) | 0x182b6d98 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | getACLAddress() | 0xf6859bdc |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | getHCULimitAddress() | 0xe0786972 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | getHandleVersion() | 0x7a297f4b |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | getInputVerifierAddress() | 0xa8c7c2c1 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | getVersion() | 0x0d8e6e2c |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | initializeFromEmptyProxy() | 0x39f73810 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | proxiableUUID() | 0x52d1902d |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | reinitializeV2() | 0xc4115874 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | trivialEncrypt(uint256,uint8) | 0x9cd07acb |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | upgradeToAndCall(address,bytes) | 0x4f1ef286 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Function | verifyInput(bytes32,address,bytes,uint8) | 0x08bf832a |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | Cast(address,bytes32,uint8,bytes32) | 0x31ccae6a2f8e3ced1692f77c8f668133e4afdaaa35afe844ff4659a6c27e627f |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheAdd(address,bytes32,bytes32,bytes1,bytes32) | 0xdb9050d65240431621d61d6f94b970e63f53a67a5766614ee6e5c5bbd41c8e2e |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheBitAnd(address,bytes32,bytes32,bytes1,bytes32) | 0xe42486b0ccdbef81a2075c48c8e515c079aea73c8b82429997c72a2fe1bf4fef |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheBitOr(address,bytes32,bytes32,bytes1,bytes32) | 0x56df279bbfb03d9ed097bbe2f28d520ca0c1161206327926e98664d70d2c24c4 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheBitXor(address,bytes32,bytes32,bytes1,bytes32) | 0x4d32284bd3193ecaa44e1ceca32f41c5d6c32803a92e07967dd3ee4229721582 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheDiv(address,bytes32,bytes32,bytes1,bytes32) | 0x3bab2ee0e2f90f4690c6a87bf63cf1a6b626086e95f231860b152966e8dabbf7 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheEq(address,bytes32,bytes32,bytes1,bytes32) | 0xb3d5c664ec86575818e8d75ff25c5f867250df8954088549c41c848cd10e76cb |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheGe(address,bytes32,bytes32,bytes1,bytes32) | 0x38c3a63c4230de5b741f494ffb54e3087104030279bc7bccee8ad9ad31712b21 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheGt(address,bytes32,bytes32,bytes1,bytes32) | 0xc9ff8f0d18a3f766ce5de3de216076050140e4fc2652f5e0e745f6fc836cda8b |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheIfThenElse(address,bytes32,bytes32,bytes32,bytes32) | 0x60be9d61aad849facc28c38b048cb5c4be3420b8fa2233e08cfa06be1b6d1c3e |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheLe(address,bytes32,bytes32,bytes1,bytes32) | 0xdef2e704a077284a07f3d0b436db88f5d981b69f58ab7c1ae623252718a6de01 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheLt(address,bytes32,bytes32,bytes1,bytes32) | 0x0d483b100d8c73b208984ec697caa3091521ee5525ce69edcf97d7e395d3d059 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheMax(address,bytes32,bytes32,bytes1,bytes32) | 0xfd7c9208f956bf0c6ab76a667f04361245ad3e0a2d0eff92eb827acfcca68ea9 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheMin(address,bytes32,bytes32,bytes1,bytes32) | 0xc11d62b13c360a83082487064be1ec0878b2f0be4f012bf59f89e128063d47ff |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheMul(address,bytes32,bytes32,bytes1,bytes32) | 0x215346a4f9f975e6d5484e290bd4e53ca14453a9d282ebd3ccedb2a0f171753d |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheNe(address,bytes32,bytes32,bytes1,bytes32) | 0x6960c1e88f61c352dba34d1bbf6753e302795264d5d8ae82f7983c7004651e5d |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheNeg(address,bytes32,bytes32) | 0x8c664d3c3ca583fc5803b8a91c49644bbd9550bfa87967c73ad1de83027768c0 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheNot(address,bytes32,bytes32) | 0x55aff4cc7a3d160c83f1f15b818011ede841a0b4597fb14dcd3603df3a11e5e0 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheRand(address,uint8,bytes16,bytes32) | 0x0c8aca6017003326051e19913ef02631f24b801125e1fa8a1d812e868319fda6 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheRandBounded(address,uint256,uint8,bytes16,bytes32) | 0x5222d96b836727a1d6fe1ee9aef27f9bb507bd41794defa376ff6c648aaf8ff1 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheRem(address,bytes32,bytes32,bytes1,bytes32) | 0x0e691cd0bf8c4e9308e4ced1bb9c964117dc5c5bb9b9ab5bdfebf2c9b13a897c |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheRotl(address,bytes32,bytes32,bytes1,bytes32) | 0xeb0e4f8dc74058194d0602425fe602f955c222200f7f10c6fe67992f7b24c7e9 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheRotr(address,bytes32,bytes32,bytes1,bytes32) | 0xc148675905d07ad5496f8ef4d8195c907503f3ec12fd10ed5f21240abc693634 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheShl(address,bytes32,bytes32,bytes1,bytes32) | 0xe84282aaebcca698443e39a2a948a345d0d2ebc654af5cb657a2d7e8053bf6cb |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheShr(address,bytes32,bytes32,bytes1,bytes32) | 0x324220bfc9cb158b492991c03c309cd86e5345cac45aacae2092ddabe31fa3d8 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | FheSub(address,bytes32,bytes32,bytes1,bytes32) | 0xeb6d37bd271abe1395b21d6d78f3487d6584862872c29ffd3f90736ee99b7393 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | Initialized(uint64) | 0xc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | TrivialEncrypt(address,uint256,uint8,bytes32) | 0x063ccd1bba45151d91f6a418065047a3d048d058a922535747bb2b575a01d236 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | Upgraded(address) | 0xbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Event | VerifyInput(address,bytes32,address,bytes,uint8,bytes32) | 0xdc370db33589e73371dc3ee42c789c003d336eefcb7c3f56fe0f51ae5b1d9702 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Error | ACLNotAllowed(bytes32,address) | 0x9de3392c |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Error | AddressEmptyCode(address) | 0x9996b315 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Error | DivisionByZero() | 0x23d359a3 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Error | ERC1967InvalidImplementation(address) | 0x4c9c8ce3 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Error | ERC1967NonPayable() | 0xb398979f |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Error | FailedCall() | 0xd6bda275 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Error | IncompatibleTypes() | 0x1f3158c7 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Error | InvalidByteLength(uint8,uint256) | 0xb30c0c57 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Error | InvalidInitialization() | 0xf92ee8a9 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Error | InvalidType() | 0xb9688461 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Error | IsNotScalar() | 0x4f224e53 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Error | NotHostOwner(address) | 0x21bfda10 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Error | NotInitializing() | 0xd7e6bcf8 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Error | NotInitializingFromEmptyProxy() | 0x6f4f731f |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Error | NotPowerOfTwo() | 0x24e8e742 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Error | ScalarByteIsNotBoolean() | 0xdf7bf325 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Error | SecondOperandIsNotScalar() | 0x4dde0d98 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Error | UUPSUnauthorizedCallContext() | 0xe07c8dba |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Error | UUPSUnsupportedProxiableUUID(bytes32) | 0xaa1d49a4 |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Error | UnsupportedType() | 0xc6de466a |
|----------+----------------------------------------------------------+--------------------------------------------------------------------|
| Error | UpperBoundAboveMaxTypeValue() | 0xc7dadf45 |
╰----------+----------------------------------------------------------+--------------------------------------------------------------------╯
IInputVerifier
╭----------+----------------------------------------------+------------╮
| Type | Signature | Selector |
+======================================================================+
| Function | verifyInput((address,address),bytes32,bytes) | 0xe6317df5 |
╰----------+----------------------------------------------+------------╯
HCULimit
╭----------+----------------------------------------------------------------------+--------------------------------------------------------------------╮
| Type | Signature | Selector |
+======================================================================================================================================================+
| Function | UPGRADE_INTERFACE_VERSION() | 0xad3cb1cc |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | addToBlockHCUWhitelist(address) | 0x6fd65e4d |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | checkHCUForCast(uint8,bytes32,bytes32,address) | 0x69931afb |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | checkHCUForFheAdd(uint8,bytes1,bytes32,bytes32,bytes32,address) | 0xc1390c34 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | checkHCUForFheBitAnd(uint8,bytes1,bytes32,bytes32,bytes32,address) | 0xc8de4352 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | checkHCUForFheBitOr(uint8,bytes1,bytes32,bytes32,bytes32,address) | 0xc0c5df7c |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | checkHCUForFheBitXor(uint8,bytes1,bytes32,bytes32,bytes32,address) | 0x9f9259bb |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | checkHCUForFheDiv(uint8,bytes1,bytes32,bytes32,bytes32,address) | 0x9b3f781a |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | checkHCUForFheEq(uint8,bytes1,bytes32,bytes32,bytes32,address) | 0x60e12189 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | checkHCUForFheGe(uint8,bytes1,bytes32,bytes32,bytes32,address) | 0xc277a936 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | checkHCUForFheGt(uint8,bytes1,bytes32,bytes32,bytes32,address) | 0x458fb277 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | checkHCUForFheLe(uint8,bytes1,bytes32,bytes32,bytes32,address) | 0x38bd17e5 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | checkHCUForFheLt(uint8,bytes1,bytes32,bytes32,bytes32,address) | 0x3bb7d5a3 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | checkHCUForFheMax(uint8,bytes1,bytes32,bytes32,bytes32,address) | 0x968302d7 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | checkHCUForFheMin(uint8,bytes1,bytes32,bytes32,bytes32,address) | 0x04553fb6 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | checkHCUForFheMul(uint8,bytes1,bytes32,bytes32,bytes32,address) | 0x818f4d69 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | checkHCUForFheNe(uint8,bytes1,bytes32,bytes32,bytes32,address) | 0x6bad18b6 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | checkHCUForFheNeg(uint8,bytes32,bytes32,address) | 0x497c22c5 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | checkHCUForFheNot(uint8,bytes32,bytes32,address) | 0x2dcbc5d1 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | checkHCUForFheRand(uint8,bytes32,address) | 0xd5b8b8f3 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | checkHCUForFheRandBounded(uint8,bytes32,address) | 0x6cf0bd25 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | checkHCUForFheRem(uint8,bytes1,bytes32,bytes32,bytes32,address) | 0x3311b1bc |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | checkHCUForFheRotl(uint8,bytes1,bytes32,bytes32,bytes32,address) | 0x5f76eb30 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | checkHCUForFheRotr(uint8,bytes1,bytes32,bytes32,bytes32,address) | 0x8629f545 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | checkHCUForFheShl(uint8,bytes1,bytes32,bytes32,bytes32,address) | 0xf7d198f8 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | checkHCUForFheShr(uint8,bytes1,bytes32,bytes32,bytes32,address) | 0x07ccdf61 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | checkHCUForFheSub(uint8,bytes1,bytes32,bytes32,bytes32,address) | 0xd633c96b |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | checkHCUForIfThenElse(uint8,bytes32,bytes32,bytes32,bytes32,address) | 0x2e3c3906 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | checkHCUForTrivialEncrypt(uint8,bytes32,address) | 0xb78bef59 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | getBlockMeter() | 0x9f4b9937 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | getFHEVMExecutorAddress() | 0x268d6d31 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | getGlobalHCUCapPerBlock() | 0xb59547b8 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | getMaxHCUDepthPerTx() | 0x1e24aa49 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | getMaxHCUPerTx() | 0xc13c1971 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | getVersion() | 0x0d8e6e2c |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | initializeFromEmptyProxy(uint48,uint48,uint48) | 0x196a456d |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | isBlockHCUWhitelisted(address) | 0xede8776e |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | proxiableUUID() | 0x52d1902d |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | reinitializeV2(uint48,uint48,uint48) | 0x7748671a |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | removeFromBlockHCUWhitelist(address) | 0x28677ca7 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | setHCUPerBlock(uint48) | 0xa036ea2e |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | setMaxHCUDepthPerTx(uint48) | 0x5c414b57 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | setMaxHCUPerTx(uint48) | 0xab394755 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Function | upgradeToAndCall(address,bytes) | 0x4f1ef286 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Event | BlockHCUWhitelistAdded(address) | 0xcca1d46384cdbbeef2f9daddb76db138101c9905f818d867b630195c128d3c66 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Event | BlockHCUWhitelistRemoved(address) | 0x92fc97af15002646cea63c7633bb375b82db7cde7b480c75fe6341dacc292c81 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Event | HCUPerBlockSet(uint48) | 0xc1f1fcaa898aae2263dded712e1798083fca9272ff803ee4150ce48f8619891a |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Event | Initialized(uint64) | 0xc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Event | MaxHCUDepthPerTxSet(uint48) | 0x5511b1851fc40a2629c855bab7adce3276c470d8190eb01431e418dc2af13e8e |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Event | MaxHCUPerTxSet(uint48) | 0x64cb9e7ae6497c59080cdbc048552e123d52aa4240e137758a173582786961ca |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Event | Upgraded(address) | 0xbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | AddressEmptyCode(address) | 0x9996b315 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | AlreadyBlockHCUWhitelisted(address) | 0xf99c4fd1 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | CallerMustBeFHEVMExecutorContract() | 0x31a81a81 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | ERC1967InvalidImplementation(address) | 0x4c9c8ce3 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | ERC1967NonPayable() | 0xb398979f |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | FailedCall() | 0xd6bda275 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | HCUBlockLimitExceeded() | 0xad251174 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | HCUPerBlockBelowMaxPerTx() | 0x04acca2f |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | HCUTransactionDepthLimitExceeded() | 0xfc344870 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | HCUTransactionLimitExceeded() | 0x77e3c293 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | InvalidInitialization() | 0xf92ee8a9 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | MaxHCUPerTxBelowDepth() | 0xafb1633c |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | NotBlockHCUWhitelisted(address) | 0xe3cc3418 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | NotHostOwner(address) | 0x21bfda10 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | NotInitializing() | 0xd7e6bcf8 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | NotInitializingFromEmptyProxy() | 0x6f4f731f |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | OnlyScalarOperationsAreSupported() | 0x6aa9eb05 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | UUPSUnauthorizedCallContext() | 0xe07c8dba |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | UUPSUnsupportedProxiableUUID(bytes32) | 0xaa1d49a4 |
|----------+----------------------------------------------------------------------+--------------------------------------------------------------------|
| Error | UnsupportedOperation() | 0x9ba6061b |
╰----------+----------------------------------------------------------------------+--------------------------------------------------------------------╯
InputVerifier
╭----------+------------------------------------------------------------+--------------------------------------------------------------------╮
| Type | Signature | Selector |
+============================================================================================================================================+
| Function | EIP712_INPUT_VERIFICATION_TYPE() | 0x54130ccd |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | EIP712_INPUT_VERIFICATION_TYPEHASH() | 0x8b218123 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | UPGRADE_INTERFACE_VERSION() | 0xad3cb1cc |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | cleanTransientStorage() | 0x35334c23 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | defineNewContext(address[],uint256) | 0xda53c47d |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | eip712Domain() | 0x84b0196e |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | getCoprocessorSigners() | 0x9164d0ae |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | getHandleVersion() | 0x7a297f4b |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | getThreshold() | 0xe75235b8 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | getVersion() | 0x0d8e6e2c |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | initializeFromEmptyProxy(address,uint64,address[],uint256) | 0x5eed7675 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | isSigner(address) | 0x7df73e27 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | proxiableUUID() | 0x52d1902d |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | reinitializeV2(address[],uint256) | 0xe7d9e407 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | setThreshold(uint256) | 0x960bfe04 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | upgradeToAndCall(address,bytes) | 0x4f1ef286 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | verifyInput((address,address),bytes32,bytes) | 0xe6317df5 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Event | EIP712DomainChanged() | 0x0a6387c9ea3628b88a633bb4f3b151770f70085117a15f9bf3787cda53f13d31 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Event | Initialized(uint64) | 0xc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Event | NewContextSet(address[],uint256) | 0x1dcd7e1de916ad3be0c1097968029899e2e7d0195cfa6967e16520c0e8d07cea |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Event | Upgraded(address) | 0xbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | AddressEmptyCode(address) | 0x9996b315 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | CoprocessorAlreadySigner() | 0xae5bcf92 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | CoprocessorSignerNull() | 0x101a729c |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | DeserializingInputProofFail() | 0x1817ecd7 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | ECDSAInvalidSignature() | 0xf645eedf |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | ECDSAInvalidSignatureLength(uint256) | 0xfce698f7 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | ECDSAInvalidSignatureS(bytes32) | 0xd78bce0c |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | ERC1967InvalidImplementation(address) | 0x4c9c8ce3 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | ERC1967NonPayable() | 0xb398979f |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | EmptyInputProof() | 0xb2481d16 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | FailedCall() | 0xd6bda275 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | InvalidChainId() | 0x7a47c9a2 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | InvalidHandleVersion() | 0x5f7e1b54 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | InvalidIndex() | 0x63df8171 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | InvalidInitialization() | 0xf92ee8a9 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | InvalidInputHandle() | 0x0258df88 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | InvalidSigner(address) | 0xbf18af43 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | NotASigner() | 0xda0357f7 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | NotHostOwner(address) | 0x21bfda10 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | NotInitializing() | 0xd7e6bcf8 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | NotInitializingFromEmptyProxy() | 0x6f4f731f |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | SignatureThresholdNotReached(uint256) | 0xb95ffe0c |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | SignaturesVerificationFailed() | 0x4b506ccd |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | SignersSetIsEmpty() | 0x1286e951 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | ThresholdIsAboveNumberOfSigners() | 0x35194e63 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | ThresholdIsNull() | 0xa8f89880 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | UUPSUnauthorizedCallContext() | 0xe07c8dba |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | UUPSUnsupportedProxiableUUID(bytes32) | 0xaa1d49a4 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | ZeroSignature() | 0xb30a3242 |
╰----------+------------------------------------------------------------+--------------------------------------------------------------------╯
KMSVerifier
╭----------+------------------------------------------------------------+--------------------------------------------------------------------╮
| Type | Signature | Selector |
+============================================================================================================================================+
| Function | DECRYPTION_RESULT_TYPEHASH() | 0x7d15c9cf |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | EIP712_PUBLIC_DECRYPT_TYPE() | 0x2eafb7db |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | UPGRADE_INTERFACE_VERSION() | 0xad3cb1cc |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | defineNewContext(address[],uint256) | 0xda53c47d |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | eip712Domain() | 0x84b0196e |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | getKmsSigners() | 0x7eaac8f2 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | getThreshold() | 0xe75235b8 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | getVersion() | 0x0d8e6e2c |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | initializeFromEmptyProxy(address,uint64,address[],uint256) | 0x5eed7675 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | isSigner(address) | 0x7df73e27 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | proxiableUUID() | 0x52d1902d |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | setThreshold(uint256) | 0x960bfe04 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | upgradeToAndCall(address,bytes) | 0x4f1ef286 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Function | verifyDecryptionEIP712KMSSignatures(bytes32[],bytes,bytes) | 0x78542ead |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Event | EIP712DomainChanged() | 0x0a6387c9ea3628b88a633bb4f3b151770f70085117a15f9bf3787cda53f13d31 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Event | Initialized(uint64) | 0xc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Event | NewContextSet(address[],uint256) | 0x1dcd7e1de916ad3be0c1097968029899e2e7d0195cfa6967e16520c0e8d07cea |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Event | Upgraded(address) | 0xbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | AddressEmptyCode(address) | 0x9996b315 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | DeserializingDecryptionProofFail() | 0x8d9c3069 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | ECDSAInvalidSignature() | 0xf645eedf |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | ECDSAInvalidSignatureLength(uint256) | 0xfce698f7 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | ECDSAInvalidSignatureS(bytes32) | 0xd78bce0c |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | ERC1967InvalidImplementation(address) | 0x4c9c8ce3 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | ERC1967NonPayable() | 0xb398979f |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | EmptyDecryptionProof() | 0xfb6ee246 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | FailedCall() | 0xd6bda275 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | InvalidInitialization() | 0xf92ee8a9 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | KMSAlreadySigner() | 0x9895a42c |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | KMSInvalidSigner(address) | 0x6475522d |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | KMSSignatureThresholdNotReached(uint256) | 0xa9c7f24c |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | KMSSignerNull() | 0xfede5bbd |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | KMSZeroSignature() | 0x5704836e |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | NotHostOwner(address) | 0x21bfda10 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | NotInitializing() | 0xd7e6bcf8 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | NotInitializingFromEmptyProxy() | 0x6f4f731f |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | SignersSetIsEmpty() | 0x1286e951 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | ThresholdIsAboveNumberOfSigners() | 0x35194e63 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | ThresholdIsNull() | 0xa8f89880 |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | UUPSUnauthorizedCallContext() | 0xe07c8dba |
|----------+------------------------------------------------------------+--------------------------------------------------------------------|
| Error | UUPSUnsupportedProxiableUUID(bytes32) | 0xaa1d49a4 |
╰----------+------------------------------------------------------------+--------------------------------------------------------------------╯
EmptyUUPSProxy
╭----------+---------------------------------------+--------------------------------------------------------------------╮
| Type | Signature | Selector |
+=======================================================================================================================+
| Function | UPGRADE_INTERFACE_VERSION() | 0xad3cb1cc |
|----------+---------------------------------------+--------------------------------------------------------------------|
| Function | initialize() | 0x8129fc1c |
|----------+---------------------------------------+--------------------------------------------------------------------|
| Function | proxiableUUID() | 0x52d1902d |
|----------+---------------------------------------+--------------------------------------------------------------------|
| Function | upgradeToAndCall(address,bytes) | 0x4f1ef286 |
|----------+---------------------------------------+--------------------------------------------------------------------|
| Event | Initialized(uint64) | 0xc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2 |
|----------+---------------------------------------+--------------------------------------------------------------------|
| Event | Upgraded(address) | 0xbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b |
|----------+---------------------------------------+--------------------------------------------------------------------|
| Error | AddressEmptyCode(address) | 0x9996b315 |
|----------+---------------------------------------+--------------------------------------------------------------------|
| Error | ERC1967InvalidImplementation(address) | 0x4c9c8ce3 |
|----------+---------------------------------------+--------------------------------------------------------------------|
| Error | ERC1967NonPayable() | 0xb398979f |
|----------+---------------------------------------+--------------------------------------------------------------------|
| Error | FailedCall() | 0xd6bda275 |
|----------+---------------------------------------+--------------------------------------------------------------------|
| Error | InvalidInitialization() | 0xf92ee8a9 |
|----------+---------------------------------------+--------------------------------------------------------------------|
| Error | NotHostOwner(address) | 0x21bfda10 |
|----------+---------------------------------------+--------------------------------------------------------------------|
| Error | NotInitializing() | 0xd7e6bcf8 |
|----------+---------------------------------------+--------------------------------------------------------------------|
| Error | UUPSUnauthorizedCallContext() | 0xe07c8dba |
|----------+---------------------------------------+--------------------------------------------------------------------|
| Error | UUPSUnsupportedProxiableUUID(bytes32) | 0xaa1d49a4 |
╰----------+---------------------------------------+--------------------------------------------------------------------╯
EmptyUUPSProxyACL
╭----------+-------------------------------------------+--------------------------------------------------------------------╮
| Type | Signature | Selector |
+===========================================================================================================================+
| Function | UPGRADE_INTERFACE_VERSION() | 0xad3cb1cc |
|----------+-------------------------------------------+--------------------------------------------------------------------|
| Function | acceptOwnership() | 0x79ba5097 |
|----------+-------------------------------------------+--------------------------------------------------------------------|
| Function | initialize(address) | 0xc4d66de8 |
|----------+-------------------------------------------+--------------------------------------------------------------------|
| Function | owner() | 0x8da5cb5b |
|----------+-------------------------------------------+--------------------------------------------------------------------|
| Function | pendingOwner() | 0xe30c3978 |
|----------+-------------------------------------------+--------------------------------------------------------------------|
| Function | proxiableUUID() | 0x52d1902d |
|----------+-------------------------------------------+--------------------------------------------------------------------|
| Function | renounceOwnership() | 0x715018a6 |
|----------+-------------------------------------------+--------------------------------------------------------------------|
| Function | transferOwnership(address) | 0xf2fde38b |
|----------+-------------------------------------------+--------------------------------------------------------------------|
| Function | upgradeToAndCall(address,bytes) | 0x4f1ef286 |
|----------+-------------------------------------------+--------------------------------------------------------------------|
| Event | Initialized(uint64) | 0xc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2 |
|----------+-------------------------------------------+--------------------------------------------------------------------|
| Event | OwnershipTransferStarted(address,address) | 0x38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e22700 |
|----------+-------------------------------------------+--------------------------------------------------------------------|
| Event | OwnershipTransferred(address,address) | 0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0 |
|----------+-------------------------------------------+--------------------------------------------------------------------|
| Event | Upgraded(address) | 0xbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b |
|----------+-------------------------------------------+--------------------------------------------------------------------|
| Error | AddressEmptyCode(address) | 0x9996b315 |
|----------+-------------------------------------------+--------------------------------------------------------------------|
| Error | ERC1967InvalidImplementation(address) | 0x4c9c8ce3 |
|----------+-------------------------------------------+--------------------------------------------------------------------|
| Error | ERC1967NonPayable() | 0xb398979f |
|----------+-------------------------------------------+--------------------------------------------------------------------|
| Error | FailedCall() | 0xd6bda275 |
|----------+-------------------------------------------+--------------------------------------------------------------------|
| Error | InvalidInitialization() | 0xf92ee8a9 |
|----------+-------------------------------------------+--------------------------------------------------------------------|
| Error | NotInitializing() | 0xd7e6bcf8 |
|----------+-------------------------------------------+--------------------------------------------------------------------|
| Error | OwnableInvalidOwner(address) | 0x1e4fbdf7 |
|----------+-------------------------------------------+--------------------------------------------------------------------|
| Error | OwnableUnauthorizedAccount(address) | 0x118cdaa7 |
|----------+-------------------------------------------+--------------------------------------------------------------------|
| Error | UUPSUnauthorizedCallContext() | 0xe07c8dba |
|----------+-------------------------------------------+--------------------------------------------------------------------|
| Error | UUPSUnsupportedProxiableUUID(bytes32) | 0xaa1d49a4 |
╰----------+-------------------------------------------+--------------------------------------------------------------------╯
PauserSet
╭----------+-------------------------------+--------------------------------------------------------------------╮
| Type | Signature | Selector |
+===============================================================================================================+
| Function | addPauser(address) | 0x82dc1ec4 |
|----------+-------------------------------+--------------------------------------------------------------------|
| Function | getVersion() | 0x0d8e6e2c |
|----------+-------------------------------+--------------------------------------------------------------------|
| Function | isPauser(address) | 0x46fbf68e |
|----------+-------------------------------+--------------------------------------------------------------------|
| Function | removePauser(address) | 0x6b2c0f55 |
|----------+-------------------------------+--------------------------------------------------------------------|
| Function | swapPauser(address,address) | 0x5c1d802b |
|----------+-------------------------------+--------------------------------------------------------------------|
| Event | AddPauser(address) | 0x0ebbf213a7f4622f20363f9564db9ade037985216f5c59027b98d25eba9f3f40 |
|----------+-------------------------------+--------------------------------------------------------------------|
| Event | RemovePauser(address) | 0xfaaa58da621174b2a60928f9770a6e4ff8b6ad59a1ab5bc3cc9a2fe7b52940ab |
|----------+-------------------------------+--------------------------------------------------------------------|
| Event | SwapPauser(address,address) | 0x3b13241d00fed42521a881fa11572547b2f695930d5bdcda93c07b28781b041e |
|----------+-------------------------------+--------------------------------------------------------------------|
| Error | AccountAlreadyPauser(address) | 0x5e33c936 |
|----------+-------------------------------+--------------------------------------------------------------------|
| Error | AccountNotPauser(address) | 0x39463109 |
|----------+-------------------------------+--------------------------------------------------------------------|
| Error | InvalidNullPauser() | 0x3555aed1 |
|----------+-------------------------------+--------------------------------------------------------------------|
| Error | NotHostOwner(address) | 0x21bfda10 |
╰----------+-------------------------------+--------------------------------------------------------------------╯
IPauserSet
╭----------+-------------------------------+--------------------------------------------------------------------╮
| Type | Signature | Selector |
+===============================================================================================================+
| Function | addPauser(address) | 0x82dc1ec4 |
|----------+-------------------------------+--------------------------------------------------------------------|
| Function | getVersion() | 0x0d8e6e2c |
|----------+-------------------------------+--------------------------------------------------------------------|
| Function | isPauser(address) | 0x46fbf68e |
|----------+-------------------------------+--------------------------------------------------------------------|
| Function | removePauser(address) | 0x6b2c0f55 |
|----------+-------------------------------+--------------------------------------------------------------------|
| Event | AddPauser(address) | 0x0ebbf213a7f4622f20363f9564db9ade037985216f5c59027b98d25eba9f3f40 |
|----------+-------------------------------+--------------------------------------------------------------------|
| Event | RemovePauser(address) | 0xfaaa58da621174b2a60928f9770a6e4ff8b6ad59a1ab5bc3cc9a2fe7b52940ab |
|----------+-------------------------------+--------------------------------------------------------------------|
| Event | SwapPauser(address,address) | 0x3b13241d00fed42521a881fa11572547b2f695930d5bdcda93c07b28781b041e |
|----------+-------------------------------+--------------------------------------------------------------------|
| Error | AccountAlreadyPauser(address) | 0x5e33c936 |
|----------+-------------------------------+--------------------------------------------------------------------|
| Error | AccountNotPauser(address) | 0x39463109 |
|----------+-------------------------------+--------------------------------------------------------------------|
| Error | InvalidNullPauser() | 0x3555aed1 |
╰----------+-------------------------------+--------------------------------------------------------------------╯
ACLOwnable
╭-------+-----------------------+------------╮
| Type | Signature | Selector |
+============================================+
| Error | NotHostOwner(address) | 0x21bfda10 |
╰-------+-----------------------+------------╯
EIP712UpgradeableCrossChain
╭----------+-------------------------+--------------------------------------------------------------------╮
| Type | Signature | Selector |
+=========================================================================================================+
| Function | eip712Domain() | 0x84b0196e |
|----------+-------------------------+--------------------------------------------------------------------|
| Event | EIP712DomainChanged() | 0x0a6387c9ea3628b88a633bb4f3b151770f70085117a15f9bf3787cda53f13d31 |
|----------+-------------------------+--------------------------------------------------------------------|
| Event | Initialized(uint64) | 0xc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2 |
|----------+-------------------------+--------------------------------------------------------------------|
| Error | InvalidInitialization() | 0xf92ee8a9 |
|----------+-------------------------+--------------------------------------------------------------------|
| Error | NotInitializing() | 0xd7e6bcf8 |
╰----------+-------------------------+--------------------------------------------------------------------╯
UUPSUpgradeableEmptyProxy
╭----------+---------------------------------------+--------------------------------------------------------------------╮
| Type | Signature | Selector |
+=======================================================================================================================+
| Function | UPGRADE_INTERFACE_VERSION() | 0xad3cb1cc |
|----------+---------------------------------------+--------------------------------------------------------------------|
| Function | proxiableUUID() | 0x52d1902d |
|----------+---------------------------------------+--------------------------------------------------------------------|
| Function | upgradeToAndCall(address,bytes) | 0x4f1ef286 |
|----------+---------------------------------------+--------------------------------------------------------------------|
| Event | Initialized(uint64) | 0xc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2 |
|----------+---------------------------------------+--------------------------------------------------------------------|
| Event | Upgraded(address) | 0xbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b |
|----------+---------------------------------------+--------------------------------------------------------------------|
| Error | AddressEmptyCode(address) | 0x9996b315 |
|----------+---------------------------------------+--------------------------------------------------------------------|
| Error | ERC1967InvalidImplementation(address) | 0x4c9c8ce3 |
|----------+---------------------------------------+--------------------------------------------------------------------|
| Error | ERC1967NonPayable() | 0xb398979f |
|----------+---------------------------------------+--------------------------------------------------------------------|
| Error | FailedCall() | 0xd6bda275 |
|----------+---------------------------------------+--------------------------------------------------------------------|
| Error | InvalidInitialization() | 0xf92ee8a9 |
|----------+---------------------------------------+--------------------------------------------------------------------|
| Error | NotInitializing() | 0xd7e6bcf8 |
|----------+---------------------------------------+--------------------------------------------------------------------|
| Error | NotInitializingFromEmptyProxy() | 0x6f4f731f |
|----------+---------------------------------------+--------------------------------------------------------------------|
| Error | UUPSUnauthorizedCallContext() | 0xe07c8dba |
|----------+---------------------------------------+--------------------------------------------------------------------|
| Error | UUPSUnsupportedProxiableUUID(bytes32) | 0xaa1d49a4 |
╰----------+---------------------------------------+--------------------------------------------------------------------╯