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