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