@peeramid-labs/sdk 3.11.3 → 3.12.1

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