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