@peeramid-labs/sdk 3.11.3 → 3.12.0

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 (274) hide show
  1. package/cli/abis/Address.js +18 -0
  2. package/cli/abis/Address.js.map +1 -0
  3. package/cli/abis/Governor.js +1735 -0
  4. package/cli/abis/Governor.js.map +1 -0
  5. package/cli/abis/GovernorCountingSimpleUpgradeable.js +1365 -0
  6. package/cli/abis/GovernorCountingSimpleUpgradeable.js.map +1 -0
  7. package/cli/abis/GovernorSettingsUpgradeable.js +1432 -0
  8. package/cli/abis/GovernorSettingsUpgradeable.js.map +1 -0
  9. package/cli/abis/GovernorStorageUpgradeable.js +1461 -0
  10. package/cli/abis/GovernorStorageUpgradeable.js.map +1 -0
  11. package/cli/abis/GovernorUpgradeable.js +1336 -0
  12. package/cli/abis/GovernorUpgradeable.js.map +1 -0
  13. package/cli/abis/GovernorVotesQuorumFractionUpgradeable.js +1447 -0
  14. package/cli/abis/GovernorVotesQuorumFractionUpgradeable.js.map +1 -0
  15. package/cli/abis/GovernorVotesUpgradeable.js +1349 -0
  16. package/cli/abis/GovernorVotesUpgradeable.js.map +1 -0
  17. package/cli/abis/IGovernor.js +1043 -0
  18. package/cli/abis/IGovernor.js.map +1 -0
  19. package/cli/abis/IRankifyInstance.js +58 -0
  20. package/cli/abis/IRankifyInstance.js.map +1 -1
  21. package/cli/abis/MAODistribution.js +49 -19
  22. package/cli/abis/MAODistribution.js.map +1 -1
  23. package/cli/abis/RankifyDiamondInstance.js +353 -49
  24. package/cli/abis/RankifyDiamondInstance.js.map +1 -1
  25. package/cli/abis/RankifyInstanceEventMock.js +0 -49
  26. package/cli/abis/RankifyInstanceEventMock.js.map +1 -1
  27. package/cli/abis/RankifyInstanceGameMastersFacet.js +131 -22
  28. package/cli/abis/RankifyInstanceGameMastersFacet.js.map +1 -1
  29. package/cli/abis/RankifyInstanceMainFacet.js +196 -6
  30. package/cli/abis/RankifyInstanceMainFacet.js.map +1 -1
  31. package/cli/abis/RankifyInstanceRequirementsFacet.js +26 -21
  32. package/cli/abis/RankifyInstanceRequirementsFacet.js.map +1 -1
  33. package/cli/abis/index.js +39 -3
  34. package/cli/abis/index.js.map +1 -1
  35. package/cli/abis/superinterface.js +609 -20
  36. package/cli/abis/superinterface.js.map +1 -1
  37. package/cli/cli/commands/fellowship/create.js +39 -7
  38. package/cli/cli/commands/fellowship/create.js.map +1 -1
  39. package/cli/cli/commands/fellowship/game/create.js +5 -1
  40. package/cli/cli/commands/fellowship/game/create.js.map +1 -1
  41. package/cli/cli/commands/fellowship/game/end-proposing.js +53 -0
  42. package/cli/cli/commands/fellowship/game/end-proposing.js.map +1 -0
  43. package/cli/cli/commands/fellowship/game/{end-turn.js → end-voting.js} +8 -8
  44. package/cli/cli/commands/fellowship/game/end-voting.js.map +1 -0
  45. package/cli/cli/commands/fellowship/game/force-end-stale.js +50 -0
  46. package/cli/cli/commands/fellowship/game/force-end-stale.js.map +1 -0
  47. package/cli/cli/commands/fellowship/game/index.js +10 -4
  48. package/cli/cli/commands/fellowship/game/index.js.map +1 -1
  49. package/cli/cli/commands/fellowship/game/start.js +2 -2
  50. package/cli/cli/commands/fellowship/game/start.js.map +1 -1
  51. package/cli/rankify/GameMaster.js +133 -110
  52. package/cli/rankify/GameMaster.js.map +1 -1
  53. package/cli/rankify/InstanceBase.js +35 -47
  54. package/cli/rankify/InstanceBase.js.map +1 -1
  55. package/cli/rankify/MAODistributor.js +9 -3
  56. package/cli/rankify/MAODistributor.js.map +1 -1
  57. package/cli/rankify/Player.js +8 -3
  58. package/cli/rankify/Player.js.map +1 -1
  59. package/cli/utils/EnvioGraphQLClient.js +94 -74
  60. package/cli/utils/EnvioGraphQLClient.js.map +1 -1
  61. package/cli/utils/index.js +4 -3
  62. package/cli/utils/index.js.map +1 -1
  63. package/docs/classes/EnvioGraphQLClient.md +46 -28
  64. package/docs/classes/GameMaster.md +64 -27
  65. package/docs/classes/InstanceBase.md +12 -12
  66. package/docs/classes/InstancePlayer.md +17 -14
  67. package/docs/classes/MAODistributorClient.md +4 -2
  68. package/docs/docs/classes/EnvioGraphQLClient.md +46 -28
  69. package/docs/docs/classes/GameMaster.md +64 -27
  70. package/docs/docs/classes/InstanceBase.md +12 -12
  71. package/docs/docs/classes/InstancePlayer.md +17 -14
  72. package/docs/docs/classes/MAODistributorClient.md +4 -2
  73. package/docs/docs/index.md +2 -139
  74. package/docs/docs/interfaces/MAOInstanceContracts.md +9 -0
  75. package/docs/docs/interfaces/MAOInstances.md +9 -0
  76. package/docs/index.md +2 -139
  77. package/docs/interfaces/MAOInstanceContracts.md +9 -0
  78. package/docs/interfaces/MAOInstances.md +9 -0
  79. package/lib.commonjs/abis/Address.d.ts +11 -0
  80. package/lib.commonjs/abis/Address.d.ts.map +1 -0
  81. package/lib.commonjs/abis/Address.js +18 -0
  82. package/lib.commonjs/abis/Address.js.map +1 -0
  83. package/lib.commonjs/abis/Governor.d.ts +1329 -0
  84. package/lib.commonjs/abis/Governor.d.ts.map +1 -0
  85. package/lib.commonjs/abis/Governor.js +1735 -0
  86. package/lib.commonjs/abis/Governor.js.map +1 -0
  87. package/lib.commonjs/abis/GovernorCountingSimpleUpgradeable.d.ts +1043 -0
  88. package/lib.commonjs/abis/GovernorCountingSimpleUpgradeable.d.ts.map +1 -0
  89. package/lib.commonjs/abis/GovernorCountingSimpleUpgradeable.js +1365 -0
  90. package/lib.commonjs/abis/GovernorCountingSimpleUpgradeable.js.map +1 -0
  91. package/lib.commonjs/abis/GovernorSettingsUpgradeable.d.ts +1096 -0
  92. package/lib.commonjs/abis/GovernorSettingsUpgradeable.d.ts.map +1 -0
  93. package/lib.commonjs/abis/GovernorSettingsUpgradeable.js +1432 -0
  94. package/lib.commonjs/abis/GovernorSettingsUpgradeable.js.map +1 -0
  95. package/lib.commonjs/abis/GovernorStorageUpgradeable.d.ts +1117 -0
  96. package/lib.commonjs/abis/GovernorStorageUpgradeable.d.ts.map +1 -0
  97. package/lib.commonjs/abis/GovernorStorageUpgradeable.js +1461 -0
  98. package/lib.commonjs/abis/GovernorStorageUpgradeable.js.map +1 -0
  99. package/lib.commonjs/abis/GovernorUpgradeable.d.ts +1021 -0
  100. package/lib.commonjs/abis/GovernorUpgradeable.d.ts.map +1 -0
  101. package/lib.commonjs/abis/GovernorUpgradeable.js +1336 -0
  102. package/lib.commonjs/abis/GovernorUpgradeable.js.map +1 -0
  103. package/lib.commonjs/abis/GovernorVotesQuorumFractionUpgradeable.d.ts +1106 -0
  104. package/lib.commonjs/abis/GovernorVotesQuorumFractionUpgradeable.d.ts.map +1 -0
  105. package/lib.commonjs/abis/GovernorVotesQuorumFractionUpgradeable.js +1447 -0
  106. package/lib.commonjs/abis/GovernorVotesQuorumFractionUpgradeable.js.map +1 -0
  107. package/lib.commonjs/abis/GovernorVotesUpgradeable.d.ts +1031 -0
  108. package/lib.commonjs/abis/GovernorVotesUpgradeable.d.ts.map +1 -0
  109. package/lib.commonjs/abis/GovernorVotesUpgradeable.js +1349 -0
  110. package/lib.commonjs/abis/GovernorVotesUpgradeable.js.map +1 -0
  111. package/lib.commonjs/abis/IGovernor.d.ts +795 -0
  112. package/lib.commonjs/abis/IGovernor.d.ts.map +1 -0
  113. package/lib.commonjs/abis/IGovernor.js +1043 -0
  114. package/lib.commonjs/abis/IGovernor.js.map +1 -0
  115. package/lib.commonjs/abis/IRankifyInstance.d.ts +45 -0
  116. package/lib.commonjs/abis/IRankifyInstance.d.ts.map +1 -1
  117. package/lib.commonjs/abis/IRankifyInstance.js +58 -0
  118. package/lib.commonjs/abis/IRankifyInstance.js.map +1 -1
  119. package/lib.commonjs/abis/MAODistribution.d.ts +40 -16
  120. package/lib.commonjs/abis/MAODistribution.d.ts.map +1 -1
  121. package/lib.commonjs/abis/MAODistribution.js +49 -19
  122. package/lib.commonjs/abis/MAODistribution.js.map +1 -1
  123. package/lib.commonjs/abis/RankifyDiamondInstance.d.ts +278 -43
  124. package/lib.commonjs/abis/RankifyDiamondInstance.d.ts.map +1 -1
  125. package/lib.commonjs/abis/RankifyDiamondInstance.js +353 -49
  126. package/lib.commonjs/abis/RankifyDiamondInstance.js.map +1 -1
  127. package/lib.commonjs/abis/RankifyInstanceEventMock.d.ts +0 -40
  128. package/lib.commonjs/abis/RankifyInstanceEventMock.d.ts.map +1 -1
  129. package/lib.commonjs/abis/RankifyInstanceEventMock.js +0 -49
  130. package/lib.commonjs/abis/RankifyInstanceEventMock.js.map +1 -1
  131. package/lib.commonjs/abis/RankifyInstanceGameMastersFacet.d.ts +106 -21
  132. package/lib.commonjs/abis/RankifyInstanceGameMastersFacet.d.ts.map +1 -1
  133. package/lib.commonjs/abis/RankifyInstanceGameMastersFacet.js +131 -22
  134. package/lib.commonjs/abis/RankifyInstanceGameMastersFacet.js.map +1 -1
  135. package/lib.commonjs/abis/RankifyInstanceMainFacet.d.ts +151 -5
  136. package/lib.commonjs/abis/RankifyInstanceMainFacet.d.ts.map +1 -1
  137. package/lib.commonjs/abis/RankifyInstanceMainFacet.js +196 -6
  138. package/lib.commonjs/abis/RankifyInstanceMainFacet.js.map +1 -1
  139. package/lib.commonjs/abis/RankifyInstanceRequirementsFacet.d.ts +21 -17
  140. package/lib.commonjs/abis/RankifyInstanceRequirementsFacet.d.ts.map +1 -1
  141. package/lib.commonjs/abis/RankifyInstanceRequirementsFacet.js +26 -21
  142. package/lib.commonjs/abis/RankifyInstanceRequirementsFacet.js.map +1 -1
  143. package/lib.commonjs/abis/index.d.ts +10 -31084
  144. package/lib.commonjs/abis/index.d.ts.map +1 -1
  145. package/lib.commonjs/abis/index.js +39 -3
  146. package/lib.commonjs/abis/index.js.map +1 -1
  147. package/lib.commonjs/abis/superinterface.d.ts +1 -1
  148. package/lib.commonjs/abis/superinterface.d.ts.map +1 -1
  149. package/lib.commonjs/abis/superinterface.js +609 -20
  150. package/lib.commonjs/abis/superinterface.js.map +1 -1
  151. package/lib.commonjs/rankify/GameMaster.d.ts +26 -15
  152. package/lib.commonjs/rankify/GameMaster.d.ts.map +1 -1
  153. package/lib.commonjs/rankify/GameMaster.js +133 -110
  154. package/lib.commonjs/rankify/GameMaster.js.map +1 -1
  155. package/lib.commonjs/rankify/InstanceBase.d.ts +19 -27
  156. package/lib.commonjs/rankify/InstanceBase.d.ts.map +1 -1
  157. package/lib.commonjs/rankify/InstanceBase.js +35 -47
  158. package/lib.commonjs/rankify/InstanceBase.js.map +1 -1
  159. package/lib.commonjs/rankify/MAODistributor.d.ts +6 -1
  160. package/lib.commonjs/rankify/MAODistributor.d.ts.map +1 -1
  161. package/lib.commonjs/rankify/MAODistributor.js +9 -3
  162. package/lib.commonjs/rankify/MAODistributor.js.map +1 -1
  163. package/lib.commonjs/rankify/Player.d.ts +3 -2
  164. package/lib.commonjs/rankify/Player.d.ts.map +1 -1
  165. package/lib.commonjs/rankify/Player.js +8 -3
  166. package/lib.commonjs/rankify/Player.js.map +1 -1
  167. package/lib.commonjs/types/contracts.d.ts +2 -0
  168. package/lib.commonjs/types/contracts.d.ts.map +1 -1
  169. package/lib.commonjs/utils/EnvioGraphQLClient.d.ts +35 -23
  170. package/lib.commonjs/utils/EnvioGraphQLClient.d.ts.map +1 -1
  171. package/lib.commonjs/utils/EnvioGraphQLClient.js +94 -74
  172. package/lib.commonjs/utils/EnvioGraphQLClient.js.map +1 -1
  173. package/lib.commonjs/utils/index.d.ts.map +1 -1
  174. package/lib.commonjs/utils/index.js +4 -3
  175. package/lib.commonjs/utils/index.js.map +1 -1
  176. package/lib.esm/abis/Address.d.ts +11 -0
  177. package/lib.esm/abis/Address.d.ts.map +1 -0
  178. package/lib.esm/abis/Address.js +15 -0
  179. package/lib.esm/abis/Address.js.map +1 -0
  180. package/lib.esm/abis/Governor.d.ts +1329 -0
  181. package/lib.esm/abis/Governor.d.ts.map +1 -0
  182. package/lib.esm/abis/Governor.js +1732 -0
  183. package/lib.esm/abis/Governor.js.map +1 -0
  184. package/lib.esm/abis/GovernorCountingSimpleUpgradeable.d.ts +1043 -0
  185. package/lib.esm/abis/GovernorCountingSimpleUpgradeable.d.ts.map +1 -0
  186. package/lib.esm/abis/GovernorCountingSimpleUpgradeable.js +1362 -0
  187. package/lib.esm/abis/GovernorCountingSimpleUpgradeable.js.map +1 -0
  188. package/lib.esm/abis/GovernorSettingsUpgradeable.d.ts +1096 -0
  189. package/lib.esm/abis/GovernorSettingsUpgradeable.d.ts.map +1 -0
  190. package/lib.esm/abis/GovernorSettingsUpgradeable.js +1429 -0
  191. package/lib.esm/abis/GovernorSettingsUpgradeable.js.map +1 -0
  192. package/lib.esm/abis/GovernorStorageUpgradeable.d.ts +1117 -0
  193. package/lib.esm/abis/GovernorStorageUpgradeable.d.ts.map +1 -0
  194. package/lib.esm/abis/GovernorStorageUpgradeable.js +1458 -0
  195. package/lib.esm/abis/GovernorStorageUpgradeable.js.map +1 -0
  196. package/lib.esm/abis/GovernorUpgradeable.d.ts +1021 -0
  197. package/lib.esm/abis/GovernorUpgradeable.d.ts.map +1 -0
  198. package/lib.esm/abis/GovernorUpgradeable.js +1333 -0
  199. package/lib.esm/abis/GovernorUpgradeable.js.map +1 -0
  200. package/lib.esm/abis/GovernorVotesQuorumFractionUpgradeable.d.ts +1106 -0
  201. package/lib.esm/abis/GovernorVotesQuorumFractionUpgradeable.d.ts.map +1 -0
  202. package/lib.esm/abis/GovernorVotesQuorumFractionUpgradeable.js +1444 -0
  203. package/lib.esm/abis/GovernorVotesQuorumFractionUpgradeable.js.map +1 -0
  204. package/lib.esm/abis/GovernorVotesUpgradeable.d.ts +1031 -0
  205. package/lib.esm/abis/GovernorVotesUpgradeable.d.ts.map +1 -0
  206. package/lib.esm/abis/GovernorVotesUpgradeable.js +1346 -0
  207. package/lib.esm/abis/GovernorVotesUpgradeable.js.map +1 -0
  208. package/lib.esm/abis/IGovernor.d.ts +795 -0
  209. package/lib.esm/abis/IGovernor.d.ts.map +1 -0
  210. package/lib.esm/abis/IGovernor.js +1040 -0
  211. package/lib.esm/abis/IGovernor.js.map +1 -0
  212. package/lib.esm/abis/IRankifyInstance.d.ts +45 -0
  213. package/lib.esm/abis/IRankifyInstance.d.ts.map +1 -1
  214. package/lib.esm/abis/IRankifyInstance.js +58 -0
  215. package/lib.esm/abis/IRankifyInstance.js.map +1 -1
  216. package/lib.esm/abis/MAODistribution.d.ts +40 -16
  217. package/lib.esm/abis/MAODistribution.d.ts.map +1 -1
  218. package/lib.esm/abis/MAODistribution.js +49 -19
  219. package/lib.esm/abis/MAODistribution.js.map +1 -1
  220. package/lib.esm/abis/RankifyDiamondInstance.d.ts +278 -43
  221. package/lib.esm/abis/RankifyDiamondInstance.d.ts.map +1 -1
  222. package/lib.esm/abis/RankifyDiamondInstance.js +353 -49
  223. package/lib.esm/abis/RankifyDiamondInstance.js.map +1 -1
  224. package/lib.esm/abis/RankifyInstanceEventMock.d.ts +0 -40
  225. package/lib.esm/abis/RankifyInstanceEventMock.d.ts.map +1 -1
  226. package/lib.esm/abis/RankifyInstanceEventMock.js +0 -49
  227. package/lib.esm/abis/RankifyInstanceEventMock.js.map +1 -1
  228. package/lib.esm/abis/RankifyInstanceGameMastersFacet.d.ts +106 -21
  229. package/lib.esm/abis/RankifyInstanceGameMastersFacet.d.ts.map +1 -1
  230. package/lib.esm/abis/RankifyInstanceGameMastersFacet.js +131 -22
  231. package/lib.esm/abis/RankifyInstanceGameMastersFacet.js.map +1 -1
  232. package/lib.esm/abis/RankifyInstanceMainFacet.d.ts +151 -5
  233. package/lib.esm/abis/RankifyInstanceMainFacet.d.ts.map +1 -1
  234. package/lib.esm/abis/RankifyInstanceMainFacet.js +196 -6
  235. package/lib.esm/abis/RankifyInstanceMainFacet.js.map +1 -1
  236. package/lib.esm/abis/RankifyInstanceRequirementsFacet.d.ts +21 -17
  237. package/lib.esm/abis/RankifyInstanceRequirementsFacet.d.ts.map +1 -1
  238. package/lib.esm/abis/RankifyInstanceRequirementsFacet.js +26 -21
  239. package/lib.esm/abis/RankifyInstanceRequirementsFacet.js.map +1 -1
  240. package/lib.esm/abis/index.d.ts +10 -31084
  241. package/lib.esm/abis/index.d.ts.map +1 -1
  242. package/lib.esm/abis/index.js +27 -0
  243. package/lib.esm/abis/index.js.map +1 -1
  244. package/lib.esm/abis/superinterface.d.ts +1 -1
  245. package/lib.esm/abis/superinterface.d.ts.map +1 -1
  246. package/lib.esm/abis/superinterface.js +609 -20
  247. package/lib.esm/abis/superinterface.js.map +1 -1
  248. package/lib.esm/rankify/GameMaster.d.ts +26 -15
  249. package/lib.esm/rankify/GameMaster.d.ts.map +1 -1
  250. package/lib.esm/rankify/GameMaster.js +133 -110
  251. package/lib.esm/rankify/GameMaster.js.map +1 -1
  252. package/lib.esm/rankify/InstanceBase.d.ts +19 -27
  253. package/lib.esm/rankify/InstanceBase.d.ts.map +1 -1
  254. package/lib.esm/rankify/InstanceBase.js +35 -47
  255. package/lib.esm/rankify/InstanceBase.js.map +1 -1
  256. package/lib.esm/rankify/MAODistributor.d.ts +6 -1
  257. package/lib.esm/rankify/MAODistributor.d.ts.map +1 -1
  258. package/lib.esm/rankify/MAODistributor.js +9 -3
  259. package/lib.esm/rankify/MAODistributor.js.map +1 -1
  260. package/lib.esm/rankify/Player.d.ts +3 -2
  261. package/lib.esm/rankify/Player.d.ts.map +1 -1
  262. package/lib.esm/rankify/Player.js +8 -3
  263. package/lib.esm/rankify/Player.js.map +1 -1
  264. package/lib.esm/types/contracts.d.ts +2 -0
  265. package/lib.esm/types/contracts.d.ts.map +1 -1
  266. package/lib.esm/utils/EnvioGraphQLClient.d.ts +35 -23
  267. package/lib.esm/utils/EnvioGraphQLClient.d.ts.map +1 -1
  268. package/lib.esm/utils/EnvioGraphQLClient.js +94 -74
  269. package/lib.esm/utils/EnvioGraphQLClient.js.map +1 -1
  270. package/lib.esm/utils/index.d.ts.map +1 -1
  271. package/lib.esm/utils/index.js +4 -3
  272. package/lib.esm/utils/index.js.map +1 -1
  273. package/package.json +2 -2
  274. package/cli/cli/commands/fellowship/game/end-turn.js.map +0 -1
@@ -0,0 +1,1458 @@
1
+ export const GovernorStorageUpgradeableAbi = [
2
+ {
3
+ "inputs": [],
4
+ "name": "FailedCall",
5
+ "type": "error"
6
+ },
7
+ {
8
+ "inputs": [
9
+ {
10
+ "internalType": "address",
11
+ "name": "voter",
12
+ "type": "address"
13
+ }
14
+ ],
15
+ "name": "GovernorAlreadyCastVote",
16
+ "type": "error"
17
+ },
18
+ {
19
+ "inputs": [
20
+ {
21
+ "internalType": "uint256",
22
+ "name": "proposalId",
23
+ "type": "uint256"
24
+ }
25
+ ],
26
+ "name": "GovernorAlreadyQueuedProposal",
27
+ "type": "error"
28
+ },
29
+ {
30
+ "inputs": [],
31
+ "name": "GovernorDisabledDeposit",
32
+ "type": "error"
33
+ },
34
+ {
35
+ "inputs": [
36
+ {
37
+ "internalType": "address",
38
+ "name": "proposer",
39
+ "type": "address"
40
+ },
41
+ {
42
+ "internalType": "uint256",
43
+ "name": "votes",
44
+ "type": "uint256"
45
+ },
46
+ {
47
+ "internalType": "uint256",
48
+ "name": "threshold",
49
+ "type": "uint256"
50
+ }
51
+ ],
52
+ "name": "GovernorInsufficientProposerVotes",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "uint256",
59
+ "name": "targets",
60
+ "type": "uint256"
61
+ },
62
+ {
63
+ "internalType": "uint256",
64
+ "name": "calldatas",
65
+ "type": "uint256"
66
+ },
67
+ {
68
+ "internalType": "uint256",
69
+ "name": "values",
70
+ "type": "uint256"
71
+ }
72
+ ],
73
+ "name": "GovernorInvalidProposalLength",
74
+ "type": "error"
75
+ },
76
+ {
77
+ "inputs": [
78
+ {
79
+ "internalType": "address",
80
+ "name": "voter",
81
+ "type": "address"
82
+ }
83
+ ],
84
+ "name": "GovernorInvalidSignature",
85
+ "type": "error"
86
+ },
87
+ {
88
+ "inputs": [],
89
+ "name": "GovernorInvalidVoteParams",
90
+ "type": "error"
91
+ },
92
+ {
93
+ "inputs": [],
94
+ "name": "GovernorInvalidVoteType",
95
+ "type": "error"
96
+ },
97
+ {
98
+ "inputs": [
99
+ {
100
+ "internalType": "uint256",
101
+ "name": "votingPeriod",
102
+ "type": "uint256"
103
+ }
104
+ ],
105
+ "name": "GovernorInvalidVotingPeriod",
106
+ "type": "error"
107
+ },
108
+ {
109
+ "inputs": [
110
+ {
111
+ "internalType": "uint256",
112
+ "name": "proposalId",
113
+ "type": "uint256"
114
+ }
115
+ ],
116
+ "name": "GovernorNonexistentProposal",
117
+ "type": "error"
118
+ },
119
+ {
120
+ "inputs": [
121
+ {
122
+ "internalType": "uint256",
123
+ "name": "proposalId",
124
+ "type": "uint256"
125
+ }
126
+ ],
127
+ "name": "GovernorNotQueuedProposal",
128
+ "type": "error"
129
+ },
130
+ {
131
+ "inputs": [
132
+ {
133
+ "internalType": "address",
134
+ "name": "account",
135
+ "type": "address"
136
+ }
137
+ ],
138
+ "name": "GovernorOnlyExecutor",
139
+ "type": "error"
140
+ },
141
+ {
142
+ "inputs": [
143
+ {
144
+ "internalType": "address",
145
+ "name": "account",
146
+ "type": "address"
147
+ }
148
+ ],
149
+ "name": "GovernorOnlyProposer",
150
+ "type": "error"
151
+ },
152
+ {
153
+ "inputs": [],
154
+ "name": "GovernorQueueNotImplemented",
155
+ "type": "error"
156
+ },
157
+ {
158
+ "inputs": [
159
+ {
160
+ "internalType": "address",
161
+ "name": "proposer",
162
+ "type": "address"
163
+ }
164
+ ],
165
+ "name": "GovernorRestrictedProposer",
166
+ "type": "error"
167
+ },
168
+ {
169
+ "inputs": [
170
+ {
171
+ "internalType": "uint256",
172
+ "name": "proposalId",
173
+ "type": "uint256"
174
+ },
175
+ {
176
+ "internalType": "enum IGovernor.ProposalState",
177
+ "name": "current",
178
+ "type": "uint8"
179
+ },
180
+ {
181
+ "internalType": "bytes32",
182
+ "name": "expectedStates",
183
+ "type": "bytes32"
184
+ }
185
+ ],
186
+ "name": "GovernorUnexpectedProposalState",
187
+ "type": "error"
188
+ },
189
+ {
190
+ "inputs": [
191
+ {
192
+ "internalType": "address",
193
+ "name": "account",
194
+ "type": "address"
195
+ },
196
+ {
197
+ "internalType": "uint256",
198
+ "name": "currentNonce",
199
+ "type": "uint256"
200
+ }
201
+ ],
202
+ "name": "InvalidAccountNonce",
203
+ "type": "error"
204
+ },
205
+ {
206
+ "inputs": [],
207
+ "name": "InvalidInitialization",
208
+ "type": "error"
209
+ },
210
+ {
211
+ "inputs": [],
212
+ "name": "NotInitializing",
213
+ "type": "error"
214
+ },
215
+ {
216
+ "inputs": [
217
+ {
218
+ "internalType": "uint8",
219
+ "name": "bits",
220
+ "type": "uint8"
221
+ },
222
+ {
223
+ "internalType": "uint256",
224
+ "name": "value",
225
+ "type": "uint256"
226
+ }
227
+ ],
228
+ "name": "SafeCastOverflowedUintDowncast",
229
+ "type": "error"
230
+ },
231
+ {
232
+ "anonymous": false,
233
+ "inputs": [],
234
+ "name": "EIP712DomainChanged",
235
+ "type": "event"
236
+ },
237
+ {
238
+ "anonymous": false,
239
+ "inputs": [
240
+ {
241
+ "indexed": false,
242
+ "internalType": "uint64",
243
+ "name": "version",
244
+ "type": "uint64"
245
+ }
246
+ ],
247
+ "name": "Initialized",
248
+ "type": "event"
249
+ },
250
+ {
251
+ "anonymous": false,
252
+ "inputs": [
253
+ {
254
+ "indexed": false,
255
+ "internalType": "uint256",
256
+ "name": "proposalId",
257
+ "type": "uint256"
258
+ }
259
+ ],
260
+ "name": "ProposalCanceled",
261
+ "type": "event"
262
+ },
263
+ {
264
+ "anonymous": false,
265
+ "inputs": [
266
+ {
267
+ "indexed": false,
268
+ "internalType": "uint256",
269
+ "name": "proposalId",
270
+ "type": "uint256"
271
+ },
272
+ {
273
+ "indexed": false,
274
+ "internalType": "address",
275
+ "name": "proposer",
276
+ "type": "address"
277
+ },
278
+ {
279
+ "indexed": false,
280
+ "internalType": "address[]",
281
+ "name": "targets",
282
+ "type": "address[]"
283
+ },
284
+ {
285
+ "indexed": false,
286
+ "internalType": "uint256[]",
287
+ "name": "values",
288
+ "type": "uint256[]"
289
+ },
290
+ {
291
+ "indexed": false,
292
+ "internalType": "string[]",
293
+ "name": "signatures",
294
+ "type": "string[]"
295
+ },
296
+ {
297
+ "indexed": false,
298
+ "internalType": "bytes[]",
299
+ "name": "calldatas",
300
+ "type": "bytes[]"
301
+ },
302
+ {
303
+ "indexed": false,
304
+ "internalType": "uint256",
305
+ "name": "voteStart",
306
+ "type": "uint256"
307
+ },
308
+ {
309
+ "indexed": false,
310
+ "internalType": "uint256",
311
+ "name": "voteEnd",
312
+ "type": "uint256"
313
+ },
314
+ {
315
+ "indexed": false,
316
+ "internalType": "string",
317
+ "name": "description",
318
+ "type": "string"
319
+ }
320
+ ],
321
+ "name": "ProposalCreated",
322
+ "type": "event"
323
+ },
324
+ {
325
+ "anonymous": false,
326
+ "inputs": [
327
+ {
328
+ "indexed": false,
329
+ "internalType": "uint256",
330
+ "name": "proposalId",
331
+ "type": "uint256"
332
+ }
333
+ ],
334
+ "name": "ProposalExecuted",
335
+ "type": "event"
336
+ },
337
+ {
338
+ "anonymous": false,
339
+ "inputs": [
340
+ {
341
+ "indexed": false,
342
+ "internalType": "uint256",
343
+ "name": "proposalId",
344
+ "type": "uint256"
345
+ },
346
+ {
347
+ "indexed": false,
348
+ "internalType": "uint256",
349
+ "name": "etaSeconds",
350
+ "type": "uint256"
351
+ }
352
+ ],
353
+ "name": "ProposalQueued",
354
+ "type": "event"
355
+ },
356
+ {
357
+ "anonymous": false,
358
+ "inputs": [
359
+ {
360
+ "indexed": true,
361
+ "internalType": "address",
362
+ "name": "voter",
363
+ "type": "address"
364
+ },
365
+ {
366
+ "indexed": false,
367
+ "internalType": "uint256",
368
+ "name": "proposalId",
369
+ "type": "uint256"
370
+ },
371
+ {
372
+ "indexed": false,
373
+ "internalType": "uint8",
374
+ "name": "support",
375
+ "type": "uint8"
376
+ },
377
+ {
378
+ "indexed": false,
379
+ "internalType": "uint256",
380
+ "name": "weight",
381
+ "type": "uint256"
382
+ },
383
+ {
384
+ "indexed": false,
385
+ "internalType": "string",
386
+ "name": "reason",
387
+ "type": "string"
388
+ }
389
+ ],
390
+ "name": "VoteCast",
391
+ "type": "event"
392
+ },
393
+ {
394
+ "anonymous": false,
395
+ "inputs": [
396
+ {
397
+ "indexed": true,
398
+ "internalType": "address",
399
+ "name": "voter",
400
+ "type": "address"
401
+ },
402
+ {
403
+ "indexed": false,
404
+ "internalType": "uint256",
405
+ "name": "proposalId",
406
+ "type": "uint256"
407
+ },
408
+ {
409
+ "indexed": false,
410
+ "internalType": "uint8",
411
+ "name": "support",
412
+ "type": "uint8"
413
+ },
414
+ {
415
+ "indexed": false,
416
+ "internalType": "uint256",
417
+ "name": "weight",
418
+ "type": "uint256"
419
+ },
420
+ {
421
+ "indexed": false,
422
+ "internalType": "string",
423
+ "name": "reason",
424
+ "type": "string"
425
+ },
426
+ {
427
+ "indexed": false,
428
+ "internalType": "bytes",
429
+ "name": "params",
430
+ "type": "bytes"
431
+ }
432
+ ],
433
+ "name": "VoteCastWithParams",
434
+ "type": "event"
435
+ },
436
+ {
437
+ "inputs": [],
438
+ "name": "BALLOT_TYPEHASH",
439
+ "outputs": [
440
+ {
441
+ "internalType": "bytes32",
442
+ "name": "",
443
+ "type": "bytes32"
444
+ }
445
+ ],
446
+ "stateMutability": "view",
447
+ "type": "function"
448
+ },
449
+ {
450
+ "inputs": [],
451
+ "name": "CLOCK_MODE",
452
+ "outputs": [
453
+ {
454
+ "internalType": "string",
455
+ "name": "",
456
+ "type": "string"
457
+ }
458
+ ],
459
+ "stateMutability": "view",
460
+ "type": "function"
461
+ },
462
+ {
463
+ "inputs": [],
464
+ "name": "COUNTING_MODE",
465
+ "outputs": [
466
+ {
467
+ "internalType": "string",
468
+ "name": "",
469
+ "type": "string"
470
+ }
471
+ ],
472
+ "stateMutability": "view",
473
+ "type": "function"
474
+ },
475
+ {
476
+ "inputs": [],
477
+ "name": "EXTENDED_BALLOT_TYPEHASH",
478
+ "outputs": [
479
+ {
480
+ "internalType": "bytes32",
481
+ "name": "",
482
+ "type": "bytes32"
483
+ }
484
+ ],
485
+ "stateMutability": "view",
486
+ "type": "function"
487
+ },
488
+ {
489
+ "inputs": [
490
+ {
491
+ "internalType": "uint256",
492
+ "name": "proposalId",
493
+ "type": "uint256"
494
+ }
495
+ ],
496
+ "name": "cancel",
497
+ "outputs": [],
498
+ "stateMutability": "nonpayable",
499
+ "type": "function"
500
+ },
501
+ {
502
+ "inputs": [
503
+ {
504
+ "internalType": "address[]",
505
+ "name": "targets",
506
+ "type": "address[]"
507
+ },
508
+ {
509
+ "internalType": "uint256[]",
510
+ "name": "values",
511
+ "type": "uint256[]"
512
+ },
513
+ {
514
+ "internalType": "bytes[]",
515
+ "name": "calldatas",
516
+ "type": "bytes[]"
517
+ },
518
+ {
519
+ "internalType": "bytes32",
520
+ "name": "descriptionHash",
521
+ "type": "bytes32"
522
+ }
523
+ ],
524
+ "name": "cancel",
525
+ "outputs": [
526
+ {
527
+ "internalType": "uint256",
528
+ "name": "",
529
+ "type": "uint256"
530
+ }
531
+ ],
532
+ "stateMutability": "nonpayable",
533
+ "type": "function"
534
+ },
535
+ {
536
+ "inputs": [
537
+ {
538
+ "internalType": "uint256",
539
+ "name": "proposalId",
540
+ "type": "uint256"
541
+ },
542
+ {
543
+ "internalType": "uint8",
544
+ "name": "support",
545
+ "type": "uint8"
546
+ }
547
+ ],
548
+ "name": "castVote",
549
+ "outputs": [
550
+ {
551
+ "internalType": "uint256",
552
+ "name": "",
553
+ "type": "uint256"
554
+ }
555
+ ],
556
+ "stateMutability": "nonpayable",
557
+ "type": "function"
558
+ },
559
+ {
560
+ "inputs": [
561
+ {
562
+ "internalType": "uint256",
563
+ "name": "proposalId",
564
+ "type": "uint256"
565
+ },
566
+ {
567
+ "internalType": "uint8",
568
+ "name": "support",
569
+ "type": "uint8"
570
+ },
571
+ {
572
+ "internalType": "address",
573
+ "name": "voter",
574
+ "type": "address"
575
+ },
576
+ {
577
+ "internalType": "bytes",
578
+ "name": "signature",
579
+ "type": "bytes"
580
+ }
581
+ ],
582
+ "name": "castVoteBySig",
583
+ "outputs": [
584
+ {
585
+ "internalType": "uint256",
586
+ "name": "",
587
+ "type": "uint256"
588
+ }
589
+ ],
590
+ "stateMutability": "nonpayable",
591
+ "type": "function"
592
+ },
593
+ {
594
+ "inputs": [
595
+ {
596
+ "internalType": "uint256",
597
+ "name": "proposalId",
598
+ "type": "uint256"
599
+ },
600
+ {
601
+ "internalType": "uint8",
602
+ "name": "support",
603
+ "type": "uint8"
604
+ },
605
+ {
606
+ "internalType": "string",
607
+ "name": "reason",
608
+ "type": "string"
609
+ }
610
+ ],
611
+ "name": "castVoteWithReason",
612
+ "outputs": [
613
+ {
614
+ "internalType": "uint256",
615
+ "name": "",
616
+ "type": "uint256"
617
+ }
618
+ ],
619
+ "stateMutability": "nonpayable",
620
+ "type": "function"
621
+ },
622
+ {
623
+ "inputs": [
624
+ {
625
+ "internalType": "uint256",
626
+ "name": "proposalId",
627
+ "type": "uint256"
628
+ },
629
+ {
630
+ "internalType": "uint8",
631
+ "name": "support",
632
+ "type": "uint8"
633
+ },
634
+ {
635
+ "internalType": "string",
636
+ "name": "reason",
637
+ "type": "string"
638
+ },
639
+ {
640
+ "internalType": "bytes",
641
+ "name": "params",
642
+ "type": "bytes"
643
+ }
644
+ ],
645
+ "name": "castVoteWithReasonAndParams",
646
+ "outputs": [
647
+ {
648
+ "internalType": "uint256",
649
+ "name": "",
650
+ "type": "uint256"
651
+ }
652
+ ],
653
+ "stateMutability": "nonpayable",
654
+ "type": "function"
655
+ },
656
+ {
657
+ "inputs": [
658
+ {
659
+ "internalType": "uint256",
660
+ "name": "proposalId",
661
+ "type": "uint256"
662
+ },
663
+ {
664
+ "internalType": "uint8",
665
+ "name": "support",
666
+ "type": "uint8"
667
+ },
668
+ {
669
+ "internalType": "address",
670
+ "name": "voter",
671
+ "type": "address"
672
+ },
673
+ {
674
+ "internalType": "string",
675
+ "name": "reason",
676
+ "type": "string"
677
+ },
678
+ {
679
+ "internalType": "bytes",
680
+ "name": "params",
681
+ "type": "bytes"
682
+ },
683
+ {
684
+ "internalType": "bytes",
685
+ "name": "signature",
686
+ "type": "bytes"
687
+ }
688
+ ],
689
+ "name": "castVoteWithReasonAndParamsBySig",
690
+ "outputs": [
691
+ {
692
+ "internalType": "uint256",
693
+ "name": "",
694
+ "type": "uint256"
695
+ }
696
+ ],
697
+ "stateMutability": "nonpayable",
698
+ "type": "function"
699
+ },
700
+ {
701
+ "inputs": [],
702
+ "name": "clock",
703
+ "outputs": [
704
+ {
705
+ "internalType": "uint48",
706
+ "name": "",
707
+ "type": "uint48"
708
+ }
709
+ ],
710
+ "stateMutability": "view",
711
+ "type": "function"
712
+ },
713
+ {
714
+ "inputs": [],
715
+ "name": "eip712Domain",
716
+ "outputs": [
717
+ {
718
+ "internalType": "bytes1",
719
+ "name": "fields",
720
+ "type": "bytes1"
721
+ },
722
+ {
723
+ "internalType": "string",
724
+ "name": "name",
725
+ "type": "string"
726
+ },
727
+ {
728
+ "internalType": "string",
729
+ "name": "version",
730
+ "type": "string"
731
+ },
732
+ {
733
+ "internalType": "uint256",
734
+ "name": "chainId",
735
+ "type": "uint256"
736
+ },
737
+ {
738
+ "internalType": "address",
739
+ "name": "verifyingContract",
740
+ "type": "address"
741
+ },
742
+ {
743
+ "internalType": "bytes32",
744
+ "name": "salt",
745
+ "type": "bytes32"
746
+ },
747
+ {
748
+ "internalType": "uint256[]",
749
+ "name": "extensions",
750
+ "type": "uint256[]"
751
+ }
752
+ ],
753
+ "stateMutability": "view",
754
+ "type": "function"
755
+ },
756
+ {
757
+ "inputs": [
758
+ {
759
+ "internalType": "address[]",
760
+ "name": "targets",
761
+ "type": "address[]"
762
+ },
763
+ {
764
+ "internalType": "uint256[]",
765
+ "name": "values",
766
+ "type": "uint256[]"
767
+ },
768
+ {
769
+ "internalType": "bytes[]",
770
+ "name": "calldatas",
771
+ "type": "bytes[]"
772
+ },
773
+ {
774
+ "internalType": "bytes32",
775
+ "name": "descriptionHash",
776
+ "type": "bytes32"
777
+ }
778
+ ],
779
+ "name": "execute",
780
+ "outputs": [
781
+ {
782
+ "internalType": "uint256",
783
+ "name": "",
784
+ "type": "uint256"
785
+ }
786
+ ],
787
+ "stateMutability": "payable",
788
+ "type": "function"
789
+ },
790
+ {
791
+ "inputs": [
792
+ {
793
+ "internalType": "uint256",
794
+ "name": "proposalId",
795
+ "type": "uint256"
796
+ }
797
+ ],
798
+ "name": "execute",
799
+ "outputs": [],
800
+ "stateMutability": "payable",
801
+ "type": "function"
802
+ },
803
+ {
804
+ "inputs": [
805
+ {
806
+ "internalType": "address",
807
+ "name": "account",
808
+ "type": "address"
809
+ },
810
+ {
811
+ "internalType": "uint256",
812
+ "name": "timepoint",
813
+ "type": "uint256"
814
+ }
815
+ ],
816
+ "name": "getVotes",
817
+ "outputs": [
818
+ {
819
+ "internalType": "uint256",
820
+ "name": "",
821
+ "type": "uint256"
822
+ }
823
+ ],
824
+ "stateMutability": "view",
825
+ "type": "function"
826
+ },
827
+ {
828
+ "inputs": [
829
+ {
830
+ "internalType": "address",
831
+ "name": "account",
832
+ "type": "address"
833
+ },
834
+ {
835
+ "internalType": "uint256",
836
+ "name": "timepoint",
837
+ "type": "uint256"
838
+ },
839
+ {
840
+ "internalType": "bytes",
841
+ "name": "params",
842
+ "type": "bytes"
843
+ }
844
+ ],
845
+ "name": "getVotesWithParams",
846
+ "outputs": [
847
+ {
848
+ "internalType": "uint256",
849
+ "name": "",
850
+ "type": "uint256"
851
+ }
852
+ ],
853
+ "stateMutability": "view",
854
+ "type": "function"
855
+ },
856
+ {
857
+ "inputs": [
858
+ {
859
+ "internalType": "uint256",
860
+ "name": "proposalId",
861
+ "type": "uint256"
862
+ },
863
+ {
864
+ "internalType": "address",
865
+ "name": "account",
866
+ "type": "address"
867
+ }
868
+ ],
869
+ "name": "hasVoted",
870
+ "outputs": [
871
+ {
872
+ "internalType": "bool",
873
+ "name": "",
874
+ "type": "bool"
875
+ }
876
+ ],
877
+ "stateMutability": "view",
878
+ "type": "function"
879
+ },
880
+ {
881
+ "inputs": [
882
+ {
883
+ "internalType": "address[]",
884
+ "name": "targets",
885
+ "type": "address[]"
886
+ },
887
+ {
888
+ "internalType": "uint256[]",
889
+ "name": "values",
890
+ "type": "uint256[]"
891
+ },
892
+ {
893
+ "internalType": "bytes[]",
894
+ "name": "calldatas",
895
+ "type": "bytes[]"
896
+ },
897
+ {
898
+ "internalType": "bytes32",
899
+ "name": "descriptionHash",
900
+ "type": "bytes32"
901
+ }
902
+ ],
903
+ "name": "hashProposal",
904
+ "outputs": [
905
+ {
906
+ "internalType": "uint256",
907
+ "name": "",
908
+ "type": "uint256"
909
+ }
910
+ ],
911
+ "stateMutability": "pure",
912
+ "type": "function"
913
+ },
914
+ {
915
+ "inputs": [],
916
+ "name": "name",
917
+ "outputs": [
918
+ {
919
+ "internalType": "string",
920
+ "name": "",
921
+ "type": "string"
922
+ }
923
+ ],
924
+ "stateMutability": "view",
925
+ "type": "function"
926
+ },
927
+ {
928
+ "inputs": [
929
+ {
930
+ "internalType": "address",
931
+ "name": "owner",
932
+ "type": "address"
933
+ }
934
+ ],
935
+ "name": "nonces",
936
+ "outputs": [
937
+ {
938
+ "internalType": "uint256",
939
+ "name": "",
940
+ "type": "uint256"
941
+ }
942
+ ],
943
+ "stateMutability": "view",
944
+ "type": "function"
945
+ },
946
+ {
947
+ "inputs": [
948
+ {
949
+ "internalType": "address",
950
+ "name": "",
951
+ "type": "address"
952
+ },
953
+ {
954
+ "internalType": "address",
955
+ "name": "",
956
+ "type": "address"
957
+ },
958
+ {
959
+ "internalType": "uint256[]",
960
+ "name": "",
961
+ "type": "uint256[]"
962
+ },
963
+ {
964
+ "internalType": "uint256[]",
965
+ "name": "",
966
+ "type": "uint256[]"
967
+ },
968
+ {
969
+ "internalType": "bytes",
970
+ "name": "",
971
+ "type": "bytes"
972
+ }
973
+ ],
974
+ "name": "onERC1155BatchReceived",
975
+ "outputs": [
976
+ {
977
+ "internalType": "bytes4",
978
+ "name": "",
979
+ "type": "bytes4"
980
+ }
981
+ ],
982
+ "stateMutability": "nonpayable",
983
+ "type": "function"
984
+ },
985
+ {
986
+ "inputs": [
987
+ {
988
+ "internalType": "address",
989
+ "name": "",
990
+ "type": "address"
991
+ },
992
+ {
993
+ "internalType": "address",
994
+ "name": "",
995
+ "type": "address"
996
+ },
997
+ {
998
+ "internalType": "uint256",
999
+ "name": "",
1000
+ "type": "uint256"
1001
+ },
1002
+ {
1003
+ "internalType": "uint256",
1004
+ "name": "",
1005
+ "type": "uint256"
1006
+ },
1007
+ {
1008
+ "internalType": "bytes",
1009
+ "name": "",
1010
+ "type": "bytes"
1011
+ }
1012
+ ],
1013
+ "name": "onERC1155Received",
1014
+ "outputs": [
1015
+ {
1016
+ "internalType": "bytes4",
1017
+ "name": "",
1018
+ "type": "bytes4"
1019
+ }
1020
+ ],
1021
+ "stateMutability": "nonpayable",
1022
+ "type": "function"
1023
+ },
1024
+ {
1025
+ "inputs": [
1026
+ {
1027
+ "internalType": "address",
1028
+ "name": "",
1029
+ "type": "address"
1030
+ },
1031
+ {
1032
+ "internalType": "address",
1033
+ "name": "",
1034
+ "type": "address"
1035
+ },
1036
+ {
1037
+ "internalType": "uint256",
1038
+ "name": "",
1039
+ "type": "uint256"
1040
+ },
1041
+ {
1042
+ "internalType": "bytes",
1043
+ "name": "",
1044
+ "type": "bytes"
1045
+ }
1046
+ ],
1047
+ "name": "onERC721Received",
1048
+ "outputs": [
1049
+ {
1050
+ "internalType": "bytes4",
1051
+ "name": "",
1052
+ "type": "bytes4"
1053
+ }
1054
+ ],
1055
+ "stateMutability": "nonpayable",
1056
+ "type": "function"
1057
+ },
1058
+ {
1059
+ "inputs": [],
1060
+ "name": "proposalCount",
1061
+ "outputs": [
1062
+ {
1063
+ "internalType": "uint256",
1064
+ "name": "",
1065
+ "type": "uint256"
1066
+ }
1067
+ ],
1068
+ "stateMutability": "view",
1069
+ "type": "function"
1070
+ },
1071
+ {
1072
+ "inputs": [
1073
+ {
1074
+ "internalType": "uint256",
1075
+ "name": "proposalId",
1076
+ "type": "uint256"
1077
+ }
1078
+ ],
1079
+ "name": "proposalDeadline",
1080
+ "outputs": [
1081
+ {
1082
+ "internalType": "uint256",
1083
+ "name": "",
1084
+ "type": "uint256"
1085
+ }
1086
+ ],
1087
+ "stateMutability": "view",
1088
+ "type": "function"
1089
+ },
1090
+ {
1091
+ "inputs": [
1092
+ {
1093
+ "internalType": "uint256",
1094
+ "name": "proposalId",
1095
+ "type": "uint256"
1096
+ }
1097
+ ],
1098
+ "name": "proposalDetails",
1099
+ "outputs": [
1100
+ {
1101
+ "internalType": "address[]",
1102
+ "name": "targets",
1103
+ "type": "address[]"
1104
+ },
1105
+ {
1106
+ "internalType": "uint256[]",
1107
+ "name": "values",
1108
+ "type": "uint256[]"
1109
+ },
1110
+ {
1111
+ "internalType": "bytes[]",
1112
+ "name": "calldatas",
1113
+ "type": "bytes[]"
1114
+ },
1115
+ {
1116
+ "internalType": "bytes32",
1117
+ "name": "descriptionHash",
1118
+ "type": "bytes32"
1119
+ }
1120
+ ],
1121
+ "stateMutability": "view",
1122
+ "type": "function"
1123
+ },
1124
+ {
1125
+ "inputs": [
1126
+ {
1127
+ "internalType": "uint256",
1128
+ "name": "index",
1129
+ "type": "uint256"
1130
+ }
1131
+ ],
1132
+ "name": "proposalDetailsAt",
1133
+ "outputs": [
1134
+ {
1135
+ "internalType": "uint256",
1136
+ "name": "proposalId",
1137
+ "type": "uint256"
1138
+ },
1139
+ {
1140
+ "internalType": "address[]",
1141
+ "name": "targets",
1142
+ "type": "address[]"
1143
+ },
1144
+ {
1145
+ "internalType": "uint256[]",
1146
+ "name": "values",
1147
+ "type": "uint256[]"
1148
+ },
1149
+ {
1150
+ "internalType": "bytes[]",
1151
+ "name": "calldatas",
1152
+ "type": "bytes[]"
1153
+ },
1154
+ {
1155
+ "internalType": "bytes32",
1156
+ "name": "descriptionHash",
1157
+ "type": "bytes32"
1158
+ }
1159
+ ],
1160
+ "stateMutability": "view",
1161
+ "type": "function"
1162
+ },
1163
+ {
1164
+ "inputs": [
1165
+ {
1166
+ "internalType": "uint256",
1167
+ "name": "proposalId",
1168
+ "type": "uint256"
1169
+ }
1170
+ ],
1171
+ "name": "proposalEta",
1172
+ "outputs": [
1173
+ {
1174
+ "internalType": "uint256",
1175
+ "name": "",
1176
+ "type": "uint256"
1177
+ }
1178
+ ],
1179
+ "stateMutability": "view",
1180
+ "type": "function"
1181
+ },
1182
+ {
1183
+ "inputs": [
1184
+ {
1185
+ "internalType": "uint256",
1186
+ "name": "",
1187
+ "type": "uint256"
1188
+ }
1189
+ ],
1190
+ "name": "proposalNeedsQueuing",
1191
+ "outputs": [
1192
+ {
1193
+ "internalType": "bool",
1194
+ "name": "",
1195
+ "type": "bool"
1196
+ }
1197
+ ],
1198
+ "stateMutability": "view",
1199
+ "type": "function"
1200
+ },
1201
+ {
1202
+ "inputs": [
1203
+ {
1204
+ "internalType": "uint256",
1205
+ "name": "proposalId",
1206
+ "type": "uint256"
1207
+ }
1208
+ ],
1209
+ "name": "proposalProposer",
1210
+ "outputs": [
1211
+ {
1212
+ "internalType": "address",
1213
+ "name": "",
1214
+ "type": "address"
1215
+ }
1216
+ ],
1217
+ "stateMutability": "view",
1218
+ "type": "function"
1219
+ },
1220
+ {
1221
+ "inputs": [
1222
+ {
1223
+ "internalType": "uint256",
1224
+ "name": "proposalId",
1225
+ "type": "uint256"
1226
+ }
1227
+ ],
1228
+ "name": "proposalSnapshot",
1229
+ "outputs": [
1230
+ {
1231
+ "internalType": "uint256",
1232
+ "name": "",
1233
+ "type": "uint256"
1234
+ }
1235
+ ],
1236
+ "stateMutability": "view",
1237
+ "type": "function"
1238
+ },
1239
+ {
1240
+ "inputs": [],
1241
+ "name": "proposalThreshold",
1242
+ "outputs": [
1243
+ {
1244
+ "internalType": "uint256",
1245
+ "name": "",
1246
+ "type": "uint256"
1247
+ }
1248
+ ],
1249
+ "stateMutability": "view",
1250
+ "type": "function"
1251
+ },
1252
+ {
1253
+ "inputs": [
1254
+ {
1255
+ "internalType": "address[]",
1256
+ "name": "targets",
1257
+ "type": "address[]"
1258
+ },
1259
+ {
1260
+ "internalType": "uint256[]",
1261
+ "name": "values",
1262
+ "type": "uint256[]"
1263
+ },
1264
+ {
1265
+ "internalType": "bytes[]",
1266
+ "name": "calldatas",
1267
+ "type": "bytes[]"
1268
+ },
1269
+ {
1270
+ "internalType": "string",
1271
+ "name": "description",
1272
+ "type": "string"
1273
+ }
1274
+ ],
1275
+ "name": "propose",
1276
+ "outputs": [
1277
+ {
1278
+ "internalType": "uint256",
1279
+ "name": "",
1280
+ "type": "uint256"
1281
+ }
1282
+ ],
1283
+ "stateMutability": "nonpayable",
1284
+ "type": "function"
1285
+ },
1286
+ {
1287
+ "inputs": [
1288
+ {
1289
+ "internalType": "address[]",
1290
+ "name": "targets",
1291
+ "type": "address[]"
1292
+ },
1293
+ {
1294
+ "internalType": "uint256[]",
1295
+ "name": "values",
1296
+ "type": "uint256[]"
1297
+ },
1298
+ {
1299
+ "internalType": "bytes[]",
1300
+ "name": "calldatas",
1301
+ "type": "bytes[]"
1302
+ },
1303
+ {
1304
+ "internalType": "bytes32",
1305
+ "name": "descriptionHash",
1306
+ "type": "bytes32"
1307
+ }
1308
+ ],
1309
+ "name": "queue",
1310
+ "outputs": [
1311
+ {
1312
+ "internalType": "uint256",
1313
+ "name": "",
1314
+ "type": "uint256"
1315
+ }
1316
+ ],
1317
+ "stateMutability": "nonpayable",
1318
+ "type": "function"
1319
+ },
1320
+ {
1321
+ "inputs": [
1322
+ {
1323
+ "internalType": "uint256",
1324
+ "name": "proposalId",
1325
+ "type": "uint256"
1326
+ }
1327
+ ],
1328
+ "name": "queue",
1329
+ "outputs": [],
1330
+ "stateMutability": "nonpayable",
1331
+ "type": "function"
1332
+ },
1333
+ {
1334
+ "inputs": [
1335
+ {
1336
+ "internalType": "uint256",
1337
+ "name": "timepoint",
1338
+ "type": "uint256"
1339
+ }
1340
+ ],
1341
+ "name": "quorum",
1342
+ "outputs": [
1343
+ {
1344
+ "internalType": "uint256",
1345
+ "name": "",
1346
+ "type": "uint256"
1347
+ }
1348
+ ],
1349
+ "stateMutability": "view",
1350
+ "type": "function"
1351
+ },
1352
+ {
1353
+ "inputs": [
1354
+ {
1355
+ "internalType": "address",
1356
+ "name": "target",
1357
+ "type": "address"
1358
+ },
1359
+ {
1360
+ "internalType": "uint256",
1361
+ "name": "value",
1362
+ "type": "uint256"
1363
+ },
1364
+ {
1365
+ "internalType": "bytes",
1366
+ "name": "data",
1367
+ "type": "bytes"
1368
+ }
1369
+ ],
1370
+ "name": "relay",
1371
+ "outputs": [],
1372
+ "stateMutability": "payable",
1373
+ "type": "function"
1374
+ },
1375
+ {
1376
+ "inputs": [
1377
+ {
1378
+ "internalType": "uint256",
1379
+ "name": "proposalId",
1380
+ "type": "uint256"
1381
+ }
1382
+ ],
1383
+ "name": "state",
1384
+ "outputs": [
1385
+ {
1386
+ "internalType": "enum IGovernor.ProposalState",
1387
+ "name": "",
1388
+ "type": "uint8"
1389
+ }
1390
+ ],
1391
+ "stateMutability": "view",
1392
+ "type": "function"
1393
+ },
1394
+ {
1395
+ "inputs": [
1396
+ {
1397
+ "internalType": "bytes4",
1398
+ "name": "interfaceId",
1399
+ "type": "bytes4"
1400
+ }
1401
+ ],
1402
+ "name": "supportsInterface",
1403
+ "outputs": [
1404
+ {
1405
+ "internalType": "bool",
1406
+ "name": "",
1407
+ "type": "bool"
1408
+ }
1409
+ ],
1410
+ "stateMutability": "view",
1411
+ "type": "function"
1412
+ },
1413
+ {
1414
+ "inputs": [],
1415
+ "name": "version",
1416
+ "outputs": [
1417
+ {
1418
+ "internalType": "string",
1419
+ "name": "",
1420
+ "type": "string"
1421
+ }
1422
+ ],
1423
+ "stateMutability": "view",
1424
+ "type": "function"
1425
+ },
1426
+ {
1427
+ "inputs": [],
1428
+ "name": "votingDelay",
1429
+ "outputs": [
1430
+ {
1431
+ "internalType": "uint256",
1432
+ "name": "",
1433
+ "type": "uint256"
1434
+ }
1435
+ ],
1436
+ "stateMutability": "view",
1437
+ "type": "function"
1438
+ },
1439
+ {
1440
+ "inputs": [],
1441
+ "name": "votingPeriod",
1442
+ "outputs": [
1443
+ {
1444
+ "internalType": "uint256",
1445
+ "name": "",
1446
+ "type": "uint256"
1447
+ }
1448
+ ],
1449
+ "stateMutability": "view",
1450
+ "type": "function"
1451
+ },
1452
+ {
1453
+ "stateMutability": "payable",
1454
+ "type": "receive"
1455
+ }
1456
+ ];
1457
+ export default GovernorStorageUpgradeableAbi;
1458
+ //# sourceMappingURL=GovernorStorageUpgradeable.js.map