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