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