@venusprotocol/governance-contracts 2.5.0-dev.3 → 2.5.0-dev.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/deployments/basesepolia/.chainId +1 -0
  2. package/deployments/basesepolia/AccessControlManager.json +573 -0
  3. package/deployments/basesepolia/solcInputs/8462bae4a0ff7e7203ecab090cdf091c.json +151 -0
  4. package/deployments/basesepolia.json +369 -0
  5. package/deployments/basesepolia_addresses.json +7 -0
  6. package/deployments/opmainnet/ACMCommandsAggregator.json +366 -0
  7. package/deployments/opmainnet/CriticalTimelock.json +691 -0
  8. package/deployments/opmainnet/DefaultProxyAdmin.json +200 -0
  9. package/deployments/opmainnet/FastTrackTimelock.json +691 -0
  10. package/deployments/opmainnet/NormalTimelock.json +691 -0
  11. package/deployments/opmainnet/OmnichainExecutorOwner.json +555 -0
  12. package/deployments/opmainnet/OmnichainExecutorOwner_Implementation.json +600 -0
  13. package/deployments/opmainnet/OmnichainExecutorOwner_Proxy.json +262 -0
  14. package/deployments/opmainnet/OmnichainGovernanceExecutor.json +1840 -0
  15. package/deployments/opmainnet/solcInputs/1529d9b60b0ef27513a7cc552e55ce94.json +40 -0
  16. package/deployments/opmainnet/solcInputs/3d889dc49c1cae3347e0aa149d88041a.json +40 -0
  17. package/deployments/opmainnet/solcInputs/7c1c52f606ac52c4a02b26a42126e15c.json +229 -0
  18. package/deployments/opmainnet/solcInputs/c8adce9942919fd992f7532e82a0e082.json +43 -0
  19. package/deployments/opmainnet.json +3859 -0
  20. package/deployments/opmainnet_addresses.json +10 -1
  21. package/deployments/zksyncmainnet/ACMCommandsAggregator.json +465 -0
  22. package/deployments/zksyncmainnet/CriticalTimelock.json +752 -0
  23. package/deployments/zksyncmainnet/DefaultProxyAdmin.json +284 -0
  24. package/deployments/zksyncmainnet/FastTrackTimelock.json +790 -0
  25. package/deployments/zksyncmainnet/NormalTimelock.json +790 -0
  26. package/deployments/zksyncmainnet/OmnichainExecutorOwner.json +650 -0
  27. package/deployments/zksyncmainnet/OmnichainExecutorOwner_Implementation.json +698 -0
  28. package/deployments/zksyncmainnet/OmnichainExecutorOwner_Proxy.json +360 -0
  29. package/deployments/zksyncmainnet/OmnichainGovernanceExecutor.json +1938 -0
  30. package/deployments/zksyncmainnet/solcInputs/0be793521835d17f112344b451092640.json +43 -0
  31. package/deployments/zksyncmainnet/solcInputs/9f6319a1ea3d6a4958a4dd01d54ec8c3.json +34 -0
  32. package/deployments/zksyncmainnet/solcInputs/f73c651cde515a8a15ded365c47294a4.json +34 -0
  33. package/deployments/zksyncmainnet/solcInputs/fd2a9ac8f832f234262849a7c933f900.json +217 -0
  34. package/deployments/zksyncmainnet.json +3859 -0
  35. package/deployments/zksyncmainnet_addresses.json +10 -1
  36. package/dist/hardhat.config.d.ts.map +1 -1
  37. package/dist/hardhat.config.js +15 -0
  38. package/dist/hardhat.config.js.map +1 -1
  39. package/dist/helpers/deploy/constants.d.ts +1 -0
  40. package/dist/helpers/deploy/constants.d.ts.map +1 -1
  41. package/dist/helpers/deploy/constants.js +2 -0
  42. package/dist/helpers/deploy/constants.js.map +1 -1
  43. package/dist/helpers/deploy/deploymentConfig.d.ts.map +1 -1
  44. package/dist/helpers/deploy/deploymentConfig.js +6 -0
  45. package/dist/helpers/deploy/deploymentConfig.js.map +1 -1
  46. package/dist/helpers/deploy/deploymentUtils.d.ts.map +1 -1
  47. package/dist/helpers/deploy/deploymentUtils.js +16 -1
  48. package/dist/helpers/deploy/deploymentUtils.js.map +1 -1
  49. package/package.json +1 -1
@@ -2,6 +2,251 @@
2
2
  "name": "opmainnet",
3
3
  "chainId": "10",
4
4
  "contracts": {
5
+ "ACMCommandsAggregator": {
6
+ "address": "0xbbEBaF646e7a3E4064a899e68565B1b439eFdf70",
7
+ "abi": [
8
+ {
9
+ "inputs": [
10
+ {
11
+ "internalType": "contract IAccessControlManagerV8",
12
+ "name": "_acm",
13
+ "type": "address"
14
+ }
15
+ ],
16
+ "stateMutability": "nonpayable",
17
+ "type": "constructor"
18
+ },
19
+ {
20
+ "inputs": [],
21
+ "name": "EmptyPermissions",
22
+ "type": "error"
23
+ },
24
+ {
25
+ "inputs": [],
26
+ "name": "ZeroAddressNotAllowed",
27
+ "type": "error"
28
+ },
29
+ {
30
+ "anonymous": false,
31
+ "inputs": [
32
+ {
33
+ "indexed": false,
34
+ "internalType": "uint256",
35
+ "name": "index",
36
+ "type": "uint256"
37
+ }
38
+ ],
39
+ "name": "GrantPermissionsAdded",
40
+ "type": "event"
41
+ },
42
+ {
43
+ "anonymous": false,
44
+ "inputs": [
45
+ {
46
+ "indexed": false,
47
+ "internalType": "uint256",
48
+ "name": "index",
49
+ "type": "uint256"
50
+ }
51
+ ],
52
+ "name": "GrantPermissionsExecuted",
53
+ "type": "event"
54
+ },
55
+ {
56
+ "anonymous": false,
57
+ "inputs": [
58
+ {
59
+ "indexed": false,
60
+ "internalType": "uint256",
61
+ "name": "index",
62
+ "type": "uint256"
63
+ }
64
+ ],
65
+ "name": "RevokePermissionsAdded",
66
+ "type": "event"
67
+ },
68
+ {
69
+ "anonymous": false,
70
+ "inputs": [
71
+ {
72
+ "indexed": false,
73
+ "internalType": "uint256",
74
+ "name": "index",
75
+ "type": "uint256"
76
+ }
77
+ ],
78
+ "name": "RevokePermissionsExecuted",
79
+ "type": "event"
80
+ },
81
+ {
82
+ "inputs": [],
83
+ "name": "ACM",
84
+ "outputs": [
85
+ {
86
+ "internalType": "contract IAccessControlManagerV8",
87
+ "name": "",
88
+ "type": "address"
89
+ }
90
+ ],
91
+ "stateMutability": "view",
92
+ "type": "function"
93
+ },
94
+ {
95
+ "inputs": [
96
+ {
97
+ "components": [
98
+ {
99
+ "internalType": "address",
100
+ "name": "contractAddress",
101
+ "type": "address"
102
+ },
103
+ {
104
+ "internalType": "string",
105
+ "name": "functionSig",
106
+ "type": "string"
107
+ },
108
+ {
109
+ "internalType": "address",
110
+ "name": "account",
111
+ "type": "address"
112
+ }
113
+ ],
114
+ "internalType": "struct ACMCommandsAggregator.Permission[]",
115
+ "name": "_permissions",
116
+ "type": "tuple[]"
117
+ }
118
+ ],
119
+ "name": "addGrantPermissions",
120
+ "outputs": [],
121
+ "stateMutability": "nonpayable",
122
+ "type": "function"
123
+ },
124
+ {
125
+ "inputs": [
126
+ {
127
+ "components": [
128
+ {
129
+ "internalType": "address",
130
+ "name": "contractAddress",
131
+ "type": "address"
132
+ },
133
+ {
134
+ "internalType": "string",
135
+ "name": "functionSig",
136
+ "type": "string"
137
+ },
138
+ {
139
+ "internalType": "address",
140
+ "name": "account",
141
+ "type": "address"
142
+ }
143
+ ],
144
+ "internalType": "struct ACMCommandsAggregator.Permission[]",
145
+ "name": "_permissions",
146
+ "type": "tuple[]"
147
+ }
148
+ ],
149
+ "name": "addRevokePermissions",
150
+ "outputs": [],
151
+ "stateMutability": "nonpayable",
152
+ "type": "function"
153
+ },
154
+ {
155
+ "inputs": [
156
+ {
157
+ "internalType": "uint256",
158
+ "name": "index",
159
+ "type": "uint256"
160
+ }
161
+ ],
162
+ "name": "executeGrantPermissions",
163
+ "outputs": [],
164
+ "stateMutability": "nonpayable",
165
+ "type": "function"
166
+ },
167
+ {
168
+ "inputs": [
169
+ {
170
+ "internalType": "uint256",
171
+ "name": "index",
172
+ "type": "uint256"
173
+ }
174
+ ],
175
+ "name": "executeRevokePermissions",
176
+ "outputs": [],
177
+ "stateMutability": "nonpayable",
178
+ "type": "function"
179
+ },
180
+ {
181
+ "inputs": [
182
+ {
183
+ "internalType": "uint256",
184
+ "name": "",
185
+ "type": "uint256"
186
+ },
187
+ {
188
+ "internalType": "uint256",
189
+ "name": "",
190
+ "type": "uint256"
191
+ }
192
+ ],
193
+ "name": "grantPermissions",
194
+ "outputs": [
195
+ {
196
+ "internalType": "address",
197
+ "name": "contractAddress",
198
+ "type": "address"
199
+ },
200
+ {
201
+ "internalType": "string",
202
+ "name": "functionSig",
203
+ "type": "string"
204
+ },
205
+ {
206
+ "internalType": "address",
207
+ "name": "account",
208
+ "type": "address"
209
+ }
210
+ ],
211
+ "stateMutability": "view",
212
+ "type": "function"
213
+ },
214
+ {
215
+ "inputs": [
216
+ {
217
+ "internalType": "uint256",
218
+ "name": "",
219
+ "type": "uint256"
220
+ },
221
+ {
222
+ "internalType": "uint256",
223
+ "name": "",
224
+ "type": "uint256"
225
+ }
226
+ ],
227
+ "name": "revokePermissions",
228
+ "outputs": [
229
+ {
230
+ "internalType": "address",
231
+ "name": "contractAddress",
232
+ "type": "address"
233
+ },
234
+ {
235
+ "internalType": "string",
236
+ "name": "functionSig",
237
+ "type": "string"
238
+ },
239
+ {
240
+ "internalType": "address",
241
+ "name": "account",
242
+ "type": "address"
243
+ }
244
+ ],
245
+ "stateMutability": "view",
246
+ "type": "function"
247
+ }
248
+ ]
249
+ },
5
250
  "AccessControlManager": {
6
251
  "address": "0xD71b1F33f6B0259683f11174EE4Ddc2bb9cE4eD6",
7
252
  "abi": [
@@ -364,6 +609,3620 @@
364
609
  "type": "function"
365
610
  }
366
611
  ]
612
+ },
613
+ "CriticalTimelock": {
614
+ "address": "0xB82479bc345CAA7326D7d21306972033226fC185",
615
+ "abi": [
616
+ {
617
+ "inputs": [
618
+ {
619
+ "internalType": "address",
620
+ "name": "admin_",
621
+ "type": "address"
622
+ },
623
+ {
624
+ "internalType": "uint256",
625
+ "name": "delay_",
626
+ "type": "uint256"
627
+ }
628
+ ],
629
+ "stateMutability": "nonpayable",
630
+ "type": "constructor"
631
+ },
632
+ {
633
+ "inputs": [],
634
+ "name": "ZeroAddressNotAllowed",
635
+ "type": "error"
636
+ },
637
+ {
638
+ "anonymous": false,
639
+ "inputs": [
640
+ {
641
+ "indexed": true,
642
+ "internalType": "bytes32",
643
+ "name": "txHash",
644
+ "type": "bytes32"
645
+ },
646
+ {
647
+ "indexed": true,
648
+ "internalType": "address",
649
+ "name": "target",
650
+ "type": "address"
651
+ },
652
+ {
653
+ "indexed": false,
654
+ "internalType": "uint256",
655
+ "name": "value",
656
+ "type": "uint256"
657
+ },
658
+ {
659
+ "indexed": false,
660
+ "internalType": "string",
661
+ "name": "signature",
662
+ "type": "string"
663
+ },
664
+ {
665
+ "indexed": false,
666
+ "internalType": "bytes",
667
+ "name": "data",
668
+ "type": "bytes"
669
+ },
670
+ {
671
+ "indexed": false,
672
+ "internalType": "uint256",
673
+ "name": "eta",
674
+ "type": "uint256"
675
+ }
676
+ ],
677
+ "name": "CancelTransaction",
678
+ "type": "event"
679
+ },
680
+ {
681
+ "anonymous": false,
682
+ "inputs": [
683
+ {
684
+ "indexed": true,
685
+ "internalType": "bytes32",
686
+ "name": "txHash",
687
+ "type": "bytes32"
688
+ },
689
+ {
690
+ "indexed": true,
691
+ "internalType": "address",
692
+ "name": "target",
693
+ "type": "address"
694
+ },
695
+ {
696
+ "indexed": false,
697
+ "internalType": "uint256",
698
+ "name": "value",
699
+ "type": "uint256"
700
+ },
701
+ {
702
+ "indexed": false,
703
+ "internalType": "string",
704
+ "name": "signature",
705
+ "type": "string"
706
+ },
707
+ {
708
+ "indexed": false,
709
+ "internalType": "bytes",
710
+ "name": "data",
711
+ "type": "bytes"
712
+ },
713
+ {
714
+ "indexed": false,
715
+ "internalType": "uint256",
716
+ "name": "eta",
717
+ "type": "uint256"
718
+ }
719
+ ],
720
+ "name": "ExecuteTransaction",
721
+ "type": "event"
722
+ },
723
+ {
724
+ "anonymous": false,
725
+ "inputs": [
726
+ {
727
+ "indexed": true,
728
+ "internalType": "address",
729
+ "name": "oldAdmin",
730
+ "type": "address"
731
+ },
732
+ {
733
+ "indexed": true,
734
+ "internalType": "address",
735
+ "name": "newAdmin",
736
+ "type": "address"
737
+ }
738
+ ],
739
+ "name": "NewAdmin",
740
+ "type": "event"
741
+ },
742
+ {
743
+ "anonymous": false,
744
+ "inputs": [
745
+ {
746
+ "indexed": true,
747
+ "internalType": "uint256",
748
+ "name": "oldDelay",
749
+ "type": "uint256"
750
+ },
751
+ {
752
+ "indexed": true,
753
+ "internalType": "uint256",
754
+ "name": "newDelay",
755
+ "type": "uint256"
756
+ }
757
+ ],
758
+ "name": "NewDelay",
759
+ "type": "event"
760
+ },
761
+ {
762
+ "anonymous": false,
763
+ "inputs": [
764
+ {
765
+ "indexed": true,
766
+ "internalType": "address",
767
+ "name": "newPendingAdmin",
768
+ "type": "address"
769
+ }
770
+ ],
771
+ "name": "NewPendingAdmin",
772
+ "type": "event"
773
+ },
774
+ {
775
+ "anonymous": false,
776
+ "inputs": [
777
+ {
778
+ "indexed": true,
779
+ "internalType": "bytes32",
780
+ "name": "txHash",
781
+ "type": "bytes32"
782
+ },
783
+ {
784
+ "indexed": true,
785
+ "internalType": "address",
786
+ "name": "target",
787
+ "type": "address"
788
+ },
789
+ {
790
+ "indexed": false,
791
+ "internalType": "uint256",
792
+ "name": "value",
793
+ "type": "uint256"
794
+ },
795
+ {
796
+ "indexed": false,
797
+ "internalType": "string",
798
+ "name": "signature",
799
+ "type": "string"
800
+ },
801
+ {
802
+ "indexed": false,
803
+ "internalType": "bytes",
804
+ "name": "data",
805
+ "type": "bytes"
806
+ },
807
+ {
808
+ "indexed": false,
809
+ "internalType": "uint256",
810
+ "name": "eta",
811
+ "type": "uint256"
812
+ }
813
+ ],
814
+ "name": "QueueTransaction",
815
+ "type": "event"
816
+ },
817
+ {
818
+ "stateMutability": "payable",
819
+ "type": "fallback"
820
+ },
821
+ {
822
+ "inputs": [],
823
+ "name": "GRACE_PERIOD",
824
+ "outputs": [
825
+ {
826
+ "internalType": "uint256",
827
+ "name": "",
828
+ "type": "uint256"
829
+ }
830
+ ],
831
+ "stateMutability": "view",
832
+ "type": "function"
833
+ },
834
+ {
835
+ "inputs": [],
836
+ "name": "MAXIMUM_DELAY",
837
+ "outputs": [
838
+ {
839
+ "internalType": "uint256",
840
+ "name": "",
841
+ "type": "uint256"
842
+ }
843
+ ],
844
+ "stateMutability": "view",
845
+ "type": "function"
846
+ },
847
+ {
848
+ "inputs": [],
849
+ "name": "MINIMUM_DELAY",
850
+ "outputs": [
851
+ {
852
+ "internalType": "uint256",
853
+ "name": "",
854
+ "type": "uint256"
855
+ }
856
+ ],
857
+ "stateMutability": "view",
858
+ "type": "function"
859
+ },
860
+ {
861
+ "inputs": [],
862
+ "name": "acceptAdmin",
863
+ "outputs": [],
864
+ "stateMutability": "nonpayable",
865
+ "type": "function"
866
+ },
867
+ {
868
+ "inputs": [],
869
+ "name": "admin",
870
+ "outputs": [
871
+ {
872
+ "internalType": "address",
873
+ "name": "",
874
+ "type": "address"
875
+ }
876
+ ],
877
+ "stateMutability": "view",
878
+ "type": "function"
879
+ },
880
+ {
881
+ "inputs": [
882
+ {
883
+ "internalType": "address",
884
+ "name": "target",
885
+ "type": "address"
886
+ },
887
+ {
888
+ "internalType": "uint256",
889
+ "name": "value",
890
+ "type": "uint256"
891
+ },
892
+ {
893
+ "internalType": "string",
894
+ "name": "signature",
895
+ "type": "string"
896
+ },
897
+ {
898
+ "internalType": "bytes",
899
+ "name": "data",
900
+ "type": "bytes"
901
+ },
902
+ {
903
+ "internalType": "uint256",
904
+ "name": "eta",
905
+ "type": "uint256"
906
+ }
907
+ ],
908
+ "name": "cancelTransaction",
909
+ "outputs": [],
910
+ "stateMutability": "nonpayable",
911
+ "type": "function"
912
+ },
913
+ {
914
+ "inputs": [],
915
+ "name": "delay",
916
+ "outputs": [
917
+ {
918
+ "internalType": "uint256",
919
+ "name": "",
920
+ "type": "uint256"
921
+ }
922
+ ],
923
+ "stateMutability": "view",
924
+ "type": "function"
925
+ },
926
+ {
927
+ "inputs": [
928
+ {
929
+ "internalType": "address",
930
+ "name": "target",
931
+ "type": "address"
932
+ },
933
+ {
934
+ "internalType": "uint256",
935
+ "name": "value",
936
+ "type": "uint256"
937
+ },
938
+ {
939
+ "internalType": "string",
940
+ "name": "signature",
941
+ "type": "string"
942
+ },
943
+ {
944
+ "internalType": "bytes",
945
+ "name": "data",
946
+ "type": "bytes"
947
+ },
948
+ {
949
+ "internalType": "uint256",
950
+ "name": "eta",
951
+ "type": "uint256"
952
+ }
953
+ ],
954
+ "name": "executeTransaction",
955
+ "outputs": [
956
+ {
957
+ "internalType": "bytes",
958
+ "name": "",
959
+ "type": "bytes"
960
+ }
961
+ ],
962
+ "stateMutability": "nonpayable",
963
+ "type": "function"
964
+ },
965
+ {
966
+ "inputs": [],
967
+ "name": "pendingAdmin",
968
+ "outputs": [
969
+ {
970
+ "internalType": "address",
971
+ "name": "",
972
+ "type": "address"
973
+ }
974
+ ],
975
+ "stateMutability": "view",
976
+ "type": "function"
977
+ },
978
+ {
979
+ "inputs": [
980
+ {
981
+ "internalType": "address",
982
+ "name": "target",
983
+ "type": "address"
984
+ },
985
+ {
986
+ "internalType": "uint256",
987
+ "name": "value",
988
+ "type": "uint256"
989
+ },
990
+ {
991
+ "internalType": "string",
992
+ "name": "signature",
993
+ "type": "string"
994
+ },
995
+ {
996
+ "internalType": "bytes",
997
+ "name": "data",
998
+ "type": "bytes"
999
+ },
1000
+ {
1001
+ "internalType": "uint256",
1002
+ "name": "eta",
1003
+ "type": "uint256"
1004
+ }
1005
+ ],
1006
+ "name": "queueTransaction",
1007
+ "outputs": [
1008
+ {
1009
+ "internalType": "bytes32",
1010
+ "name": "",
1011
+ "type": "bytes32"
1012
+ }
1013
+ ],
1014
+ "stateMutability": "nonpayable",
1015
+ "type": "function"
1016
+ },
1017
+ {
1018
+ "inputs": [
1019
+ {
1020
+ "internalType": "bytes32",
1021
+ "name": "",
1022
+ "type": "bytes32"
1023
+ }
1024
+ ],
1025
+ "name": "queuedTransactions",
1026
+ "outputs": [
1027
+ {
1028
+ "internalType": "bool",
1029
+ "name": "",
1030
+ "type": "bool"
1031
+ }
1032
+ ],
1033
+ "stateMutability": "view",
1034
+ "type": "function"
1035
+ },
1036
+ {
1037
+ "inputs": [
1038
+ {
1039
+ "internalType": "uint256",
1040
+ "name": "delay_",
1041
+ "type": "uint256"
1042
+ }
1043
+ ],
1044
+ "name": "setDelay",
1045
+ "outputs": [],
1046
+ "stateMutability": "nonpayable",
1047
+ "type": "function"
1048
+ },
1049
+ {
1050
+ "inputs": [
1051
+ {
1052
+ "internalType": "address",
1053
+ "name": "pendingAdmin_",
1054
+ "type": "address"
1055
+ }
1056
+ ],
1057
+ "name": "setPendingAdmin",
1058
+ "outputs": [],
1059
+ "stateMutability": "nonpayable",
1060
+ "type": "function"
1061
+ }
1062
+ ]
1063
+ },
1064
+ "DefaultProxyAdmin": {
1065
+ "address": "0xeaF9490cBEA6fF9bA1D23671C39a799CeD0DCED2",
1066
+ "abi": [
1067
+ {
1068
+ "inputs": [
1069
+ {
1070
+ "internalType": "address",
1071
+ "name": "initialOwner",
1072
+ "type": "address"
1073
+ }
1074
+ ],
1075
+ "stateMutability": "nonpayable",
1076
+ "type": "constructor"
1077
+ },
1078
+ {
1079
+ "anonymous": false,
1080
+ "inputs": [
1081
+ {
1082
+ "indexed": true,
1083
+ "internalType": "address",
1084
+ "name": "previousOwner",
1085
+ "type": "address"
1086
+ },
1087
+ {
1088
+ "indexed": true,
1089
+ "internalType": "address",
1090
+ "name": "newOwner",
1091
+ "type": "address"
1092
+ }
1093
+ ],
1094
+ "name": "OwnershipTransferred",
1095
+ "type": "event"
1096
+ },
1097
+ {
1098
+ "inputs": [
1099
+ {
1100
+ "internalType": "contract TransparentUpgradeableProxy",
1101
+ "name": "proxy",
1102
+ "type": "address"
1103
+ },
1104
+ {
1105
+ "internalType": "address",
1106
+ "name": "newAdmin",
1107
+ "type": "address"
1108
+ }
1109
+ ],
1110
+ "name": "changeProxyAdmin",
1111
+ "outputs": [],
1112
+ "stateMutability": "nonpayable",
1113
+ "type": "function"
1114
+ },
1115
+ {
1116
+ "inputs": [
1117
+ {
1118
+ "internalType": "contract TransparentUpgradeableProxy",
1119
+ "name": "proxy",
1120
+ "type": "address"
1121
+ }
1122
+ ],
1123
+ "name": "getProxyAdmin",
1124
+ "outputs": [
1125
+ {
1126
+ "internalType": "address",
1127
+ "name": "",
1128
+ "type": "address"
1129
+ }
1130
+ ],
1131
+ "stateMutability": "view",
1132
+ "type": "function"
1133
+ },
1134
+ {
1135
+ "inputs": [
1136
+ {
1137
+ "internalType": "contract TransparentUpgradeableProxy",
1138
+ "name": "proxy",
1139
+ "type": "address"
1140
+ }
1141
+ ],
1142
+ "name": "getProxyImplementation",
1143
+ "outputs": [
1144
+ {
1145
+ "internalType": "address",
1146
+ "name": "",
1147
+ "type": "address"
1148
+ }
1149
+ ],
1150
+ "stateMutability": "view",
1151
+ "type": "function"
1152
+ },
1153
+ {
1154
+ "inputs": [],
1155
+ "name": "owner",
1156
+ "outputs": [
1157
+ {
1158
+ "internalType": "address",
1159
+ "name": "",
1160
+ "type": "address"
1161
+ }
1162
+ ],
1163
+ "stateMutability": "view",
1164
+ "type": "function"
1165
+ },
1166
+ {
1167
+ "inputs": [],
1168
+ "name": "renounceOwnership",
1169
+ "outputs": [],
1170
+ "stateMutability": "nonpayable",
1171
+ "type": "function"
1172
+ },
1173
+ {
1174
+ "inputs": [
1175
+ {
1176
+ "internalType": "address",
1177
+ "name": "newOwner",
1178
+ "type": "address"
1179
+ }
1180
+ ],
1181
+ "name": "transferOwnership",
1182
+ "outputs": [],
1183
+ "stateMutability": "nonpayable",
1184
+ "type": "function"
1185
+ },
1186
+ {
1187
+ "inputs": [
1188
+ {
1189
+ "internalType": "contract TransparentUpgradeableProxy",
1190
+ "name": "proxy",
1191
+ "type": "address"
1192
+ },
1193
+ {
1194
+ "internalType": "address",
1195
+ "name": "implementation",
1196
+ "type": "address"
1197
+ }
1198
+ ],
1199
+ "name": "upgrade",
1200
+ "outputs": [],
1201
+ "stateMutability": "nonpayable",
1202
+ "type": "function"
1203
+ },
1204
+ {
1205
+ "inputs": [
1206
+ {
1207
+ "internalType": "contract TransparentUpgradeableProxy",
1208
+ "name": "proxy",
1209
+ "type": "address"
1210
+ },
1211
+ {
1212
+ "internalType": "address",
1213
+ "name": "implementation",
1214
+ "type": "address"
1215
+ },
1216
+ {
1217
+ "internalType": "bytes",
1218
+ "name": "data",
1219
+ "type": "bytes"
1220
+ }
1221
+ ],
1222
+ "name": "upgradeAndCall",
1223
+ "outputs": [],
1224
+ "stateMutability": "payable",
1225
+ "type": "function"
1226
+ }
1227
+ ]
1228
+ },
1229
+ "FastTrackTimelock": {
1230
+ "address": "0x508bD9C31E8d6760De04c70fe6c2b24B3cDea7E7",
1231
+ "abi": [
1232
+ {
1233
+ "inputs": [
1234
+ {
1235
+ "internalType": "address",
1236
+ "name": "admin_",
1237
+ "type": "address"
1238
+ },
1239
+ {
1240
+ "internalType": "uint256",
1241
+ "name": "delay_",
1242
+ "type": "uint256"
1243
+ }
1244
+ ],
1245
+ "stateMutability": "nonpayable",
1246
+ "type": "constructor"
1247
+ },
1248
+ {
1249
+ "inputs": [],
1250
+ "name": "ZeroAddressNotAllowed",
1251
+ "type": "error"
1252
+ },
1253
+ {
1254
+ "anonymous": false,
1255
+ "inputs": [
1256
+ {
1257
+ "indexed": true,
1258
+ "internalType": "bytes32",
1259
+ "name": "txHash",
1260
+ "type": "bytes32"
1261
+ },
1262
+ {
1263
+ "indexed": true,
1264
+ "internalType": "address",
1265
+ "name": "target",
1266
+ "type": "address"
1267
+ },
1268
+ {
1269
+ "indexed": false,
1270
+ "internalType": "uint256",
1271
+ "name": "value",
1272
+ "type": "uint256"
1273
+ },
1274
+ {
1275
+ "indexed": false,
1276
+ "internalType": "string",
1277
+ "name": "signature",
1278
+ "type": "string"
1279
+ },
1280
+ {
1281
+ "indexed": false,
1282
+ "internalType": "bytes",
1283
+ "name": "data",
1284
+ "type": "bytes"
1285
+ },
1286
+ {
1287
+ "indexed": false,
1288
+ "internalType": "uint256",
1289
+ "name": "eta",
1290
+ "type": "uint256"
1291
+ }
1292
+ ],
1293
+ "name": "CancelTransaction",
1294
+ "type": "event"
1295
+ },
1296
+ {
1297
+ "anonymous": false,
1298
+ "inputs": [
1299
+ {
1300
+ "indexed": true,
1301
+ "internalType": "bytes32",
1302
+ "name": "txHash",
1303
+ "type": "bytes32"
1304
+ },
1305
+ {
1306
+ "indexed": true,
1307
+ "internalType": "address",
1308
+ "name": "target",
1309
+ "type": "address"
1310
+ },
1311
+ {
1312
+ "indexed": false,
1313
+ "internalType": "uint256",
1314
+ "name": "value",
1315
+ "type": "uint256"
1316
+ },
1317
+ {
1318
+ "indexed": false,
1319
+ "internalType": "string",
1320
+ "name": "signature",
1321
+ "type": "string"
1322
+ },
1323
+ {
1324
+ "indexed": false,
1325
+ "internalType": "bytes",
1326
+ "name": "data",
1327
+ "type": "bytes"
1328
+ },
1329
+ {
1330
+ "indexed": false,
1331
+ "internalType": "uint256",
1332
+ "name": "eta",
1333
+ "type": "uint256"
1334
+ }
1335
+ ],
1336
+ "name": "ExecuteTransaction",
1337
+ "type": "event"
1338
+ },
1339
+ {
1340
+ "anonymous": false,
1341
+ "inputs": [
1342
+ {
1343
+ "indexed": true,
1344
+ "internalType": "address",
1345
+ "name": "oldAdmin",
1346
+ "type": "address"
1347
+ },
1348
+ {
1349
+ "indexed": true,
1350
+ "internalType": "address",
1351
+ "name": "newAdmin",
1352
+ "type": "address"
1353
+ }
1354
+ ],
1355
+ "name": "NewAdmin",
1356
+ "type": "event"
1357
+ },
1358
+ {
1359
+ "anonymous": false,
1360
+ "inputs": [
1361
+ {
1362
+ "indexed": true,
1363
+ "internalType": "uint256",
1364
+ "name": "oldDelay",
1365
+ "type": "uint256"
1366
+ },
1367
+ {
1368
+ "indexed": true,
1369
+ "internalType": "uint256",
1370
+ "name": "newDelay",
1371
+ "type": "uint256"
1372
+ }
1373
+ ],
1374
+ "name": "NewDelay",
1375
+ "type": "event"
1376
+ },
1377
+ {
1378
+ "anonymous": false,
1379
+ "inputs": [
1380
+ {
1381
+ "indexed": true,
1382
+ "internalType": "address",
1383
+ "name": "newPendingAdmin",
1384
+ "type": "address"
1385
+ }
1386
+ ],
1387
+ "name": "NewPendingAdmin",
1388
+ "type": "event"
1389
+ },
1390
+ {
1391
+ "anonymous": false,
1392
+ "inputs": [
1393
+ {
1394
+ "indexed": true,
1395
+ "internalType": "bytes32",
1396
+ "name": "txHash",
1397
+ "type": "bytes32"
1398
+ },
1399
+ {
1400
+ "indexed": true,
1401
+ "internalType": "address",
1402
+ "name": "target",
1403
+ "type": "address"
1404
+ },
1405
+ {
1406
+ "indexed": false,
1407
+ "internalType": "uint256",
1408
+ "name": "value",
1409
+ "type": "uint256"
1410
+ },
1411
+ {
1412
+ "indexed": false,
1413
+ "internalType": "string",
1414
+ "name": "signature",
1415
+ "type": "string"
1416
+ },
1417
+ {
1418
+ "indexed": false,
1419
+ "internalType": "bytes",
1420
+ "name": "data",
1421
+ "type": "bytes"
1422
+ },
1423
+ {
1424
+ "indexed": false,
1425
+ "internalType": "uint256",
1426
+ "name": "eta",
1427
+ "type": "uint256"
1428
+ }
1429
+ ],
1430
+ "name": "QueueTransaction",
1431
+ "type": "event"
1432
+ },
1433
+ {
1434
+ "stateMutability": "payable",
1435
+ "type": "fallback"
1436
+ },
1437
+ {
1438
+ "inputs": [],
1439
+ "name": "GRACE_PERIOD",
1440
+ "outputs": [
1441
+ {
1442
+ "internalType": "uint256",
1443
+ "name": "",
1444
+ "type": "uint256"
1445
+ }
1446
+ ],
1447
+ "stateMutability": "view",
1448
+ "type": "function"
1449
+ },
1450
+ {
1451
+ "inputs": [],
1452
+ "name": "MAXIMUM_DELAY",
1453
+ "outputs": [
1454
+ {
1455
+ "internalType": "uint256",
1456
+ "name": "",
1457
+ "type": "uint256"
1458
+ }
1459
+ ],
1460
+ "stateMutability": "view",
1461
+ "type": "function"
1462
+ },
1463
+ {
1464
+ "inputs": [],
1465
+ "name": "MINIMUM_DELAY",
1466
+ "outputs": [
1467
+ {
1468
+ "internalType": "uint256",
1469
+ "name": "",
1470
+ "type": "uint256"
1471
+ }
1472
+ ],
1473
+ "stateMutability": "view",
1474
+ "type": "function"
1475
+ },
1476
+ {
1477
+ "inputs": [],
1478
+ "name": "acceptAdmin",
1479
+ "outputs": [],
1480
+ "stateMutability": "nonpayable",
1481
+ "type": "function"
1482
+ },
1483
+ {
1484
+ "inputs": [],
1485
+ "name": "admin",
1486
+ "outputs": [
1487
+ {
1488
+ "internalType": "address",
1489
+ "name": "",
1490
+ "type": "address"
1491
+ }
1492
+ ],
1493
+ "stateMutability": "view",
1494
+ "type": "function"
1495
+ },
1496
+ {
1497
+ "inputs": [
1498
+ {
1499
+ "internalType": "address",
1500
+ "name": "target",
1501
+ "type": "address"
1502
+ },
1503
+ {
1504
+ "internalType": "uint256",
1505
+ "name": "value",
1506
+ "type": "uint256"
1507
+ },
1508
+ {
1509
+ "internalType": "string",
1510
+ "name": "signature",
1511
+ "type": "string"
1512
+ },
1513
+ {
1514
+ "internalType": "bytes",
1515
+ "name": "data",
1516
+ "type": "bytes"
1517
+ },
1518
+ {
1519
+ "internalType": "uint256",
1520
+ "name": "eta",
1521
+ "type": "uint256"
1522
+ }
1523
+ ],
1524
+ "name": "cancelTransaction",
1525
+ "outputs": [],
1526
+ "stateMutability": "nonpayable",
1527
+ "type": "function"
1528
+ },
1529
+ {
1530
+ "inputs": [],
1531
+ "name": "delay",
1532
+ "outputs": [
1533
+ {
1534
+ "internalType": "uint256",
1535
+ "name": "",
1536
+ "type": "uint256"
1537
+ }
1538
+ ],
1539
+ "stateMutability": "view",
1540
+ "type": "function"
1541
+ },
1542
+ {
1543
+ "inputs": [
1544
+ {
1545
+ "internalType": "address",
1546
+ "name": "target",
1547
+ "type": "address"
1548
+ },
1549
+ {
1550
+ "internalType": "uint256",
1551
+ "name": "value",
1552
+ "type": "uint256"
1553
+ },
1554
+ {
1555
+ "internalType": "string",
1556
+ "name": "signature",
1557
+ "type": "string"
1558
+ },
1559
+ {
1560
+ "internalType": "bytes",
1561
+ "name": "data",
1562
+ "type": "bytes"
1563
+ },
1564
+ {
1565
+ "internalType": "uint256",
1566
+ "name": "eta",
1567
+ "type": "uint256"
1568
+ }
1569
+ ],
1570
+ "name": "executeTransaction",
1571
+ "outputs": [
1572
+ {
1573
+ "internalType": "bytes",
1574
+ "name": "",
1575
+ "type": "bytes"
1576
+ }
1577
+ ],
1578
+ "stateMutability": "nonpayable",
1579
+ "type": "function"
1580
+ },
1581
+ {
1582
+ "inputs": [],
1583
+ "name": "pendingAdmin",
1584
+ "outputs": [
1585
+ {
1586
+ "internalType": "address",
1587
+ "name": "",
1588
+ "type": "address"
1589
+ }
1590
+ ],
1591
+ "stateMutability": "view",
1592
+ "type": "function"
1593
+ },
1594
+ {
1595
+ "inputs": [
1596
+ {
1597
+ "internalType": "address",
1598
+ "name": "target",
1599
+ "type": "address"
1600
+ },
1601
+ {
1602
+ "internalType": "uint256",
1603
+ "name": "value",
1604
+ "type": "uint256"
1605
+ },
1606
+ {
1607
+ "internalType": "string",
1608
+ "name": "signature",
1609
+ "type": "string"
1610
+ },
1611
+ {
1612
+ "internalType": "bytes",
1613
+ "name": "data",
1614
+ "type": "bytes"
1615
+ },
1616
+ {
1617
+ "internalType": "uint256",
1618
+ "name": "eta",
1619
+ "type": "uint256"
1620
+ }
1621
+ ],
1622
+ "name": "queueTransaction",
1623
+ "outputs": [
1624
+ {
1625
+ "internalType": "bytes32",
1626
+ "name": "",
1627
+ "type": "bytes32"
1628
+ }
1629
+ ],
1630
+ "stateMutability": "nonpayable",
1631
+ "type": "function"
1632
+ },
1633
+ {
1634
+ "inputs": [
1635
+ {
1636
+ "internalType": "bytes32",
1637
+ "name": "",
1638
+ "type": "bytes32"
1639
+ }
1640
+ ],
1641
+ "name": "queuedTransactions",
1642
+ "outputs": [
1643
+ {
1644
+ "internalType": "bool",
1645
+ "name": "",
1646
+ "type": "bool"
1647
+ }
1648
+ ],
1649
+ "stateMutability": "view",
1650
+ "type": "function"
1651
+ },
1652
+ {
1653
+ "inputs": [
1654
+ {
1655
+ "internalType": "uint256",
1656
+ "name": "delay_",
1657
+ "type": "uint256"
1658
+ }
1659
+ ],
1660
+ "name": "setDelay",
1661
+ "outputs": [],
1662
+ "stateMutability": "nonpayable",
1663
+ "type": "function"
1664
+ },
1665
+ {
1666
+ "inputs": [
1667
+ {
1668
+ "internalType": "address",
1669
+ "name": "pendingAdmin_",
1670
+ "type": "address"
1671
+ }
1672
+ ],
1673
+ "name": "setPendingAdmin",
1674
+ "outputs": [],
1675
+ "stateMutability": "nonpayable",
1676
+ "type": "function"
1677
+ }
1678
+ ]
1679
+ },
1680
+ "NormalTimelock": {
1681
+ "address": "0x0C6f1E6B4fDa846f63A0d5a8a73EB811E0e0C04b",
1682
+ "abi": [
1683
+ {
1684
+ "inputs": [
1685
+ {
1686
+ "internalType": "address",
1687
+ "name": "admin_",
1688
+ "type": "address"
1689
+ },
1690
+ {
1691
+ "internalType": "uint256",
1692
+ "name": "delay_",
1693
+ "type": "uint256"
1694
+ }
1695
+ ],
1696
+ "stateMutability": "nonpayable",
1697
+ "type": "constructor"
1698
+ },
1699
+ {
1700
+ "inputs": [],
1701
+ "name": "ZeroAddressNotAllowed",
1702
+ "type": "error"
1703
+ },
1704
+ {
1705
+ "anonymous": false,
1706
+ "inputs": [
1707
+ {
1708
+ "indexed": true,
1709
+ "internalType": "bytes32",
1710
+ "name": "txHash",
1711
+ "type": "bytes32"
1712
+ },
1713
+ {
1714
+ "indexed": true,
1715
+ "internalType": "address",
1716
+ "name": "target",
1717
+ "type": "address"
1718
+ },
1719
+ {
1720
+ "indexed": false,
1721
+ "internalType": "uint256",
1722
+ "name": "value",
1723
+ "type": "uint256"
1724
+ },
1725
+ {
1726
+ "indexed": false,
1727
+ "internalType": "string",
1728
+ "name": "signature",
1729
+ "type": "string"
1730
+ },
1731
+ {
1732
+ "indexed": false,
1733
+ "internalType": "bytes",
1734
+ "name": "data",
1735
+ "type": "bytes"
1736
+ },
1737
+ {
1738
+ "indexed": false,
1739
+ "internalType": "uint256",
1740
+ "name": "eta",
1741
+ "type": "uint256"
1742
+ }
1743
+ ],
1744
+ "name": "CancelTransaction",
1745
+ "type": "event"
1746
+ },
1747
+ {
1748
+ "anonymous": false,
1749
+ "inputs": [
1750
+ {
1751
+ "indexed": true,
1752
+ "internalType": "bytes32",
1753
+ "name": "txHash",
1754
+ "type": "bytes32"
1755
+ },
1756
+ {
1757
+ "indexed": true,
1758
+ "internalType": "address",
1759
+ "name": "target",
1760
+ "type": "address"
1761
+ },
1762
+ {
1763
+ "indexed": false,
1764
+ "internalType": "uint256",
1765
+ "name": "value",
1766
+ "type": "uint256"
1767
+ },
1768
+ {
1769
+ "indexed": false,
1770
+ "internalType": "string",
1771
+ "name": "signature",
1772
+ "type": "string"
1773
+ },
1774
+ {
1775
+ "indexed": false,
1776
+ "internalType": "bytes",
1777
+ "name": "data",
1778
+ "type": "bytes"
1779
+ },
1780
+ {
1781
+ "indexed": false,
1782
+ "internalType": "uint256",
1783
+ "name": "eta",
1784
+ "type": "uint256"
1785
+ }
1786
+ ],
1787
+ "name": "ExecuteTransaction",
1788
+ "type": "event"
1789
+ },
1790
+ {
1791
+ "anonymous": false,
1792
+ "inputs": [
1793
+ {
1794
+ "indexed": true,
1795
+ "internalType": "address",
1796
+ "name": "oldAdmin",
1797
+ "type": "address"
1798
+ },
1799
+ {
1800
+ "indexed": true,
1801
+ "internalType": "address",
1802
+ "name": "newAdmin",
1803
+ "type": "address"
1804
+ }
1805
+ ],
1806
+ "name": "NewAdmin",
1807
+ "type": "event"
1808
+ },
1809
+ {
1810
+ "anonymous": false,
1811
+ "inputs": [
1812
+ {
1813
+ "indexed": true,
1814
+ "internalType": "uint256",
1815
+ "name": "oldDelay",
1816
+ "type": "uint256"
1817
+ },
1818
+ {
1819
+ "indexed": true,
1820
+ "internalType": "uint256",
1821
+ "name": "newDelay",
1822
+ "type": "uint256"
1823
+ }
1824
+ ],
1825
+ "name": "NewDelay",
1826
+ "type": "event"
1827
+ },
1828
+ {
1829
+ "anonymous": false,
1830
+ "inputs": [
1831
+ {
1832
+ "indexed": true,
1833
+ "internalType": "address",
1834
+ "name": "newPendingAdmin",
1835
+ "type": "address"
1836
+ }
1837
+ ],
1838
+ "name": "NewPendingAdmin",
1839
+ "type": "event"
1840
+ },
1841
+ {
1842
+ "anonymous": false,
1843
+ "inputs": [
1844
+ {
1845
+ "indexed": true,
1846
+ "internalType": "bytes32",
1847
+ "name": "txHash",
1848
+ "type": "bytes32"
1849
+ },
1850
+ {
1851
+ "indexed": true,
1852
+ "internalType": "address",
1853
+ "name": "target",
1854
+ "type": "address"
1855
+ },
1856
+ {
1857
+ "indexed": false,
1858
+ "internalType": "uint256",
1859
+ "name": "value",
1860
+ "type": "uint256"
1861
+ },
1862
+ {
1863
+ "indexed": false,
1864
+ "internalType": "string",
1865
+ "name": "signature",
1866
+ "type": "string"
1867
+ },
1868
+ {
1869
+ "indexed": false,
1870
+ "internalType": "bytes",
1871
+ "name": "data",
1872
+ "type": "bytes"
1873
+ },
1874
+ {
1875
+ "indexed": false,
1876
+ "internalType": "uint256",
1877
+ "name": "eta",
1878
+ "type": "uint256"
1879
+ }
1880
+ ],
1881
+ "name": "QueueTransaction",
1882
+ "type": "event"
1883
+ },
1884
+ {
1885
+ "stateMutability": "payable",
1886
+ "type": "fallback"
1887
+ },
1888
+ {
1889
+ "inputs": [],
1890
+ "name": "GRACE_PERIOD",
1891
+ "outputs": [
1892
+ {
1893
+ "internalType": "uint256",
1894
+ "name": "",
1895
+ "type": "uint256"
1896
+ }
1897
+ ],
1898
+ "stateMutability": "view",
1899
+ "type": "function"
1900
+ },
1901
+ {
1902
+ "inputs": [],
1903
+ "name": "MAXIMUM_DELAY",
1904
+ "outputs": [
1905
+ {
1906
+ "internalType": "uint256",
1907
+ "name": "",
1908
+ "type": "uint256"
1909
+ }
1910
+ ],
1911
+ "stateMutability": "view",
1912
+ "type": "function"
1913
+ },
1914
+ {
1915
+ "inputs": [],
1916
+ "name": "MINIMUM_DELAY",
1917
+ "outputs": [
1918
+ {
1919
+ "internalType": "uint256",
1920
+ "name": "",
1921
+ "type": "uint256"
1922
+ }
1923
+ ],
1924
+ "stateMutability": "view",
1925
+ "type": "function"
1926
+ },
1927
+ {
1928
+ "inputs": [],
1929
+ "name": "acceptAdmin",
1930
+ "outputs": [],
1931
+ "stateMutability": "nonpayable",
1932
+ "type": "function"
1933
+ },
1934
+ {
1935
+ "inputs": [],
1936
+ "name": "admin",
1937
+ "outputs": [
1938
+ {
1939
+ "internalType": "address",
1940
+ "name": "",
1941
+ "type": "address"
1942
+ }
1943
+ ],
1944
+ "stateMutability": "view",
1945
+ "type": "function"
1946
+ },
1947
+ {
1948
+ "inputs": [
1949
+ {
1950
+ "internalType": "address",
1951
+ "name": "target",
1952
+ "type": "address"
1953
+ },
1954
+ {
1955
+ "internalType": "uint256",
1956
+ "name": "value",
1957
+ "type": "uint256"
1958
+ },
1959
+ {
1960
+ "internalType": "string",
1961
+ "name": "signature",
1962
+ "type": "string"
1963
+ },
1964
+ {
1965
+ "internalType": "bytes",
1966
+ "name": "data",
1967
+ "type": "bytes"
1968
+ },
1969
+ {
1970
+ "internalType": "uint256",
1971
+ "name": "eta",
1972
+ "type": "uint256"
1973
+ }
1974
+ ],
1975
+ "name": "cancelTransaction",
1976
+ "outputs": [],
1977
+ "stateMutability": "nonpayable",
1978
+ "type": "function"
1979
+ },
1980
+ {
1981
+ "inputs": [],
1982
+ "name": "delay",
1983
+ "outputs": [
1984
+ {
1985
+ "internalType": "uint256",
1986
+ "name": "",
1987
+ "type": "uint256"
1988
+ }
1989
+ ],
1990
+ "stateMutability": "view",
1991
+ "type": "function"
1992
+ },
1993
+ {
1994
+ "inputs": [
1995
+ {
1996
+ "internalType": "address",
1997
+ "name": "target",
1998
+ "type": "address"
1999
+ },
2000
+ {
2001
+ "internalType": "uint256",
2002
+ "name": "value",
2003
+ "type": "uint256"
2004
+ },
2005
+ {
2006
+ "internalType": "string",
2007
+ "name": "signature",
2008
+ "type": "string"
2009
+ },
2010
+ {
2011
+ "internalType": "bytes",
2012
+ "name": "data",
2013
+ "type": "bytes"
2014
+ },
2015
+ {
2016
+ "internalType": "uint256",
2017
+ "name": "eta",
2018
+ "type": "uint256"
2019
+ }
2020
+ ],
2021
+ "name": "executeTransaction",
2022
+ "outputs": [
2023
+ {
2024
+ "internalType": "bytes",
2025
+ "name": "",
2026
+ "type": "bytes"
2027
+ }
2028
+ ],
2029
+ "stateMutability": "nonpayable",
2030
+ "type": "function"
2031
+ },
2032
+ {
2033
+ "inputs": [],
2034
+ "name": "pendingAdmin",
2035
+ "outputs": [
2036
+ {
2037
+ "internalType": "address",
2038
+ "name": "",
2039
+ "type": "address"
2040
+ }
2041
+ ],
2042
+ "stateMutability": "view",
2043
+ "type": "function"
2044
+ },
2045
+ {
2046
+ "inputs": [
2047
+ {
2048
+ "internalType": "address",
2049
+ "name": "target",
2050
+ "type": "address"
2051
+ },
2052
+ {
2053
+ "internalType": "uint256",
2054
+ "name": "value",
2055
+ "type": "uint256"
2056
+ },
2057
+ {
2058
+ "internalType": "string",
2059
+ "name": "signature",
2060
+ "type": "string"
2061
+ },
2062
+ {
2063
+ "internalType": "bytes",
2064
+ "name": "data",
2065
+ "type": "bytes"
2066
+ },
2067
+ {
2068
+ "internalType": "uint256",
2069
+ "name": "eta",
2070
+ "type": "uint256"
2071
+ }
2072
+ ],
2073
+ "name": "queueTransaction",
2074
+ "outputs": [
2075
+ {
2076
+ "internalType": "bytes32",
2077
+ "name": "",
2078
+ "type": "bytes32"
2079
+ }
2080
+ ],
2081
+ "stateMutability": "nonpayable",
2082
+ "type": "function"
2083
+ },
2084
+ {
2085
+ "inputs": [
2086
+ {
2087
+ "internalType": "bytes32",
2088
+ "name": "",
2089
+ "type": "bytes32"
2090
+ }
2091
+ ],
2092
+ "name": "queuedTransactions",
2093
+ "outputs": [
2094
+ {
2095
+ "internalType": "bool",
2096
+ "name": "",
2097
+ "type": "bool"
2098
+ }
2099
+ ],
2100
+ "stateMutability": "view",
2101
+ "type": "function"
2102
+ },
2103
+ {
2104
+ "inputs": [
2105
+ {
2106
+ "internalType": "uint256",
2107
+ "name": "delay_",
2108
+ "type": "uint256"
2109
+ }
2110
+ ],
2111
+ "name": "setDelay",
2112
+ "outputs": [],
2113
+ "stateMutability": "nonpayable",
2114
+ "type": "function"
2115
+ },
2116
+ {
2117
+ "inputs": [
2118
+ {
2119
+ "internalType": "address",
2120
+ "name": "pendingAdmin_",
2121
+ "type": "address"
2122
+ }
2123
+ ],
2124
+ "name": "setPendingAdmin",
2125
+ "outputs": [],
2126
+ "stateMutability": "nonpayable",
2127
+ "type": "function"
2128
+ }
2129
+ ]
2130
+ },
2131
+ "OmnichainExecutorOwner": {
2132
+ "address": "0xe6d9Eb3A07a1dc4496fc71417D7A7b9d5666BaA3",
2133
+ "abi": [
2134
+ {
2135
+ "anonymous": false,
2136
+ "inputs": [
2137
+ {
2138
+ "indexed": false,
2139
+ "internalType": "address",
2140
+ "name": "previousAdmin",
2141
+ "type": "address"
2142
+ },
2143
+ {
2144
+ "indexed": false,
2145
+ "internalType": "address",
2146
+ "name": "newAdmin",
2147
+ "type": "address"
2148
+ }
2149
+ ],
2150
+ "name": "AdminChanged",
2151
+ "type": "event"
2152
+ },
2153
+ {
2154
+ "anonymous": false,
2155
+ "inputs": [
2156
+ {
2157
+ "indexed": true,
2158
+ "internalType": "address",
2159
+ "name": "beacon",
2160
+ "type": "address"
2161
+ }
2162
+ ],
2163
+ "name": "BeaconUpgraded",
2164
+ "type": "event"
2165
+ },
2166
+ {
2167
+ "anonymous": false,
2168
+ "inputs": [
2169
+ {
2170
+ "indexed": true,
2171
+ "internalType": "address",
2172
+ "name": "implementation",
2173
+ "type": "address"
2174
+ }
2175
+ ],
2176
+ "name": "Upgraded",
2177
+ "type": "event"
2178
+ },
2179
+ {
2180
+ "stateMutability": "payable",
2181
+ "type": "fallback"
2182
+ },
2183
+ {
2184
+ "inputs": [],
2185
+ "name": "admin",
2186
+ "outputs": [
2187
+ {
2188
+ "internalType": "address",
2189
+ "name": "admin_",
2190
+ "type": "address"
2191
+ }
2192
+ ],
2193
+ "stateMutability": "nonpayable",
2194
+ "type": "function"
2195
+ },
2196
+ {
2197
+ "inputs": [],
2198
+ "name": "implementation",
2199
+ "outputs": [
2200
+ {
2201
+ "internalType": "address",
2202
+ "name": "implementation_",
2203
+ "type": "address"
2204
+ }
2205
+ ],
2206
+ "stateMutability": "nonpayable",
2207
+ "type": "function"
2208
+ },
2209
+ {
2210
+ "inputs": [
2211
+ {
2212
+ "internalType": "address",
2213
+ "name": "newImplementation",
2214
+ "type": "address"
2215
+ }
2216
+ ],
2217
+ "name": "upgradeTo",
2218
+ "outputs": [],
2219
+ "stateMutability": "nonpayable",
2220
+ "type": "function"
2221
+ },
2222
+ {
2223
+ "inputs": [
2224
+ {
2225
+ "internalType": "address",
2226
+ "name": "newImplementation",
2227
+ "type": "address"
2228
+ },
2229
+ {
2230
+ "internalType": "bytes",
2231
+ "name": "data",
2232
+ "type": "bytes"
2233
+ }
2234
+ ],
2235
+ "name": "upgradeToAndCall",
2236
+ "outputs": [],
2237
+ "stateMutability": "payable",
2238
+ "type": "function"
2239
+ },
2240
+ {
2241
+ "stateMutability": "payable",
2242
+ "type": "receive"
2243
+ },
2244
+ {
2245
+ "inputs": [
2246
+ {
2247
+ "internalType": "address",
2248
+ "name": "sender",
2249
+ "type": "address"
2250
+ },
2251
+ {
2252
+ "internalType": "address",
2253
+ "name": "calledContract",
2254
+ "type": "address"
2255
+ },
2256
+ {
2257
+ "internalType": "string",
2258
+ "name": "methodSignature",
2259
+ "type": "string"
2260
+ }
2261
+ ],
2262
+ "name": "Unauthorized",
2263
+ "type": "error"
2264
+ },
2265
+ {
2266
+ "inputs": [],
2267
+ "name": "ZeroAddressNotAllowed",
2268
+ "type": "error"
2269
+ },
2270
+ {
2271
+ "anonymous": false,
2272
+ "inputs": [
2273
+ {
2274
+ "indexed": true,
2275
+ "internalType": "string",
2276
+ "name": "signature",
2277
+ "type": "string"
2278
+ },
2279
+ {
2280
+ "indexed": false,
2281
+ "internalType": "bool",
2282
+ "name": "active",
2283
+ "type": "bool"
2284
+ }
2285
+ ],
2286
+ "name": "FunctionRegistryChanged",
2287
+ "type": "event"
2288
+ },
2289
+ {
2290
+ "anonymous": false,
2291
+ "inputs": [
2292
+ {
2293
+ "indexed": false,
2294
+ "internalType": "uint8",
2295
+ "name": "version",
2296
+ "type": "uint8"
2297
+ }
2298
+ ],
2299
+ "name": "Initialized",
2300
+ "type": "event"
2301
+ },
2302
+ {
2303
+ "anonymous": false,
2304
+ "inputs": [
2305
+ {
2306
+ "indexed": false,
2307
+ "internalType": "address",
2308
+ "name": "oldAccessControlManager",
2309
+ "type": "address"
2310
+ },
2311
+ {
2312
+ "indexed": false,
2313
+ "internalType": "address",
2314
+ "name": "newAccessControlManager",
2315
+ "type": "address"
2316
+ }
2317
+ ],
2318
+ "name": "NewAccessControlManager",
2319
+ "type": "event"
2320
+ },
2321
+ {
2322
+ "anonymous": false,
2323
+ "inputs": [
2324
+ {
2325
+ "indexed": true,
2326
+ "internalType": "address",
2327
+ "name": "previousOwner",
2328
+ "type": "address"
2329
+ },
2330
+ {
2331
+ "indexed": true,
2332
+ "internalType": "address",
2333
+ "name": "newOwner",
2334
+ "type": "address"
2335
+ }
2336
+ ],
2337
+ "name": "OwnershipTransferStarted",
2338
+ "type": "event"
2339
+ },
2340
+ {
2341
+ "anonymous": false,
2342
+ "inputs": [
2343
+ {
2344
+ "indexed": true,
2345
+ "internalType": "address",
2346
+ "name": "previousOwner",
2347
+ "type": "address"
2348
+ },
2349
+ {
2350
+ "indexed": true,
2351
+ "internalType": "address",
2352
+ "name": "newOwner",
2353
+ "type": "address"
2354
+ }
2355
+ ],
2356
+ "name": "OwnershipTransferred",
2357
+ "type": "event"
2358
+ },
2359
+ {
2360
+ "inputs": [],
2361
+ "name": "OMNICHAIN_GOVERNANCE_EXECUTOR",
2362
+ "outputs": [
2363
+ {
2364
+ "internalType": "contract IOmnichainGovernanceExecutor",
2365
+ "name": "",
2366
+ "type": "address"
2367
+ }
2368
+ ],
2369
+ "stateMutability": "view",
2370
+ "type": "function"
2371
+ },
2372
+ {
2373
+ "inputs": [],
2374
+ "name": "acceptOwnership",
2375
+ "outputs": [],
2376
+ "stateMutability": "nonpayable",
2377
+ "type": "function"
2378
+ },
2379
+ {
2380
+ "inputs": [],
2381
+ "name": "accessControlManager",
2382
+ "outputs": [
2383
+ {
2384
+ "internalType": "contract IAccessControlManagerV8",
2385
+ "name": "",
2386
+ "type": "address"
2387
+ }
2388
+ ],
2389
+ "stateMutability": "view",
2390
+ "type": "function"
2391
+ },
2392
+ {
2393
+ "inputs": [
2394
+ {
2395
+ "internalType": "bytes4",
2396
+ "name": "",
2397
+ "type": "bytes4"
2398
+ }
2399
+ ],
2400
+ "name": "functionRegistry",
2401
+ "outputs": [
2402
+ {
2403
+ "internalType": "string",
2404
+ "name": "",
2405
+ "type": "string"
2406
+ }
2407
+ ],
2408
+ "stateMutability": "view",
2409
+ "type": "function"
2410
+ },
2411
+ {
2412
+ "inputs": [
2413
+ {
2414
+ "internalType": "address",
2415
+ "name": "accessControlManager_",
2416
+ "type": "address"
2417
+ }
2418
+ ],
2419
+ "name": "initialize",
2420
+ "outputs": [],
2421
+ "stateMutability": "nonpayable",
2422
+ "type": "function"
2423
+ },
2424
+ {
2425
+ "inputs": [],
2426
+ "name": "owner",
2427
+ "outputs": [
2428
+ {
2429
+ "internalType": "address",
2430
+ "name": "",
2431
+ "type": "address"
2432
+ }
2433
+ ],
2434
+ "stateMutability": "view",
2435
+ "type": "function"
2436
+ },
2437
+ {
2438
+ "inputs": [],
2439
+ "name": "pendingOwner",
2440
+ "outputs": [
2441
+ {
2442
+ "internalType": "address",
2443
+ "name": "",
2444
+ "type": "address"
2445
+ }
2446
+ ],
2447
+ "stateMutability": "view",
2448
+ "type": "function"
2449
+ },
2450
+ {
2451
+ "inputs": [],
2452
+ "name": "renounceOwnership",
2453
+ "outputs": [],
2454
+ "stateMutability": "nonpayable",
2455
+ "type": "function"
2456
+ },
2457
+ {
2458
+ "inputs": [
2459
+ {
2460
+ "internalType": "address",
2461
+ "name": "accessControlManager_",
2462
+ "type": "address"
2463
+ }
2464
+ ],
2465
+ "name": "setAccessControlManager",
2466
+ "outputs": [],
2467
+ "stateMutability": "nonpayable",
2468
+ "type": "function"
2469
+ },
2470
+ {
2471
+ "inputs": [
2472
+ {
2473
+ "internalType": "uint16",
2474
+ "name": "srcChainId_",
2475
+ "type": "uint16"
2476
+ },
2477
+ {
2478
+ "internalType": "bytes",
2479
+ "name": "srcAddress_",
2480
+ "type": "bytes"
2481
+ }
2482
+ ],
2483
+ "name": "setTrustedRemoteAddress",
2484
+ "outputs": [],
2485
+ "stateMutability": "nonpayable",
2486
+ "type": "function"
2487
+ },
2488
+ {
2489
+ "inputs": [
2490
+ {
2491
+ "internalType": "address",
2492
+ "name": "newOwner_",
2493
+ "type": "address"
2494
+ }
2495
+ ],
2496
+ "name": "transferBridgeOwnership",
2497
+ "outputs": [],
2498
+ "stateMutability": "nonpayable",
2499
+ "type": "function"
2500
+ },
2501
+ {
2502
+ "inputs": [
2503
+ {
2504
+ "internalType": "address",
2505
+ "name": "newOwner",
2506
+ "type": "address"
2507
+ }
2508
+ ],
2509
+ "name": "transferOwnership",
2510
+ "outputs": [],
2511
+ "stateMutability": "nonpayable",
2512
+ "type": "function"
2513
+ },
2514
+ {
2515
+ "inputs": [
2516
+ {
2517
+ "internalType": "string[]",
2518
+ "name": "signatures_",
2519
+ "type": "string[]"
2520
+ },
2521
+ {
2522
+ "internalType": "bool[]",
2523
+ "name": "active_",
2524
+ "type": "bool[]"
2525
+ }
2526
+ ],
2527
+ "name": "upsertSignature",
2528
+ "outputs": [],
2529
+ "stateMutability": "nonpayable",
2530
+ "type": "function"
2531
+ },
2532
+ {
2533
+ "inputs": [
2534
+ {
2535
+ "internalType": "address",
2536
+ "name": "_logic",
2537
+ "type": "address"
2538
+ },
2539
+ {
2540
+ "internalType": "address",
2541
+ "name": "admin_",
2542
+ "type": "address"
2543
+ },
2544
+ {
2545
+ "internalType": "bytes",
2546
+ "name": "_data",
2547
+ "type": "bytes"
2548
+ }
2549
+ ],
2550
+ "stateMutability": "payable",
2551
+ "type": "constructor"
2552
+ }
2553
+ ]
2554
+ },
2555
+ "OmnichainExecutorOwner_Implementation": {
2556
+ "address": "0x8fe659199E01630D3154fcbb396f0c4d842C3438",
2557
+ "abi": [
2558
+ {
2559
+ "inputs": [
2560
+ {
2561
+ "internalType": "address",
2562
+ "name": "omnichainGovernanceExecutor_",
2563
+ "type": "address"
2564
+ }
2565
+ ],
2566
+ "stateMutability": "nonpayable",
2567
+ "type": "constructor"
2568
+ },
2569
+ {
2570
+ "inputs": [
2571
+ {
2572
+ "internalType": "address",
2573
+ "name": "sender",
2574
+ "type": "address"
2575
+ },
2576
+ {
2577
+ "internalType": "address",
2578
+ "name": "calledContract",
2579
+ "type": "address"
2580
+ },
2581
+ {
2582
+ "internalType": "string",
2583
+ "name": "methodSignature",
2584
+ "type": "string"
2585
+ }
2586
+ ],
2587
+ "name": "Unauthorized",
2588
+ "type": "error"
2589
+ },
2590
+ {
2591
+ "inputs": [],
2592
+ "name": "ZeroAddressNotAllowed",
2593
+ "type": "error"
2594
+ },
2595
+ {
2596
+ "anonymous": false,
2597
+ "inputs": [
2598
+ {
2599
+ "indexed": true,
2600
+ "internalType": "string",
2601
+ "name": "signature",
2602
+ "type": "string"
2603
+ },
2604
+ {
2605
+ "indexed": false,
2606
+ "internalType": "bool",
2607
+ "name": "active",
2608
+ "type": "bool"
2609
+ }
2610
+ ],
2611
+ "name": "FunctionRegistryChanged",
2612
+ "type": "event"
2613
+ },
2614
+ {
2615
+ "anonymous": false,
2616
+ "inputs": [
2617
+ {
2618
+ "indexed": false,
2619
+ "internalType": "uint8",
2620
+ "name": "version",
2621
+ "type": "uint8"
2622
+ }
2623
+ ],
2624
+ "name": "Initialized",
2625
+ "type": "event"
2626
+ },
2627
+ {
2628
+ "anonymous": false,
2629
+ "inputs": [
2630
+ {
2631
+ "indexed": false,
2632
+ "internalType": "address",
2633
+ "name": "oldAccessControlManager",
2634
+ "type": "address"
2635
+ },
2636
+ {
2637
+ "indexed": false,
2638
+ "internalType": "address",
2639
+ "name": "newAccessControlManager",
2640
+ "type": "address"
2641
+ }
2642
+ ],
2643
+ "name": "NewAccessControlManager",
2644
+ "type": "event"
2645
+ },
2646
+ {
2647
+ "anonymous": false,
2648
+ "inputs": [
2649
+ {
2650
+ "indexed": true,
2651
+ "internalType": "address",
2652
+ "name": "previousOwner",
2653
+ "type": "address"
2654
+ },
2655
+ {
2656
+ "indexed": true,
2657
+ "internalType": "address",
2658
+ "name": "newOwner",
2659
+ "type": "address"
2660
+ }
2661
+ ],
2662
+ "name": "OwnershipTransferStarted",
2663
+ "type": "event"
2664
+ },
2665
+ {
2666
+ "anonymous": false,
2667
+ "inputs": [
2668
+ {
2669
+ "indexed": true,
2670
+ "internalType": "address",
2671
+ "name": "previousOwner",
2672
+ "type": "address"
2673
+ },
2674
+ {
2675
+ "indexed": true,
2676
+ "internalType": "address",
2677
+ "name": "newOwner",
2678
+ "type": "address"
2679
+ }
2680
+ ],
2681
+ "name": "OwnershipTransferred",
2682
+ "type": "event"
2683
+ },
2684
+ {
2685
+ "stateMutability": "nonpayable",
2686
+ "type": "fallback"
2687
+ },
2688
+ {
2689
+ "inputs": [],
2690
+ "name": "OMNICHAIN_GOVERNANCE_EXECUTOR",
2691
+ "outputs": [
2692
+ {
2693
+ "internalType": "contract IOmnichainGovernanceExecutor",
2694
+ "name": "",
2695
+ "type": "address"
2696
+ }
2697
+ ],
2698
+ "stateMutability": "view",
2699
+ "type": "function"
2700
+ },
2701
+ {
2702
+ "inputs": [],
2703
+ "name": "acceptOwnership",
2704
+ "outputs": [],
2705
+ "stateMutability": "nonpayable",
2706
+ "type": "function"
2707
+ },
2708
+ {
2709
+ "inputs": [],
2710
+ "name": "accessControlManager",
2711
+ "outputs": [
2712
+ {
2713
+ "internalType": "contract IAccessControlManagerV8",
2714
+ "name": "",
2715
+ "type": "address"
2716
+ }
2717
+ ],
2718
+ "stateMutability": "view",
2719
+ "type": "function"
2720
+ },
2721
+ {
2722
+ "inputs": [
2723
+ {
2724
+ "internalType": "bytes4",
2725
+ "name": "",
2726
+ "type": "bytes4"
2727
+ }
2728
+ ],
2729
+ "name": "functionRegistry",
2730
+ "outputs": [
2731
+ {
2732
+ "internalType": "string",
2733
+ "name": "",
2734
+ "type": "string"
2735
+ }
2736
+ ],
2737
+ "stateMutability": "view",
2738
+ "type": "function"
2739
+ },
2740
+ {
2741
+ "inputs": [
2742
+ {
2743
+ "internalType": "address",
2744
+ "name": "accessControlManager_",
2745
+ "type": "address"
2746
+ }
2747
+ ],
2748
+ "name": "initialize",
2749
+ "outputs": [],
2750
+ "stateMutability": "nonpayable",
2751
+ "type": "function"
2752
+ },
2753
+ {
2754
+ "inputs": [],
2755
+ "name": "owner",
2756
+ "outputs": [
2757
+ {
2758
+ "internalType": "address",
2759
+ "name": "",
2760
+ "type": "address"
2761
+ }
2762
+ ],
2763
+ "stateMutability": "view",
2764
+ "type": "function"
2765
+ },
2766
+ {
2767
+ "inputs": [],
2768
+ "name": "pendingOwner",
2769
+ "outputs": [
2770
+ {
2771
+ "internalType": "address",
2772
+ "name": "",
2773
+ "type": "address"
2774
+ }
2775
+ ],
2776
+ "stateMutability": "view",
2777
+ "type": "function"
2778
+ },
2779
+ {
2780
+ "inputs": [],
2781
+ "name": "renounceOwnership",
2782
+ "outputs": [],
2783
+ "stateMutability": "nonpayable",
2784
+ "type": "function"
2785
+ },
2786
+ {
2787
+ "inputs": [
2788
+ {
2789
+ "internalType": "address",
2790
+ "name": "accessControlManager_",
2791
+ "type": "address"
2792
+ }
2793
+ ],
2794
+ "name": "setAccessControlManager",
2795
+ "outputs": [],
2796
+ "stateMutability": "nonpayable",
2797
+ "type": "function"
2798
+ },
2799
+ {
2800
+ "inputs": [
2801
+ {
2802
+ "internalType": "uint16",
2803
+ "name": "srcChainId_",
2804
+ "type": "uint16"
2805
+ },
2806
+ {
2807
+ "internalType": "bytes",
2808
+ "name": "srcAddress_",
2809
+ "type": "bytes"
2810
+ }
2811
+ ],
2812
+ "name": "setTrustedRemoteAddress",
2813
+ "outputs": [],
2814
+ "stateMutability": "nonpayable",
2815
+ "type": "function"
2816
+ },
2817
+ {
2818
+ "inputs": [
2819
+ {
2820
+ "internalType": "address",
2821
+ "name": "newOwner_",
2822
+ "type": "address"
2823
+ }
2824
+ ],
2825
+ "name": "transferBridgeOwnership",
2826
+ "outputs": [],
2827
+ "stateMutability": "nonpayable",
2828
+ "type": "function"
2829
+ },
2830
+ {
2831
+ "inputs": [
2832
+ {
2833
+ "internalType": "address",
2834
+ "name": "newOwner",
2835
+ "type": "address"
2836
+ }
2837
+ ],
2838
+ "name": "transferOwnership",
2839
+ "outputs": [],
2840
+ "stateMutability": "nonpayable",
2841
+ "type": "function"
2842
+ },
2843
+ {
2844
+ "inputs": [
2845
+ {
2846
+ "internalType": "string[]",
2847
+ "name": "signatures_",
2848
+ "type": "string[]"
2849
+ },
2850
+ {
2851
+ "internalType": "bool[]",
2852
+ "name": "active_",
2853
+ "type": "bool[]"
2854
+ }
2855
+ ],
2856
+ "name": "upsertSignature",
2857
+ "outputs": [],
2858
+ "stateMutability": "nonpayable",
2859
+ "type": "function"
2860
+ }
2861
+ ]
2862
+ },
2863
+ "OmnichainExecutorOwner_Proxy": {
2864
+ "address": "0xe6d9Eb3A07a1dc4496fc71417D7A7b9d5666BaA3",
2865
+ "abi": [
2866
+ {
2867
+ "inputs": [
2868
+ {
2869
+ "internalType": "address",
2870
+ "name": "_logic",
2871
+ "type": "address"
2872
+ },
2873
+ {
2874
+ "internalType": "address",
2875
+ "name": "admin_",
2876
+ "type": "address"
2877
+ },
2878
+ {
2879
+ "internalType": "bytes",
2880
+ "name": "_data",
2881
+ "type": "bytes"
2882
+ }
2883
+ ],
2884
+ "stateMutability": "payable",
2885
+ "type": "constructor"
2886
+ },
2887
+ {
2888
+ "anonymous": false,
2889
+ "inputs": [
2890
+ {
2891
+ "indexed": false,
2892
+ "internalType": "address",
2893
+ "name": "previousAdmin",
2894
+ "type": "address"
2895
+ },
2896
+ {
2897
+ "indexed": false,
2898
+ "internalType": "address",
2899
+ "name": "newAdmin",
2900
+ "type": "address"
2901
+ }
2902
+ ],
2903
+ "name": "AdminChanged",
2904
+ "type": "event"
2905
+ },
2906
+ {
2907
+ "anonymous": false,
2908
+ "inputs": [
2909
+ {
2910
+ "indexed": true,
2911
+ "internalType": "address",
2912
+ "name": "beacon",
2913
+ "type": "address"
2914
+ }
2915
+ ],
2916
+ "name": "BeaconUpgraded",
2917
+ "type": "event"
2918
+ },
2919
+ {
2920
+ "anonymous": false,
2921
+ "inputs": [
2922
+ {
2923
+ "indexed": true,
2924
+ "internalType": "address",
2925
+ "name": "implementation",
2926
+ "type": "address"
2927
+ }
2928
+ ],
2929
+ "name": "Upgraded",
2930
+ "type": "event"
2931
+ },
2932
+ {
2933
+ "stateMutability": "payable",
2934
+ "type": "fallback"
2935
+ },
2936
+ {
2937
+ "inputs": [],
2938
+ "name": "admin",
2939
+ "outputs": [
2940
+ {
2941
+ "internalType": "address",
2942
+ "name": "admin_",
2943
+ "type": "address"
2944
+ }
2945
+ ],
2946
+ "stateMutability": "nonpayable",
2947
+ "type": "function"
2948
+ },
2949
+ {
2950
+ "inputs": [],
2951
+ "name": "implementation",
2952
+ "outputs": [
2953
+ {
2954
+ "internalType": "address",
2955
+ "name": "implementation_",
2956
+ "type": "address"
2957
+ }
2958
+ ],
2959
+ "stateMutability": "nonpayable",
2960
+ "type": "function"
2961
+ },
2962
+ {
2963
+ "inputs": [
2964
+ {
2965
+ "internalType": "address",
2966
+ "name": "newImplementation",
2967
+ "type": "address"
2968
+ }
2969
+ ],
2970
+ "name": "upgradeTo",
2971
+ "outputs": [],
2972
+ "stateMutability": "nonpayable",
2973
+ "type": "function"
2974
+ },
2975
+ {
2976
+ "inputs": [
2977
+ {
2978
+ "internalType": "address",
2979
+ "name": "newImplementation",
2980
+ "type": "address"
2981
+ },
2982
+ {
2983
+ "internalType": "bytes",
2984
+ "name": "data",
2985
+ "type": "bytes"
2986
+ }
2987
+ ],
2988
+ "name": "upgradeToAndCall",
2989
+ "outputs": [],
2990
+ "stateMutability": "payable",
2991
+ "type": "function"
2992
+ },
2993
+ {
2994
+ "stateMutability": "payable",
2995
+ "type": "receive"
2996
+ }
2997
+ ]
2998
+ },
2999
+ "OmnichainGovernanceExecutor": {
3000
+ "address": "0x09b11b1CAdC08E239970A8993783f0f8EeC60ABf",
3001
+ "abi": [
3002
+ {
3003
+ "inputs": [
3004
+ {
3005
+ "internalType": "address",
3006
+ "name": "endpoint_",
3007
+ "type": "address"
3008
+ },
3009
+ {
3010
+ "internalType": "address",
3011
+ "name": "guardian_",
3012
+ "type": "address"
3013
+ },
3014
+ {
3015
+ "internalType": "uint16",
3016
+ "name": "srcChainId_",
3017
+ "type": "uint16"
3018
+ }
3019
+ ],
3020
+ "stateMutability": "nonpayable",
3021
+ "type": "constructor"
3022
+ },
3023
+ {
3024
+ "inputs": [],
3025
+ "name": "InvalidProposalId",
3026
+ "type": "error"
3027
+ },
3028
+ {
3029
+ "inputs": [],
3030
+ "name": "ZeroAddressNotAllowed",
3031
+ "type": "error"
3032
+ },
3033
+ {
3034
+ "anonymous": false,
3035
+ "inputs": [
3036
+ {
3037
+ "indexed": false,
3038
+ "internalType": "uint16",
3039
+ "name": "_srcChainId",
3040
+ "type": "uint16"
3041
+ },
3042
+ {
3043
+ "indexed": false,
3044
+ "internalType": "bytes",
3045
+ "name": "_srcAddress",
3046
+ "type": "bytes"
3047
+ },
3048
+ {
3049
+ "indexed": false,
3050
+ "internalType": "uint64",
3051
+ "name": "_nonce",
3052
+ "type": "uint64"
3053
+ },
3054
+ {
3055
+ "indexed": false,
3056
+ "internalType": "bytes",
3057
+ "name": "_payload",
3058
+ "type": "bytes"
3059
+ },
3060
+ {
3061
+ "indexed": false,
3062
+ "internalType": "bytes",
3063
+ "name": "_reason",
3064
+ "type": "bytes"
3065
+ }
3066
+ ],
3067
+ "name": "MessageFailed",
3068
+ "type": "event"
3069
+ },
3070
+ {
3071
+ "anonymous": false,
3072
+ "inputs": [
3073
+ {
3074
+ "indexed": true,
3075
+ "internalType": "address",
3076
+ "name": "oldGuardian",
3077
+ "type": "address"
3078
+ },
3079
+ {
3080
+ "indexed": true,
3081
+ "internalType": "address",
3082
+ "name": "newGuardian",
3083
+ "type": "address"
3084
+ }
3085
+ ],
3086
+ "name": "NewGuardian",
3087
+ "type": "event"
3088
+ },
3089
+ {
3090
+ "anonymous": false,
3091
+ "inputs": [
3092
+ {
3093
+ "indexed": true,
3094
+ "internalType": "address",
3095
+ "name": "previousOwner",
3096
+ "type": "address"
3097
+ },
3098
+ {
3099
+ "indexed": true,
3100
+ "internalType": "address",
3101
+ "name": "newOwner",
3102
+ "type": "address"
3103
+ }
3104
+ ],
3105
+ "name": "OwnershipTransferred",
3106
+ "type": "event"
3107
+ },
3108
+ {
3109
+ "anonymous": false,
3110
+ "inputs": [
3111
+ {
3112
+ "indexed": false,
3113
+ "internalType": "address",
3114
+ "name": "account",
3115
+ "type": "address"
3116
+ }
3117
+ ],
3118
+ "name": "Paused",
3119
+ "type": "event"
3120
+ },
3121
+ {
3122
+ "anonymous": false,
3123
+ "inputs": [
3124
+ {
3125
+ "indexed": true,
3126
+ "internalType": "uint256",
3127
+ "name": "id",
3128
+ "type": "uint256"
3129
+ }
3130
+ ],
3131
+ "name": "ProposalCanceled",
3132
+ "type": "event"
3133
+ },
3134
+ {
3135
+ "anonymous": false,
3136
+ "inputs": [
3137
+ {
3138
+ "indexed": true,
3139
+ "internalType": "uint256",
3140
+ "name": "id",
3141
+ "type": "uint256"
3142
+ }
3143
+ ],
3144
+ "name": "ProposalExecuted",
3145
+ "type": "event"
3146
+ },
3147
+ {
3148
+ "anonymous": false,
3149
+ "inputs": [
3150
+ {
3151
+ "indexed": true,
3152
+ "internalType": "uint256",
3153
+ "name": "id",
3154
+ "type": "uint256"
3155
+ },
3156
+ {
3157
+ "indexed": false,
3158
+ "internalType": "uint256",
3159
+ "name": "eta",
3160
+ "type": "uint256"
3161
+ }
3162
+ ],
3163
+ "name": "ProposalQueued",
3164
+ "type": "event"
3165
+ },
3166
+ {
3167
+ "anonymous": false,
3168
+ "inputs": [
3169
+ {
3170
+ "indexed": true,
3171
+ "internalType": "uint256",
3172
+ "name": "proposalId",
3173
+ "type": "uint256"
3174
+ },
3175
+ {
3176
+ "indexed": false,
3177
+ "internalType": "address[]",
3178
+ "name": "targets",
3179
+ "type": "address[]"
3180
+ },
3181
+ {
3182
+ "indexed": false,
3183
+ "internalType": "uint256[]",
3184
+ "name": "values",
3185
+ "type": "uint256[]"
3186
+ },
3187
+ {
3188
+ "indexed": false,
3189
+ "internalType": "string[]",
3190
+ "name": "signatures",
3191
+ "type": "string[]"
3192
+ },
3193
+ {
3194
+ "indexed": false,
3195
+ "internalType": "bytes[]",
3196
+ "name": "calldatas",
3197
+ "type": "bytes[]"
3198
+ },
3199
+ {
3200
+ "indexed": false,
3201
+ "internalType": "uint8",
3202
+ "name": "proposalType",
3203
+ "type": "uint8"
3204
+ }
3205
+ ],
3206
+ "name": "ProposalReceived",
3207
+ "type": "event"
3208
+ },
3209
+ {
3210
+ "anonymous": false,
3211
+ "inputs": [
3212
+ {
3213
+ "indexed": true,
3214
+ "internalType": "uint16",
3215
+ "name": "srcChainId",
3216
+ "type": "uint16"
3217
+ },
3218
+ {
3219
+ "indexed": true,
3220
+ "internalType": "bytes",
3221
+ "name": "srcAddress",
3222
+ "type": "bytes"
3223
+ },
3224
+ {
3225
+ "indexed": false,
3226
+ "internalType": "uint64",
3227
+ "name": "nonce",
3228
+ "type": "uint64"
3229
+ },
3230
+ {
3231
+ "indexed": false,
3232
+ "internalType": "bytes",
3233
+ "name": "reason",
3234
+ "type": "bytes"
3235
+ }
3236
+ ],
3237
+ "name": "ReceivePayloadFailed",
3238
+ "type": "event"
3239
+ },
3240
+ {
3241
+ "anonymous": false,
3242
+ "inputs": [
3243
+ {
3244
+ "indexed": false,
3245
+ "internalType": "uint16",
3246
+ "name": "_srcChainId",
3247
+ "type": "uint16"
3248
+ },
3249
+ {
3250
+ "indexed": false,
3251
+ "internalType": "bytes",
3252
+ "name": "_srcAddress",
3253
+ "type": "bytes"
3254
+ },
3255
+ {
3256
+ "indexed": false,
3257
+ "internalType": "uint64",
3258
+ "name": "_nonce",
3259
+ "type": "uint64"
3260
+ },
3261
+ {
3262
+ "indexed": false,
3263
+ "internalType": "bytes32",
3264
+ "name": "_payloadHash",
3265
+ "type": "bytes32"
3266
+ }
3267
+ ],
3268
+ "name": "RetryMessageSuccess",
3269
+ "type": "event"
3270
+ },
3271
+ {
3272
+ "anonymous": false,
3273
+ "inputs": [
3274
+ {
3275
+ "indexed": false,
3276
+ "internalType": "uint256",
3277
+ "name": "oldMaxLimit",
3278
+ "type": "uint256"
3279
+ },
3280
+ {
3281
+ "indexed": false,
3282
+ "internalType": "uint256",
3283
+ "name": "newMaxLimit",
3284
+ "type": "uint256"
3285
+ }
3286
+ ],
3287
+ "name": "SetMaxDailyReceiveLimit",
3288
+ "type": "event"
3289
+ },
3290
+ {
3291
+ "anonymous": false,
3292
+ "inputs": [
3293
+ {
3294
+ "indexed": false,
3295
+ "internalType": "uint16",
3296
+ "name": "_dstChainId",
3297
+ "type": "uint16"
3298
+ },
3299
+ {
3300
+ "indexed": false,
3301
+ "internalType": "uint16",
3302
+ "name": "_type",
3303
+ "type": "uint16"
3304
+ },
3305
+ {
3306
+ "indexed": false,
3307
+ "internalType": "uint256",
3308
+ "name": "_minDstGas",
3309
+ "type": "uint256"
3310
+ }
3311
+ ],
3312
+ "name": "SetMinDstGas",
3313
+ "type": "event"
3314
+ },
3315
+ {
3316
+ "anonymous": false,
3317
+ "inputs": [
3318
+ {
3319
+ "indexed": false,
3320
+ "internalType": "address",
3321
+ "name": "precrime",
3322
+ "type": "address"
3323
+ }
3324
+ ],
3325
+ "name": "SetPrecrime",
3326
+ "type": "event"
3327
+ },
3328
+ {
3329
+ "anonymous": false,
3330
+ "inputs": [
3331
+ {
3332
+ "indexed": true,
3333
+ "internalType": "uint16",
3334
+ "name": "oldSrcChainId",
3335
+ "type": "uint16"
3336
+ },
3337
+ {
3338
+ "indexed": true,
3339
+ "internalType": "uint16",
3340
+ "name": "newSrcChainId",
3341
+ "type": "uint16"
3342
+ }
3343
+ ],
3344
+ "name": "SetSrcChainId",
3345
+ "type": "event"
3346
+ },
3347
+ {
3348
+ "anonymous": false,
3349
+ "inputs": [
3350
+ {
3351
+ "indexed": false,
3352
+ "internalType": "address",
3353
+ "name": "",
3354
+ "type": "address"
3355
+ },
3356
+ {
3357
+ "indexed": false,
3358
+ "internalType": "uint8",
3359
+ "name": "",
3360
+ "type": "uint8"
3361
+ }
3362
+ ],
3363
+ "name": "SetTimelockPendingAdmin",
3364
+ "type": "event"
3365
+ },
3366
+ {
3367
+ "anonymous": false,
3368
+ "inputs": [
3369
+ {
3370
+ "indexed": false,
3371
+ "internalType": "uint16",
3372
+ "name": "_remoteChainId",
3373
+ "type": "uint16"
3374
+ },
3375
+ {
3376
+ "indexed": false,
3377
+ "internalType": "bytes",
3378
+ "name": "_path",
3379
+ "type": "bytes"
3380
+ }
3381
+ ],
3382
+ "name": "SetTrustedRemote",
3383
+ "type": "event"
3384
+ },
3385
+ {
3386
+ "anonymous": false,
3387
+ "inputs": [
3388
+ {
3389
+ "indexed": false,
3390
+ "internalType": "uint16",
3391
+ "name": "_remoteChainId",
3392
+ "type": "uint16"
3393
+ },
3394
+ {
3395
+ "indexed": false,
3396
+ "internalType": "bytes",
3397
+ "name": "_remoteAddress",
3398
+ "type": "bytes"
3399
+ }
3400
+ ],
3401
+ "name": "SetTrustedRemoteAddress",
3402
+ "type": "event"
3403
+ },
3404
+ {
3405
+ "anonymous": false,
3406
+ "inputs": [
3407
+ {
3408
+ "indexed": false,
3409
+ "internalType": "uint8",
3410
+ "name": "routeType",
3411
+ "type": "uint8"
3412
+ },
3413
+ {
3414
+ "indexed": true,
3415
+ "internalType": "address",
3416
+ "name": "oldTimelock",
3417
+ "type": "address"
3418
+ },
3419
+ {
3420
+ "indexed": true,
3421
+ "internalType": "address",
3422
+ "name": "newTimelock",
3423
+ "type": "address"
3424
+ }
3425
+ ],
3426
+ "name": "TimelockAdded",
3427
+ "type": "event"
3428
+ },
3429
+ {
3430
+ "anonymous": false,
3431
+ "inputs": [
3432
+ {
3433
+ "indexed": false,
3434
+ "internalType": "address",
3435
+ "name": "account",
3436
+ "type": "address"
3437
+ }
3438
+ ],
3439
+ "name": "Unpaused",
3440
+ "type": "event"
3441
+ },
3442
+ {
3443
+ "inputs": [],
3444
+ "name": "DEFAULT_PAYLOAD_SIZE_LIMIT",
3445
+ "outputs": [
3446
+ {
3447
+ "internalType": "uint256",
3448
+ "name": "",
3449
+ "type": "uint256"
3450
+ }
3451
+ ],
3452
+ "stateMutability": "view",
3453
+ "type": "function"
3454
+ },
3455
+ {
3456
+ "inputs": [
3457
+ {
3458
+ "internalType": "contract ITimelock[]",
3459
+ "name": "timelocks_",
3460
+ "type": "address[]"
3461
+ }
3462
+ ],
3463
+ "name": "addTimelocks",
3464
+ "outputs": [],
3465
+ "stateMutability": "nonpayable",
3466
+ "type": "function"
3467
+ },
3468
+ {
3469
+ "inputs": [
3470
+ {
3471
+ "internalType": "uint256",
3472
+ "name": "proposalId_",
3473
+ "type": "uint256"
3474
+ }
3475
+ ],
3476
+ "name": "cancel",
3477
+ "outputs": [],
3478
+ "stateMutability": "nonpayable",
3479
+ "type": "function"
3480
+ },
3481
+ {
3482
+ "inputs": [
3483
+ {
3484
+ "internalType": "uint256",
3485
+ "name": "proposalId_",
3486
+ "type": "uint256"
3487
+ }
3488
+ ],
3489
+ "name": "execute",
3490
+ "outputs": [],
3491
+ "stateMutability": "nonpayable",
3492
+ "type": "function"
3493
+ },
3494
+ {
3495
+ "inputs": [
3496
+ {
3497
+ "internalType": "uint16",
3498
+ "name": "",
3499
+ "type": "uint16"
3500
+ },
3501
+ {
3502
+ "internalType": "bytes",
3503
+ "name": "",
3504
+ "type": "bytes"
3505
+ },
3506
+ {
3507
+ "internalType": "uint64",
3508
+ "name": "",
3509
+ "type": "uint64"
3510
+ }
3511
+ ],
3512
+ "name": "failedMessages",
3513
+ "outputs": [
3514
+ {
3515
+ "internalType": "bytes32",
3516
+ "name": "",
3517
+ "type": "bytes32"
3518
+ }
3519
+ ],
3520
+ "stateMutability": "view",
3521
+ "type": "function"
3522
+ },
3523
+ {
3524
+ "inputs": [
3525
+ {
3526
+ "internalType": "uint16",
3527
+ "name": "_srcChainId",
3528
+ "type": "uint16"
3529
+ },
3530
+ {
3531
+ "internalType": "bytes",
3532
+ "name": "_srcAddress",
3533
+ "type": "bytes"
3534
+ }
3535
+ ],
3536
+ "name": "forceResumeReceive",
3537
+ "outputs": [],
3538
+ "stateMutability": "nonpayable",
3539
+ "type": "function"
3540
+ },
3541
+ {
3542
+ "inputs": [
3543
+ {
3544
+ "internalType": "uint16",
3545
+ "name": "_version",
3546
+ "type": "uint16"
3547
+ },
3548
+ {
3549
+ "internalType": "uint16",
3550
+ "name": "_chainId",
3551
+ "type": "uint16"
3552
+ },
3553
+ {
3554
+ "internalType": "address",
3555
+ "name": "",
3556
+ "type": "address"
3557
+ },
3558
+ {
3559
+ "internalType": "uint256",
3560
+ "name": "_configType",
3561
+ "type": "uint256"
3562
+ }
3563
+ ],
3564
+ "name": "getConfig",
3565
+ "outputs": [
3566
+ {
3567
+ "internalType": "bytes",
3568
+ "name": "",
3569
+ "type": "bytes"
3570
+ }
3571
+ ],
3572
+ "stateMutability": "view",
3573
+ "type": "function"
3574
+ },
3575
+ {
3576
+ "inputs": [
3577
+ {
3578
+ "internalType": "uint16",
3579
+ "name": "_remoteChainId",
3580
+ "type": "uint16"
3581
+ }
3582
+ ],
3583
+ "name": "getTrustedRemoteAddress",
3584
+ "outputs": [
3585
+ {
3586
+ "internalType": "bytes",
3587
+ "name": "",
3588
+ "type": "bytes"
3589
+ }
3590
+ ],
3591
+ "stateMutability": "view",
3592
+ "type": "function"
3593
+ },
3594
+ {
3595
+ "inputs": [],
3596
+ "name": "guardian",
3597
+ "outputs": [
3598
+ {
3599
+ "internalType": "address",
3600
+ "name": "",
3601
+ "type": "address"
3602
+ }
3603
+ ],
3604
+ "stateMutability": "view",
3605
+ "type": "function"
3606
+ },
3607
+ {
3608
+ "inputs": [
3609
+ {
3610
+ "internalType": "uint16",
3611
+ "name": "_srcChainId",
3612
+ "type": "uint16"
3613
+ },
3614
+ {
3615
+ "internalType": "bytes",
3616
+ "name": "_srcAddress",
3617
+ "type": "bytes"
3618
+ }
3619
+ ],
3620
+ "name": "isTrustedRemote",
3621
+ "outputs": [
3622
+ {
3623
+ "internalType": "bool",
3624
+ "name": "",
3625
+ "type": "bool"
3626
+ }
3627
+ ],
3628
+ "stateMutability": "view",
3629
+ "type": "function"
3630
+ },
3631
+ {
3632
+ "inputs": [],
3633
+ "name": "last24HourCommandsReceived",
3634
+ "outputs": [
3635
+ {
3636
+ "internalType": "uint256",
3637
+ "name": "",
3638
+ "type": "uint256"
3639
+ }
3640
+ ],
3641
+ "stateMutability": "view",
3642
+ "type": "function"
3643
+ },
3644
+ {
3645
+ "inputs": [],
3646
+ "name": "last24HourReceiveWindowStart",
3647
+ "outputs": [
3648
+ {
3649
+ "internalType": "uint256",
3650
+ "name": "",
3651
+ "type": "uint256"
3652
+ }
3653
+ ],
3654
+ "stateMutability": "view",
3655
+ "type": "function"
3656
+ },
3657
+ {
3658
+ "inputs": [],
3659
+ "name": "lastProposalReceived",
3660
+ "outputs": [
3661
+ {
3662
+ "internalType": "uint256",
3663
+ "name": "",
3664
+ "type": "uint256"
3665
+ }
3666
+ ],
3667
+ "stateMutability": "view",
3668
+ "type": "function"
3669
+ },
3670
+ {
3671
+ "inputs": [],
3672
+ "name": "lzEndpoint",
3673
+ "outputs": [
3674
+ {
3675
+ "internalType": "contract ILayerZeroEndpoint",
3676
+ "name": "",
3677
+ "type": "address"
3678
+ }
3679
+ ],
3680
+ "stateMutability": "view",
3681
+ "type": "function"
3682
+ },
3683
+ {
3684
+ "inputs": [
3685
+ {
3686
+ "internalType": "uint16",
3687
+ "name": "_srcChainId",
3688
+ "type": "uint16"
3689
+ },
3690
+ {
3691
+ "internalType": "bytes",
3692
+ "name": "_srcAddress",
3693
+ "type": "bytes"
3694
+ },
3695
+ {
3696
+ "internalType": "uint64",
3697
+ "name": "_nonce",
3698
+ "type": "uint64"
3699
+ },
3700
+ {
3701
+ "internalType": "bytes",
3702
+ "name": "_payload",
3703
+ "type": "bytes"
3704
+ }
3705
+ ],
3706
+ "name": "lzReceive",
3707
+ "outputs": [],
3708
+ "stateMutability": "nonpayable",
3709
+ "type": "function"
3710
+ },
3711
+ {
3712
+ "inputs": [],
3713
+ "name": "maxDailyReceiveLimit",
3714
+ "outputs": [
3715
+ {
3716
+ "internalType": "uint256",
3717
+ "name": "",
3718
+ "type": "uint256"
3719
+ }
3720
+ ],
3721
+ "stateMutability": "view",
3722
+ "type": "function"
3723
+ },
3724
+ {
3725
+ "inputs": [
3726
+ {
3727
+ "internalType": "uint16",
3728
+ "name": "",
3729
+ "type": "uint16"
3730
+ },
3731
+ {
3732
+ "internalType": "uint16",
3733
+ "name": "",
3734
+ "type": "uint16"
3735
+ }
3736
+ ],
3737
+ "name": "minDstGasLookup",
3738
+ "outputs": [
3739
+ {
3740
+ "internalType": "uint256",
3741
+ "name": "",
3742
+ "type": "uint256"
3743
+ }
3744
+ ],
3745
+ "stateMutability": "view",
3746
+ "type": "function"
3747
+ },
3748
+ {
3749
+ "inputs": [
3750
+ {
3751
+ "internalType": "uint16",
3752
+ "name": "_srcChainId",
3753
+ "type": "uint16"
3754
+ },
3755
+ {
3756
+ "internalType": "bytes",
3757
+ "name": "_srcAddress",
3758
+ "type": "bytes"
3759
+ },
3760
+ {
3761
+ "internalType": "uint64",
3762
+ "name": "_nonce",
3763
+ "type": "uint64"
3764
+ },
3765
+ {
3766
+ "internalType": "bytes",
3767
+ "name": "_payload",
3768
+ "type": "bytes"
3769
+ }
3770
+ ],
3771
+ "name": "nonblockingLzReceive",
3772
+ "outputs": [],
3773
+ "stateMutability": "nonpayable",
3774
+ "type": "function"
3775
+ },
3776
+ {
3777
+ "inputs": [],
3778
+ "name": "owner",
3779
+ "outputs": [
3780
+ {
3781
+ "internalType": "address",
3782
+ "name": "",
3783
+ "type": "address"
3784
+ }
3785
+ ],
3786
+ "stateMutability": "view",
3787
+ "type": "function"
3788
+ },
3789
+ {
3790
+ "inputs": [],
3791
+ "name": "pause",
3792
+ "outputs": [],
3793
+ "stateMutability": "nonpayable",
3794
+ "type": "function"
3795
+ },
3796
+ {
3797
+ "inputs": [],
3798
+ "name": "paused",
3799
+ "outputs": [
3800
+ {
3801
+ "internalType": "bool",
3802
+ "name": "",
3803
+ "type": "bool"
3804
+ }
3805
+ ],
3806
+ "stateMutability": "view",
3807
+ "type": "function"
3808
+ },
3809
+ {
3810
+ "inputs": [
3811
+ {
3812
+ "internalType": "uint16",
3813
+ "name": "",
3814
+ "type": "uint16"
3815
+ }
3816
+ ],
3817
+ "name": "payloadSizeLimitLookup",
3818
+ "outputs": [
3819
+ {
3820
+ "internalType": "uint256",
3821
+ "name": "",
3822
+ "type": "uint256"
3823
+ }
3824
+ ],
3825
+ "stateMutability": "view",
3826
+ "type": "function"
3827
+ },
3828
+ {
3829
+ "inputs": [],
3830
+ "name": "precrime",
3831
+ "outputs": [
3832
+ {
3833
+ "internalType": "address",
3834
+ "name": "",
3835
+ "type": "address"
3836
+ }
3837
+ ],
3838
+ "stateMutability": "view",
3839
+ "type": "function"
3840
+ },
3841
+ {
3842
+ "inputs": [
3843
+ {
3844
+ "internalType": "uint256",
3845
+ "name": "",
3846
+ "type": "uint256"
3847
+ }
3848
+ ],
3849
+ "name": "proposalTimelocks",
3850
+ "outputs": [
3851
+ {
3852
+ "internalType": "contract ITimelock",
3853
+ "name": "",
3854
+ "type": "address"
3855
+ }
3856
+ ],
3857
+ "stateMutability": "view",
3858
+ "type": "function"
3859
+ },
3860
+ {
3861
+ "inputs": [
3862
+ {
3863
+ "internalType": "uint256",
3864
+ "name": "",
3865
+ "type": "uint256"
3866
+ }
3867
+ ],
3868
+ "name": "proposals",
3869
+ "outputs": [
3870
+ {
3871
+ "internalType": "uint256",
3872
+ "name": "id",
3873
+ "type": "uint256"
3874
+ },
3875
+ {
3876
+ "internalType": "uint256",
3877
+ "name": "eta",
3878
+ "type": "uint256"
3879
+ },
3880
+ {
3881
+ "internalType": "bool",
3882
+ "name": "canceled",
3883
+ "type": "bool"
3884
+ },
3885
+ {
3886
+ "internalType": "bool",
3887
+ "name": "executed",
3888
+ "type": "bool"
3889
+ },
3890
+ {
3891
+ "internalType": "uint8",
3892
+ "name": "proposalType",
3893
+ "type": "uint8"
3894
+ }
3895
+ ],
3896
+ "stateMutability": "view",
3897
+ "type": "function"
3898
+ },
3899
+ {
3900
+ "inputs": [
3901
+ {
3902
+ "internalType": "uint256",
3903
+ "name": "",
3904
+ "type": "uint256"
3905
+ }
3906
+ ],
3907
+ "name": "queued",
3908
+ "outputs": [
3909
+ {
3910
+ "internalType": "bool",
3911
+ "name": "",
3912
+ "type": "bool"
3913
+ }
3914
+ ],
3915
+ "stateMutability": "view",
3916
+ "type": "function"
3917
+ },
3918
+ {
3919
+ "inputs": [],
3920
+ "name": "renounceOwnership",
3921
+ "outputs": [],
3922
+ "stateMutability": "nonpayable",
3923
+ "type": "function"
3924
+ },
3925
+ {
3926
+ "inputs": [
3927
+ {
3928
+ "internalType": "uint16",
3929
+ "name": "srcChainId_",
3930
+ "type": "uint16"
3931
+ },
3932
+ {
3933
+ "internalType": "bytes",
3934
+ "name": "srcAddress_",
3935
+ "type": "bytes"
3936
+ },
3937
+ {
3938
+ "internalType": "uint64",
3939
+ "name": "nonce_",
3940
+ "type": "uint64"
3941
+ },
3942
+ {
3943
+ "internalType": "bytes",
3944
+ "name": "payload_",
3945
+ "type": "bytes"
3946
+ }
3947
+ ],
3948
+ "name": "retryMessage",
3949
+ "outputs": [],
3950
+ "stateMutability": "payable",
3951
+ "type": "function"
3952
+ },
3953
+ {
3954
+ "inputs": [
3955
+ {
3956
+ "internalType": "uint16",
3957
+ "name": "_version",
3958
+ "type": "uint16"
3959
+ },
3960
+ {
3961
+ "internalType": "uint16",
3962
+ "name": "_chainId",
3963
+ "type": "uint16"
3964
+ },
3965
+ {
3966
+ "internalType": "uint256",
3967
+ "name": "_configType",
3968
+ "type": "uint256"
3969
+ },
3970
+ {
3971
+ "internalType": "bytes",
3972
+ "name": "_config",
3973
+ "type": "bytes"
3974
+ }
3975
+ ],
3976
+ "name": "setConfig",
3977
+ "outputs": [],
3978
+ "stateMutability": "nonpayable",
3979
+ "type": "function"
3980
+ },
3981
+ {
3982
+ "inputs": [
3983
+ {
3984
+ "internalType": "address",
3985
+ "name": "newGuardian",
3986
+ "type": "address"
3987
+ }
3988
+ ],
3989
+ "name": "setGuardian",
3990
+ "outputs": [],
3991
+ "stateMutability": "nonpayable",
3992
+ "type": "function"
3993
+ },
3994
+ {
3995
+ "inputs": [
3996
+ {
3997
+ "internalType": "uint256",
3998
+ "name": "limit_",
3999
+ "type": "uint256"
4000
+ }
4001
+ ],
4002
+ "name": "setMaxDailyReceiveLimit",
4003
+ "outputs": [],
4004
+ "stateMutability": "nonpayable",
4005
+ "type": "function"
4006
+ },
4007
+ {
4008
+ "inputs": [
4009
+ {
4010
+ "internalType": "uint16",
4011
+ "name": "_dstChainId",
4012
+ "type": "uint16"
4013
+ },
4014
+ {
4015
+ "internalType": "uint16",
4016
+ "name": "_packetType",
4017
+ "type": "uint16"
4018
+ },
4019
+ {
4020
+ "internalType": "uint256",
4021
+ "name": "_minGas",
4022
+ "type": "uint256"
4023
+ }
4024
+ ],
4025
+ "name": "setMinDstGas",
4026
+ "outputs": [],
4027
+ "stateMutability": "nonpayable",
4028
+ "type": "function"
4029
+ },
4030
+ {
4031
+ "inputs": [
4032
+ {
4033
+ "internalType": "uint16",
4034
+ "name": "_dstChainId",
4035
+ "type": "uint16"
4036
+ },
4037
+ {
4038
+ "internalType": "uint256",
4039
+ "name": "_size",
4040
+ "type": "uint256"
4041
+ }
4042
+ ],
4043
+ "name": "setPayloadSizeLimit",
4044
+ "outputs": [],
4045
+ "stateMutability": "nonpayable",
4046
+ "type": "function"
4047
+ },
4048
+ {
4049
+ "inputs": [
4050
+ {
4051
+ "internalType": "address",
4052
+ "name": "_precrime",
4053
+ "type": "address"
4054
+ }
4055
+ ],
4056
+ "name": "setPrecrime",
4057
+ "outputs": [],
4058
+ "stateMutability": "nonpayable",
4059
+ "type": "function"
4060
+ },
4061
+ {
4062
+ "inputs": [
4063
+ {
4064
+ "internalType": "uint16",
4065
+ "name": "_version",
4066
+ "type": "uint16"
4067
+ }
4068
+ ],
4069
+ "name": "setReceiveVersion",
4070
+ "outputs": [],
4071
+ "stateMutability": "nonpayable",
4072
+ "type": "function"
4073
+ },
4074
+ {
4075
+ "inputs": [
4076
+ {
4077
+ "internalType": "uint16",
4078
+ "name": "_version",
4079
+ "type": "uint16"
4080
+ }
4081
+ ],
4082
+ "name": "setSendVersion",
4083
+ "outputs": [],
4084
+ "stateMutability": "nonpayable",
4085
+ "type": "function"
4086
+ },
4087
+ {
4088
+ "inputs": [
4089
+ {
4090
+ "internalType": "uint16",
4091
+ "name": "srcChainId_",
4092
+ "type": "uint16"
4093
+ }
4094
+ ],
4095
+ "name": "setSrcChainId",
4096
+ "outputs": [],
4097
+ "stateMutability": "nonpayable",
4098
+ "type": "function"
4099
+ },
4100
+ {
4101
+ "inputs": [
4102
+ {
4103
+ "internalType": "address",
4104
+ "name": "pendingAdmin_",
4105
+ "type": "address"
4106
+ },
4107
+ {
4108
+ "internalType": "uint8",
4109
+ "name": "proposalType_",
4110
+ "type": "uint8"
4111
+ }
4112
+ ],
4113
+ "name": "setTimelockPendingAdmin",
4114
+ "outputs": [],
4115
+ "stateMutability": "nonpayable",
4116
+ "type": "function"
4117
+ },
4118
+ {
4119
+ "inputs": [
4120
+ {
4121
+ "internalType": "uint16",
4122
+ "name": "_remoteChainId",
4123
+ "type": "uint16"
4124
+ },
4125
+ {
4126
+ "internalType": "bytes",
4127
+ "name": "_path",
4128
+ "type": "bytes"
4129
+ }
4130
+ ],
4131
+ "name": "setTrustedRemote",
4132
+ "outputs": [],
4133
+ "stateMutability": "nonpayable",
4134
+ "type": "function"
4135
+ },
4136
+ {
4137
+ "inputs": [
4138
+ {
4139
+ "internalType": "uint16",
4140
+ "name": "_remoteChainId",
4141
+ "type": "uint16"
4142
+ },
4143
+ {
4144
+ "internalType": "bytes",
4145
+ "name": "_remoteAddress",
4146
+ "type": "bytes"
4147
+ }
4148
+ ],
4149
+ "name": "setTrustedRemoteAddress",
4150
+ "outputs": [],
4151
+ "stateMutability": "nonpayable",
4152
+ "type": "function"
4153
+ },
4154
+ {
4155
+ "inputs": [],
4156
+ "name": "srcChainId",
4157
+ "outputs": [
4158
+ {
4159
+ "internalType": "uint16",
4160
+ "name": "",
4161
+ "type": "uint16"
4162
+ }
4163
+ ],
4164
+ "stateMutability": "view",
4165
+ "type": "function"
4166
+ },
4167
+ {
4168
+ "inputs": [
4169
+ {
4170
+ "internalType": "uint256",
4171
+ "name": "proposalId_",
4172
+ "type": "uint256"
4173
+ }
4174
+ ],
4175
+ "name": "state",
4176
+ "outputs": [
4177
+ {
4178
+ "internalType": "enum OmnichainGovernanceExecutor.ProposalState",
4179
+ "name": "",
4180
+ "type": "uint8"
4181
+ }
4182
+ ],
4183
+ "stateMutability": "view",
4184
+ "type": "function"
4185
+ },
4186
+ {
4187
+ "inputs": [
4188
+ {
4189
+ "internalType": "address",
4190
+ "name": "newOwner",
4191
+ "type": "address"
4192
+ }
4193
+ ],
4194
+ "name": "transferOwnership",
4195
+ "outputs": [],
4196
+ "stateMutability": "nonpayable",
4197
+ "type": "function"
4198
+ },
4199
+ {
4200
+ "inputs": [
4201
+ {
4202
+ "internalType": "uint16",
4203
+ "name": "",
4204
+ "type": "uint16"
4205
+ }
4206
+ ],
4207
+ "name": "trustedRemoteLookup",
4208
+ "outputs": [
4209
+ {
4210
+ "internalType": "bytes",
4211
+ "name": "",
4212
+ "type": "bytes"
4213
+ }
4214
+ ],
4215
+ "stateMutability": "view",
4216
+ "type": "function"
4217
+ },
4218
+ {
4219
+ "inputs": [],
4220
+ "name": "unpause",
4221
+ "outputs": [],
4222
+ "stateMutability": "nonpayable",
4223
+ "type": "function"
4224
+ }
4225
+ ]
367
4226
  }
368
4227
  }
369
4228
  }