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