@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,1365 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GovernorCountingSimpleUpgradeableAbi = void 0;
4
+ exports.GovernorCountingSimpleUpgradeableAbi = [
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": "pure",
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": "address[]",
495
+ "name": "targets",
496
+ "type": "address[]"
497
+ },
498
+ {
499
+ "internalType": "uint256[]",
500
+ "name": "values",
501
+ "type": "uint256[]"
502
+ },
503
+ {
504
+ "internalType": "bytes[]",
505
+ "name": "calldatas",
506
+ "type": "bytes[]"
507
+ },
508
+ {
509
+ "internalType": "bytes32",
510
+ "name": "descriptionHash",
511
+ "type": "bytes32"
512
+ }
513
+ ],
514
+ "name": "cancel",
515
+ "outputs": [
516
+ {
517
+ "internalType": "uint256",
518
+ "name": "",
519
+ "type": "uint256"
520
+ }
521
+ ],
522
+ "stateMutability": "nonpayable",
523
+ "type": "function"
524
+ },
525
+ {
526
+ "inputs": [
527
+ {
528
+ "internalType": "uint256",
529
+ "name": "proposalId",
530
+ "type": "uint256"
531
+ },
532
+ {
533
+ "internalType": "uint8",
534
+ "name": "support",
535
+ "type": "uint8"
536
+ }
537
+ ],
538
+ "name": "castVote",
539
+ "outputs": [
540
+ {
541
+ "internalType": "uint256",
542
+ "name": "",
543
+ "type": "uint256"
544
+ }
545
+ ],
546
+ "stateMutability": "nonpayable",
547
+ "type": "function"
548
+ },
549
+ {
550
+ "inputs": [
551
+ {
552
+ "internalType": "uint256",
553
+ "name": "proposalId",
554
+ "type": "uint256"
555
+ },
556
+ {
557
+ "internalType": "uint8",
558
+ "name": "support",
559
+ "type": "uint8"
560
+ },
561
+ {
562
+ "internalType": "address",
563
+ "name": "voter",
564
+ "type": "address"
565
+ },
566
+ {
567
+ "internalType": "bytes",
568
+ "name": "signature",
569
+ "type": "bytes"
570
+ }
571
+ ],
572
+ "name": "castVoteBySig",
573
+ "outputs": [
574
+ {
575
+ "internalType": "uint256",
576
+ "name": "",
577
+ "type": "uint256"
578
+ }
579
+ ],
580
+ "stateMutability": "nonpayable",
581
+ "type": "function"
582
+ },
583
+ {
584
+ "inputs": [
585
+ {
586
+ "internalType": "uint256",
587
+ "name": "proposalId",
588
+ "type": "uint256"
589
+ },
590
+ {
591
+ "internalType": "uint8",
592
+ "name": "support",
593
+ "type": "uint8"
594
+ },
595
+ {
596
+ "internalType": "string",
597
+ "name": "reason",
598
+ "type": "string"
599
+ }
600
+ ],
601
+ "name": "castVoteWithReason",
602
+ "outputs": [
603
+ {
604
+ "internalType": "uint256",
605
+ "name": "",
606
+ "type": "uint256"
607
+ }
608
+ ],
609
+ "stateMutability": "nonpayable",
610
+ "type": "function"
611
+ },
612
+ {
613
+ "inputs": [
614
+ {
615
+ "internalType": "uint256",
616
+ "name": "proposalId",
617
+ "type": "uint256"
618
+ },
619
+ {
620
+ "internalType": "uint8",
621
+ "name": "support",
622
+ "type": "uint8"
623
+ },
624
+ {
625
+ "internalType": "string",
626
+ "name": "reason",
627
+ "type": "string"
628
+ },
629
+ {
630
+ "internalType": "bytes",
631
+ "name": "params",
632
+ "type": "bytes"
633
+ }
634
+ ],
635
+ "name": "castVoteWithReasonAndParams",
636
+ "outputs": [
637
+ {
638
+ "internalType": "uint256",
639
+ "name": "",
640
+ "type": "uint256"
641
+ }
642
+ ],
643
+ "stateMutability": "nonpayable",
644
+ "type": "function"
645
+ },
646
+ {
647
+ "inputs": [
648
+ {
649
+ "internalType": "uint256",
650
+ "name": "proposalId",
651
+ "type": "uint256"
652
+ },
653
+ {
654
+ "internalType": "uint8",
655
+ "name": "support",
656
+ "type": "uint8"
657
+ },
658
+ {
659
+ "internalType": "address",
660
+ "name": "voter",
661
+ "type": "address"
662
+ },
663
+ {
664
+ "internalType": "string",
665
+ "name": "reason",
666
+ "type": "string"
667
+ },
668
+ {
669
+ "internalType": "bytes",
670
+ "name": "params",
671
+ "type": "bytes"
672
+ },
673
+ {
674
+ "internalType": "bytes",
675
+ "name": "signature",
676
+ "type": "bytes"
677
+ }
678
+ ],
679
+ "name": "castVoteWithReasonAndParamsBySig",
680
+ "outputs": [
681
+ {
682
+ "internalType": "uint256",
683
+ "name": "",
684
+ "type": "uint256"
685
+ }
686
+ ],
687
+ "stateMutability": "nonpayable",
688
+ "type": "function"
689
+ },
690
+ {
691
+ "inputs": [],
692
+ "name": "clock",
693
+ "outputs": [
694
+ {
695
+ "internalType": "uint48",
696
+ "name": "",
697
+ "type": "uint48"
698
+ }
699
+ ],
700
+ "stateMutability": "view",
701
+ "type": "function"
702
+ },
703
+ {
704
+ "inputs": [],
705
+ "name": "eip712Domain",
706
+ "outputs": [
707
+ {
708
+ "internalType": "bytes1",
709
+ "name": "fields",
710
+ "type": "bytes1"
711
+ },
712
+ {
713
+ "internalType": "string",
714
+ "name": "name",
715
+ "type": "string"
716
+ },
717
+ {
718
+ "internalType": "string",
719
+ "name": "version",
720
+ "type": "string"
721
+ },
722
+ {
723
+ "internalType": "uint256",
724
+ "name": "chainId",
725
+ "type": "uint256"
726
+ },
727
+ {
728
+ "internalType": "address",
729
+ "name": "verifyingContract",
730
+ "type": "address"
731
+ },
732
+ {
733
+ "internalType": "bytes32",
734
+ "name": "salt",
735
+ "type": "bytes32"
736
+ },
737
+ {
738
+ "internalType": "uint256[]",
739
+ "name": "extensions",
740
+ "type": "uint256[]"
741
+ }
742
+ ],
743
+ "stateMutability": "view",
744
+ "type": "function"
745
+ },
746
+ {
747
+ "inputs": [
748
+ {
749
+ "internalType": "address[]",
750
+ "name": "targets",
751
+ "type": "address[]"
752
+ },
753
+ {
754
+ "internalType": "uint256[]",
755
+ "name": "values",
756
+ "type": "uint256[]"
757
+ },
758
+ {
759
+ "internalType": "bytes[]",
760
+ "name": "calldatas",
761
+ "type": "bytes[]"
762
+ },
763
+ {
764
+ "internalType": "bytes32",
765
+ "name": "descriptionHash",
766
+ "type": "bytes32"
767
+ }
768
+ ],
769
+ "name": "execute",
770
+ "outputs": [
771
+ {
772
+ "internalType": "uint256",
773
+ "name": "",
774
+ "type": "uint256"
775
+ }
776
+ ],
777
+ "stateMutability": "payable",
778
+ "type": "function"
779
+ },
780
+ {
781
+ "inputs": [
782
+ {
783
+ "internalType": "address",
784
+ "name": "account",
785
+ "type": "address"
786
+ },
787
+ {
788
+ "internalType": "uint256",
789
+ "name": "timepoint",
790
+ "type": "uint256"
791
+ }
792
+ ],
793
+ "name": "getVotes",
794
+ "outputs": [
795
+ {
796
+ "internalType": "uint256",
797
+ "name": "",
798
+ "type": "uint256"
799
+ }
800
+ ],
801
+ "stateMutability": "view",
802
+ "type": "function"
803
+ },
804
+ {
805
+ "inputs": [
806
+ {
807
+ "internalType": "address",
808
+ "name": "account",
809
+ "type": "address"
810
+ },
811
+ {
812
+ "internalType": "uint256",
813
+ "name": "timepoint",
814
+ "type": "uint256"
815
+ },
816
+ {
817
+ "internalType": "bytes",
818
+ "name": "params",
819
+ "type": "bytes"
820
+ }
821
+ ],
822
+ "name": "getVotesWithParams",
823
+ "outputs": [
824
+ {
825
+ "internalType": "uint256",
826
+ "name": "",
827
+ "type": "uint256"
828
+ }
829
+ ],
830
+ "stateMutability": "view",
831
+ "type": "function"
832
+ },
833
+ {
834
+ "inputs": [
835
+ {
836
+ "internalType": "uint256",
837
+ "name": "proposalId",
838
+ "type": "uint256"
839
+ },
840
+ {
841
+ "internalType": "address",
842
+ "name": "account",
843
+ "type": "address"
844
+ }
845
+ ],
846
+ "name": "hasVoted",
847
+ "outputs": [
848
+ {
849
+ "internalType": "bool",
850
+ "name": "",
851
+ "type": "bool"
852
+ }
853
+ ],
854
+ "stateMutability": "view",
855
+ "type": "function"
856
+ },
857
+ {
858
+ "inputs": [
859
+ {
860
+ "internalType": "address[]",
861
+ "name": "targets",
862
+ "type": "address[]"
863
+ },
864
+ {
865
+ "internalType": "uint256[]",
866
+ "name": "values",
867
+ "type": "uint256[]"
868
+ },
869
+ {
870
+ "internalType": "bytes[]",
871
+ "name": "calldatas",
872
+ "type": "bytes[]"
873
+ },
874
+ {
875
+ "internalType": "bytes32",
876
+ "name": "descriptionHash",
877
+ "type": "bytes32"
878
+ }
879
+ ],
880
+ "name": "hashProposal",
881
+ "outputs": [
882
+ {
883
+ "internalType": "uint256",
884
+ "name": "",
885
+ "type": "uint256"
886
+ }
887
+ ],
888
+ "stateMutability": "pure",
889
+ "type": "function"
890
+ },
891
+ {
892
+ "inputs": [],
893
+ "name": "name",
894
+ "outputs": [
895
+ {
896
+ "internalType": "string",
897
+ "name": "",
898
+ "type": "string"
899
+ }
900
+ ],
901
+ "stateMutability": "view",
902
+ "type": "function"
903
+ },
904
+ {
905
+ "inputs": [
906
+ {
907
+ "internalType": "address",
908
+ "name": "owner",
909
+ "type": "address"
910
+ }
911
+ ],
912
+ "name": "nonces",
913
+ "outputs": [
914
+ {
915
+ "internalType": "uint256",
916
+ "name": "",
917
+ "type": "uint256"
918
+ }
919
+ ],
920
+ "stateMutability": "view",
921
+ "type": "function"
922
+ },
923
+ {
924
+ "inputs": [
925
+ {
926
+ "internalType": "address",
927
+ "name": "",
928
+ "type": "address"
929
+ },
930
+ {
931
+ "internalType": "address",
932
+ "name": "",
933
+ "type": "address"
934
+ },
935
+ {
936
+ "internalType": "uint256[]",
937
+ "name": "",
938
+ "type": "uint256[]"
939
+ },
940
+ {
941
+ "internalType": "uint256[]",
942
+ "name": "",
943
+ "type": "uint256[]"
944
+ },
945
+ {
946
+ "internalType": "bytes",
947
+ "name": "",
948
+ "type": "bytes"
949
+ }
950
+ ],
951
+ "name": "onERC1155BatchReceived",
952
+ "outputs": [
953
+ {
954
+ "internalType": "bytes4",
955
+ "name": "",
956
+ "type": "bytes4"
957
+ }
958
+ ],
959
+ "stateMutability": "nonpayable",
960
+ "type": "function"
961
+ },
962
+ {
963
+ "inputs": [
964
+ {
965
+ "internalType": "address",
966
+ "name": "",
967
+ "type": "address"
968
+ },
969
+ {
970
+ "internalType": "address",
971
+ "name": "",
972
+ "type": "address"
973
+ },
974
+ {
975
+ "internalType": "uint256",
976
+ "name": "",
977
+ "type": "uint256"
978
+ },
979
+ {
980
+ "internalType": "uint256",
981
+ "name": "",
982
+ "type": "uint256"
983
+ },
984
+ {
985
+ "internalType": "bytes",
986
+ "name": "",
987
+ "type": "bytes"
988
+ }
989
+ ],
990
+ "name": "onERC1155Received",
991
+ "outputs": [
992
+ {
993
+ "internalType": "bytes4",
994
+ "name": "",
995
+ "type": "bytes4"
996
+ }
997
+ ],
998
+ "stateMutability": "nonpayable",
999
+ "type": "function"
1000
+ },
1001
+ {
1002
+ "inputs": [
1003
+ {
1004
+ "internalType": "address",
1005
+ "name": "",
1006
+ "type": "address"
1007
+ },
1008
+ {
1009
+ "internalType": "address",
1010
+ "name": "",
1011
+ "type": "address"
1012
+ },
1013
+ {
1014
+ "internalType": "uint256",
1015
+ "name": "",
1016
+ "type": "uint256"
1017
+ },
1018
+ {
1019
+ "internalType": "bytes",
1020
+ "name": "",
1021
+ "type": "bytes"
1022
+ }
1023
+ ],
1024
+ "name": "onERC721Received",
1025
+ "outputs": [
1026
+ {
1027
+ "internalType": "bytes4",
1028
+ "name": "",
1029
+ "type": "bytes4"
1030
+ }
1031
+ ],
1032
+ "stateMutability": "nonpayable",
1033
+ "type": "function"
1034
+ },
1035
+ {
1036
+ "inputs": [
1037
+ {
1038
+ "internalType": "uint256",
1039
+ "name": "proposalId",
1040
+ "type": "uint256"
1041
+ }
1042
+ ],
1043
+ "name": "proposalDeadline",
1044
+ "outputs": [
1045
+ {
1046
+ "internalType": "uint256",
1047
+ "name": "",
1048
+ "type": "uint256"
1049
+ }
1050
+ ],
1051
+ "stateMutability": "view",
1052
+ "type": "function"
1053
+ },
1054
+ {
1055
+ "inputs": [
1056
+ {
1057
+ "internalType": "uint256",
1058
+ "name": "proposalId",
1059
+ "type": "uint256"
1060
+ }
1061
+ ],
1062
+ "name": "proposalEta",
1063
+ "outputs": [
1064
+ {
1065
+ "internalType": "uint256",
1066
+ "name": "",
1067
+ "type": "uint256"
1068
+ }
1069
+ ],
1070
+ "stateMutability": "view",
1071
+ "type": "function"
1072
+ },
1073
+ {
1074
+ "inputs": [
1075
+ {
1076
+ "internalType": "uint256",
1077
+ "name": "",
1078
+ "type": "uint256"
1079
+ }
1080
+ ],
1081
+ "name": "proposalNeedsQueuing",
1082
+ "outputs": [
1083
+ {
1084
+ "internalType": "bool",
1085
+ "name": "",
1086
+ "type": "bool"
1087
+ }
1088
+ ],
1089
+ "stateMutability": "view",
1090
+ "type": "function"
1091
+ },
1092
+ {
1093
+ "inputs": [
1094
+ {
1095
+ "internalType": "uint256",
1096
+ "name": "proposalId",
1097
+ "type": "uint256"
1098
+ }
1099
+ ],
1100
+ "name": "proposalProposer",
1101
+ "outputs": [
1102
+ {
1103
+ "internalType": "address",
1104
+ "name": "",
1105
+ "type": "address"
1106
+ }
1107
+ ],
1108
+ "stateMutability": "view",
1109
+ "type": "function"
1110
+ },
1111
+ {
1112
+ "inputs": [
1113
+ {
1114
+ "internalType": "uint256",
1115
+ "name": "proposalId",
1116
+ "type": "uint256"
1117
+ }
1118
+ ],
1119
+ "name": "proposalSnapshot",
1120
+ "outputs": [
1121
+ {
1122
+ "internalType": "uint256",
1123
+ "name": "",
1124
+ "type": "uint256"
1125
+ }
1126
+ ],
1127
+ "stateMutability": "view",
1128
+ "type": "function"
1129
+ },
1130
+ {
1131
+ "inputs": [],
1132
+ "name": "proposalThreshold",
1133
+ "outputs": [
1134
+ {
1135
+ "internalType": "uint256",
1136
+ "name": "",
1137
+ "type": "uint256"
1138
+ }
1139
+ ],
1140
+ "stateMutability": "view",
1141
+ "type": "function"
1142
+ },
1143
+ {
1144
+ "inputs": [
1145
+ {
1146
+ "internalType": "uint256",
1147
+ "name": "proposalId",
1148
+ "type": "uint256"
1149
+ }
1150
+ ],
1151
+ "name": "proposalVotes",
1152
+ "outputs": [
1153
+ {
1154
+ "internalType": "uint256",
1155
+ "name": "againstVotes",
1156
+ "type": "uint256"
1157
+ },
1158
+ {
1159
+ "internalType": "uint256",
1160
+ "name": "forVotes",
1161
+ "type": "uint256"
1162
+ },
1163
+ {
1164
+ "internalType": "uint256",
1165
+ "name": "abstainVotes",
1166
+ "type": "uint256"
1167
+ }
1168
+ ],
1169
+ "stateMutability": "view",
1170
+ "type": "function"
1171
+ },
1172
+ {
1173
+ "inputs": [
1174
+ {
1175
+ "internalType": "address[]",
1176
+ "name": "targets",
1177
+ "type": "address[]"
1178
+ },
1179
+ {
1180
+ "internalType": "uint256[]",
1181
+ "name": "values",
1182
+ "type": "uint256[]"
1183
+ },
1184
+ {
1185
+ "internalType": "bytes[]",
1186
+ "name": "calldatas",
1187
+ "type": "bytes[]"
1188
+ },
1189
+ {
1190
+ "internalType": "string",
1191
+ "name": "description",
1192
+ "type": "string"
1193
+ }
1194
+ ],
1195
+ "name": "propose",
1196
+ "outputs": [
1197
+ {
1198
+ "internalType": "uint256",
1199
+ "name": "",
1200
+ "type": "uint256"
1201
+ }
1202
+ ],
1203
+ "stateMutability": "nonpayable",
1204
+ "type": "function"
1205
+ },
1206
+ {
1207
+ "inputs": [
1208
+ {
1209
+ "internalType": "address[]",
1210
+ "name": "targets",
1211
+ "type": "address[]"
1212
+ },
1213
+ {
1214
+ "internalType": "uint256[]",
1215
+ "name": "values",
1216
+ "type": "uint256[]"
1217
+ },
1218
+ {
1219
+ "internalType": "bytes[]",
1220
+ "name": "calldatas",
1221
+ "type": "bytes[]"
1222
+ },
1223
+ {
1224
+ "internalType": "bytes32",
1225
+ "name": "descriptionHash",
1226
+ "type": "bytes32"
1227
+ }
1228
+ ],
1229
+ "name": "queue",
1230
+ "outputs": [
1231
+ {
1232
+ "internalType": "uint256",
1233
+ "name": "",
1234
+ "type": "uint256"
1235
+ }
1236
+ ],
1237
+ "stateMutability": "nonpayable",
1238
+ "type": "function"
1239
+ },
1240
+ {
1241
+ "inputs": [
1242
+ {
1243
+ "internalType": "uint256",
1244
+ "name": "timepoint",
1245
+ "type": "uint256"
1246
+ }
1247
+ ],
1248
+ "name": "quorum",
1249
+ "outputs": [
1250
+ {
1251
+ "internalType": "uint256",
1252
+ "name": "",
1253
+ "type": "uint256"
1254
+ }
1255
+ ],
1256
+ "stateMutability": "view",
1257
+ "type": "function"
1258
+ },
1259
+ {
1260
+ "inputs": [
1261
+ {
1262
+ "internalType": "address",
1263
+ "name": "target",
1264
+ "type": "address"
1265
+ },
1266
+ {
1267
+ "internalType": "uint256",
1268
+ "name": "value",
1269
+ "type": "uint256"
1270
+ },
1271
+ {
1272
+ "internalType": "bytes",
1273
+ "name": "data",
1274
+ "type": "bytes"
1275
+ }
1276
+ ],
1277
+ "name": "relay",
1278
+ "outputs": [],
1279
+ "stateMutability": "payable",
1280
+ "type": "function"
1281
+ },
1282
+ {
1283
+ "inputs": [
1284
+ {
1285
+ "internalType": "uint256",
1286
+ "name": "proposalId",
1287
+ "type": "uint256"
1288
+ }
1289
+ ],
1290
+ "name": "state",
1291
+ "outputs": [
1292
+ {
1293
+ "internalType": "enum IGovernor.ProposalState",
1294
+ "name": "",
1295
+ "type": "uint8"
1296
+ }
1297
+ ],
1298
+ "stateMutability": "view",
1299
+ "type": "function"
1300
+ },
1301
+ {
1302
+ "inputs": [
1303
+ {
1304
+ "internalType": "bytes4",
1305
+ "name": "interfaceId",
1306
+ "type": "bytes4"
1307
+ }
1308
+ ],
1309
+ "name": "supportsInterface",
1310
+ "outputs": [
1311
+ {
1312
+ "internalType": "bool",
1313
+ "name": "",
1314
+ "type": "bool"
1315
+ }
1316
+ ],
1317
+ "stateMutability": "view",
1318
+ "type": "function"
1319
+ },
1320
+ {
1321
+ "inputs": [],
1322
+ "name": "version",
1323
+ "outputs": [
1324
+ {
1325
+ "internalType": "string",
1326
+ "name": "",
1327
+ "type": "string"
1328
+ }
1329
+ ],
1330
+ "stateMutability": "view",
1331
+ "type": "function"
1332
+ },
1333
+ {
1334
+ "inputs": [],
1335
+ "name": "votingDelay",
1336
+ "outputs": [
1337
+ {
1338
+ "internalType": "uint256",
1339
+ "name": "",
1340
+ "type": "uint256"
1341
+ }
1342
+ ],
1343
+ "stateMutability": "view",
1344
+ "type": "function"
1345
+ },
1346
+ {
1347
+ "inputs": [],
1348
+ "name": "votingPeriod",
1349
+ "outputs": [
1350
+ {
1351
+ "internalType": "uint256",
1352
+ "name": "",
1353
+ "type": "uint256"
1354
+ }
1355
+ ],
1356
+ "stateMutability": "view",
1357
+ "type": "function"
1358
+ },
1359
+ {
1360
+ "stateMutability": "payable",
1361
+ "type": "receive"
1362
+ }
1363
+ ];
1364
+ exports.default = exports.GovernorCountingSimpleUpgradeableAbi;
1365
+ //# sourceMappingURL=GovernorCountingSimpleUpgradeable.js.map