@gnosis-guild/zodiac 4.2.0 → 5.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (444) hide show
  1. package/README.md +107 -4
  2. package/dist/{esm/abi/Bridge.json → cjs/abis/bridge/1.0.0.js} +5 -2
  3. package/dist/cjs/abis/circulatingSupplyERC20/1.0.0.js +248 -0
  4. package/dist/cjs/abis/circulatingSupplyERC20/1.1.0.js +248 -0
  5. package/dist/cjs/abis/circulatingSupplyERC20/1.2.0.js +248 -0
  6. package/dist/cjs/abis/circulatingSupplyERC721/1.1.0.js +248 -0
  7. package/dist/cjs/abis/circulatingSupplyERC721/1.2.0.js +248 -0
  8. package/dist/cjs/{abi/Connext.json → abis/connext/1.0.0.js} +5 -2
  9. package/dist/cjs/abis/delay/1.0.0.js +731 -0
  10. package/dist/cjs/abis/delay/1.0.1.js +731 -0
  11. package/dist/cjs/abis/delay/1.1.0.js +941 -0
  12. package/dist/cjs/abis/delay/1.1.1.js +941 -0
  13. package/dist/cjs/{abi/Erc20Votes.json → abis/erc20Votes/1.0.0.js} +5 -2
  14. package/dist/cjs/{abi/Erc721Votes.json → abis/erc721Votes/1.0.0.js} +5 -2
  15. package/dist/cjs/abis/exit/1.0.0.js +403 -0
  16. package/dist/cjs/abis/exit/1.1.0.js +422 -0
  17. package/dist/cjs/abis/exit/1.2.0.js +422 -0
  18. package/dist/cjs/abis/exitERC721/1.1.0.js +422 -0
  19. package/dist/cjs/abis/exitERC721/1.2.0.js +422 -0
  20. package/dist/cjs/abis/factory/1.0.0.js +53 -0
  21. package/dist/{esm/abi/ModuleProxyFactory.json → cjs/abis/factory/1.1.0.js} +5 -2
  22. package/dist/cjs/abis/factory/1.2.0.js +91 -0
  23. package/dist/cjs/abis/index.js +101 -0
  24. package/dist/{esm/abi/MetaGuard.json → cjs/abis/metaGuard/1.0.0.js} +5 -2
  25. package/dist/{esm/abi/MultisendEncoder.json → cjs/abis/multisendEncoder/1.0.0.js} +5 -2
  26. package/dist/{esm/abi/Tellor.json → cjs/abis/ozGovernor/1.0.0.js} +533 -445
  27. package/dist/cjs/{abi/RealityEth.json → abis/realityERC20/2.0.0.js} +5 -2
  28. package/dist/{esm/abi/RealityEth.json → cjs/abis/realityETH/2.0.0.js} +5 -2
  29. package/dist/cjs/abis/roles/1.0.0.js +993 -0
  30. package/dist/cjs/abis/roles/1.1.0.js +993 -0
  31. package/dist/cjs/{abi/RolesV2.json → abis/roles/2.1.0.js} +5 -78
  32. package/dist/{esm/abi/RolesV2.json → cjs/abis/roles/2.1.1.js} +5 -78
  33. package/dist/{esm/abi/ScopeGuard.json → cjs/abis/scopeGuard/1.0.0.js} +5 -2
  34. package/dist/cjs/contracts.js +91 -296
  35. package/dist/cjs/explorer.js +264 -0
  36. package/dist/cjs/extract.js +117 -0
  37. package/dist/cjs/index.js +14 -15
  38. package/dist/cjs/mastercopies.js +34 -0
  39. package/dist/cjs/networks.js +233 -0
  40. package/dist/cjs/package.json +1 -0
  41. package/dist/cjs/rpc.js +36 -0
  42. package/dist/cjs/singleton.js +42 -0
  43. package/dist/cjs/types.js +7 -0
  44. package/dist/cjs/ui.js +64 -0
  45. package/dist/cjs/zodiacModule.js +61 -0
  46. package/dist/esm/abis/bridge/1.0.0.d.ts +297 -0
  47. package/dist/{cjs/abi/Bridge.json → esm/abis/bridge/1.0.0.js} +2 -2
  48. package/dist/esm/abis/circulatingSupplyERC20/1.0.0.d.ts +188 -0
  49. package/dist/esm/{abi/CirculatingSupplyErc20.json → abis/circulatingSupplyERC20/1.0.0.js} +2 -2
  50. package/dist/esm/abis/circulatingSupplyERC20/1.1.0.d.ts +188 -0
  51. package/dist/{cjs/abi/CirculatingSupplyErc20.json → esm/abis/circulatingSupplyERC20/1.1.0.js} +2 -2
  52. package/dist/esm/abis/circulatingSupplyERC20/1.2.0.d.ts +188 -0
  53. package/dist/{cjs/abi/CirculatingSupplyErc721.json → esm/abis/circulatingSupplyERC20/1.2.0.js} +2 -2
  54. package/dist/esm/abis/circulatingSupplyERC721/1.1.0.d.ts +188 -0
  55. package/dist/esm/{abi/CirculatingSupplyErc721.json → abis/circulatingSupplyERC721/1.1.0.js} +2 -2
  56. package/dist/esm/abis/circulatingSupplyERC721/1.2.0.d.ts +188 -0
  57. package/dist/esm/abis/circulatingSupplyERC721/1.2.0.js +245 -0
  58. package/dist/esm/abis/connext/1.0.0.d.ts +383 -0
  59. package/dist/esm/{abi/Connext.json → abis/connext/1.0.0.js} +2 -2
  60. package/dist/esm/abis/delay/1.0.0.d.ts +562 -0
  61. package/dist/esm/{abi/Delay.json → abis/delay/1.0.0.js} +2 -2
  62. package/dist/esm/abis/delay/1.0.1.d.ts +562 -0
  63. package/dist/{cjs/abi/Delay.json → esm/abis/delay/1.0.1.js} +2 -2
  64. package/dist/esm/abis/delay/1.1.0.d.ts +720 -0
  65. package/dist/esm/abis/delay/1.1.0.js +938 -0
  66. package/dist/esm/abis/delay/1.1.1.d.ts +720 -0
  67. package/dist/esm/abis/delay/1.1.1.js +938 -0
  68. package/dist/esm/abis/erc20Votes/1.0.0.d.ts +613 -0
  69. package/dist/esm/{abi/Erc20Votes.json → abis/erc20Votes/1.0.0.js} +2 -2
  70. package/dist/esm/abis/erc721Votes/1.0.0.d.ts +610 -0
  71. package/dist/esm/{abi/Erc721Votes.json → abis/erc721Votes/1.0.0.js} +2 -2
  72. package/dist/esm/abis/exit/1.0.0.d.ts +309 -0
  73. package/dist/esm/abis/exit/1.0.0.js +400 -0
  74. package/dist/esm/abis/exit/1.1.0.d.ts +323 -0
  75. package/dist/esm/{abi/ExitErc20.json → abis/exit/1.1.0.js} +2 -2
  76. package/dist/esm/abis/exit/1.2.0.d.ts +323 -0
  77. package/dist/{cjs/abi/ExitErc20.json → esm/abis/exit/1.2.0.js} +2 -2
  78. package/dist/esm/abis/exitERC721/1.1.0.d.ts +323 -0
  79. package/dist/{cjs/abi/ExitErc721.json → esm/abis/exitERC721/1.1.0.js} +2 -2
  80. package/dist/esm/abis/exitERC721/1.2.0.d.ts +323 -0
  81. package/dist/esm/{abi/ExitErc721.json → abis/exitERC721/1.2.0.js} +2 -2
  82. package/dist/esm/abis/factory/1.0.0.d.ts +38 -0
  83. package/dist/esm/abis/factory/1.0.0.js +50 -0
  84. package/dist/esm/abis/factory/1.1.0.d.ts +58 -0
  85. package/dist/{cjs/abi/ModuleProxyFactory.json → esm/abis/factory/1.1.0.js} +2 -2
  86. package/dist/esm/abis/factory/1.2.0.d.ts +66 -0
  87. package/dist/esm/abis/factory/1.2.0.js +88 -0
  88. package/dist/esm/abis/index.d.ts +13970 -0
  89. package/dist/esm/abis/index.js +98 -0
  90. package/dist/esm/abis/metaGuard/1.0.0.d.ts +363 -0
  91. package/dist/{cjs/abi/MetaGuard.json → esm/abis/metaGuard/1.0.0.js} +2 -2
  92. package/dist/esm/abis/multisendEncoder/1.0.0.d.ts +47 -0
  93. package/dist/{cjs/abi/MultisendEncoder.json → esm/abis/multisendEncoder/1.0.0.js} +2 -2
  94. package/dist/esm/abis/ozGovernor/1.0.0.d.ts +821 -0
  95. package/dist/{cjs/abi/Tellor.json → esm/abis/ozGovernor/1.0.0.js} +530 -445
  96. package/dist/esm/abis/realityERC20/2.0.0.d.ts +674 -0
  97. package/dist/esm/{abi/RealityErc20.json → abis/realityERC20/2.0.0.js} +2 -2
  98. package/dist/esm/abis/realityETH/2.0.0.d.ts +674 -0
  99. package/dist/{cjs/abi/RealityErc20.json → esm/abis/realityETH/2.0.0.js} +2 -2
  100. package/dist/esm/abis/roles/1.0.0.d.ts +770 -0
  101. package/dist/esm/{abi/RolesV1.json → abis/roles/1.0.0.js} +2 -2
  102. package/dist/esm/abis/roles/1.1.0.d.ts +770 -0
  103. package/dist/{cjs/abi/RolesV1.json → esm/abis/roles/1.1.0.js} +2 -2
  104. package/dist/esm/abis/roles/2.1.0.d.ts +1094 -0
  105. package/dist/esm/abis/roles/2.1.0.js +1408 -0
  106. package/dist/esm/abis/roles/2.1.1.d.ts +1094 -0
  107. package/dist/esm/abis/roles/2.1.1.js +1408 -0
  108. package/dist/esm/abis/scopeGuard/1.0.0.d.ts +457 -0
  109. package/dist/{cjs/abi/ScopeGuard.json → esm/abis/scopeGuard/1.0.0.js} +2 -2
  110. package/dist/esm/contracts.d.ts +63 -78
  111. package/dist/esm/contracts.js +71 -250
  112. package/dist/esm/explorer.d.ts +81 -0
  113. package/dist/esm/explorer.js +256 -0
  114. package/dist/esm/extract.d.ts +15 -0
  115. package/dist/esm/extract.js +114 -0
  116. package/dist/esm/index.d.ts +3 -1
  117. package/dist/esm/index.js +3 -1
  118. package/dist/esm/mastercopies.d.ts +21 -0
  119. package/dist/esm/mastercopies.js +27 -0
  120. package/dist/esm/networks.d.ts +37 -0
  121. package/dist/esm/networks.js +229 -0
  122. package/dist/esm/package.json +1 -0
  123. package/dist/esm/rpc.d.ts +6 -0
  124. package/dist/esm/rpc.js +33 -0
  125. package/dist/esm/singleton.d.ts +24 -0
  126. package/dist/esm/singleton.js +38 -0
  127. package/dist/esm/types.d.ts +43 -0
  128. package/dist/esm/types.js +6 -0
  129. package/dist/esm/ui.d.ts +16 -0
  130. package/dist/esm/ui.js +53 -0
  131. package/dist/esm/zodiacModule.d.ts +4 -0
  132. package/dist/esm/zodiacModule.js +56 -0
  133. package/package.json +33 -75
  134. package/contracts/core/GuardableModifier.sol +0 -96
  135. package/contracts/core/GuardableModule.sol +0 -95
  136. package/contracts/core/Modifier.sol +0 -204
  137. package/contracts/core/Module.sol +0 -73
  138. package/contracts/factory/FactoryFriendly.sol +0 -10
  139. package/contracts/factory/ModuleProxyFactory.sol +0 -51
  140. package/contracts/guard/BaseGuard.sol +0 -36
  141. package/contracts/guard/Guardable.sol +0 -32
  142. package/contracts/interfaces/IAvatar.sol +0 -71
  143. package/contracts/interfaces/IGuard.sol +0 -22
  144. package/contracts/signature/ExecutionTracker.sol +0 -17
  145. package/contracts/signature/IERC1271.sol +0 -19
  146. package/contracts/signature/SignatureChecker.sol +0 -154
  147. package/contracts/test/TestAvatar.sol +0 -64
  148. package/contracts/test/TestGuard.sol +0 -82
  149. package/contracts/test/TestGuardableModifier.sol +0 -82
  150. package/contracts/test/TestModifier.sol +0 -88
  151. package/contracts/test/TestModule.sol +0 -66
  152. package/contracts/test/TestSignature.sol +0 -71
  153. package/dist/cjs/abi/OptimisticGovernor.json +0 -938
  154. package/dist/cjs/abi/OzGovernor.json +0 -706
  155. package/dist/cjs/abi/Permissions.json +0 -520
  156. package/dist/cjs/contracts.d.ts +0 -81
  157. package/dist/cjs/factory/deployModuleFactory.d.ts +0 -9
  158. package/dist/cjs/factory/deployModuleFactory.js +0 -44
  159. package/dist/cjs/factory/index.d.ts +0 -5
  160. package/dist/cjs/factory/index.js +0 -21
  161. package/dist/cjs/factory/mastercopyDeployer.d.ts +0 -27
  162. package/dist/cjs/factory/mastercopyDeployer.js +0 -97
  163. package/dist/cjs/factory/moduleDeployer.d.ts +0 -105
  164. package/dist/cjs/factory/moduleDeployer.js +0 -90
  165. package/dist/cjs/factory/singletonFactory.d.ts +0 -11
  166. package/dist/cjs/factory/singletonFactory.js +0 -39
  167. package/dist/cjs/factory/types.d.ts +0 -25
  168. package/dist/cjs/factory/types.js +0 -58
  169. package/dist/cjs/index.d.ts +0 -1
  170. package/dist/cjs/initData/Bridge.d.ts +0 -2
  171. package/dist/cjs/initData/Bridge.js +0 -5
  172. package/dist/cjs/initData/CirculatingSupplyErc20.d.ts +0 -2
  173. package/dist/cjs/initData/CirculatingSupplyErc20.js +0 -5
  174. package/dist/cjs/initData/CirculatingSupplyErc721.d.ts +0 -2
  175. package/dist/cjs/initData/CirculatingSupplyErc721.js +0 -5
  176. package/dist/cjs/initData/Connext.d.ts +0 -2
  177. package/dist/cjs/initData/Connext.js +0 -5
  178. package/dist/cjs/initData/Delay.d.ts +0 -2
  179. package/dist/cjs/initData/Delay.js +0 -5
  180. package/dist/cjs/initData/Erc20Votes.d.ts +0 -2
  181. package/dist/cjs/initData/Erc20Votes.js +0 -5
  182. package/dist/cjs/initData/Erc721Votes.d.ts +0 -2
  183. package/dist/cjs/initData/Erc721Votes.js +0 -5
  184. package/dist/cjs/initData/ExitErc20.d.ts +0 -2
  185. package/dist/cjs/initData/ExitErc20.js +0 -5
  186. package/dist/cjs/initData/ExitErc721.d.ts +0 -2
  187. package/dist/cjs/initData/ExitErc721.js +0 -5
  188. package/dist/cjs/initData/ModuleProxyFactory.d.ts +0 -2
  189. package/dist/cjs/initData/ModuleProxyFactory.js +0 -5
  190. package/dist/cjs/initData/MultisendEncoder.d.ts +0 -2
  191. package/dist/cjs/initData/MultisendEncoder.js +0 -5
  192. package/dist/cjs/initData/OzGovernor.d.ts +0 -2
  193. package/dist/cjs/initData/OzGovernor.js +0 -5
  194. package/dist/cjs/initData/Permissions.d.ts +0 -2
  195. package/dist/cjs/initData/Permissions.js +0 -5
  196. package/dist/cjs/initData/RealityErc20.d.ts +0 -2
  197. package/dist/cjs/initData/RealityErc20.js +0 -5
  198. package/dist/cjs/initData/RealityEth.d.ts +0 -2
  199. package/dist/cjs/initData/RealityEth.js +0 -5
  200. package/dist/cjs/initData/RolesV1.d.ts +0 -2
  201. package/dist/cjs/initData/RolesV1.js +0 -5
  202. package/dist/cjs/initData/RolesV2.d.ts +0 -2
  203. package/dist/cjs/initData/RolesV2.js +0 -5
  204. package/dist/cjs/initData/ScopeGuard.d.ts +0 -2
  205. package/dist/cjs/initData/ScopeGuard.js +0 -5
  206. package/dist/cjs/types/Bridge.d.ts +0 -208
  207. package/dist/cjs/types/Bridge.js +0 -2
  208. package/dist/cjs/types/CirculatingSupplyErc20.d.ts +0 -158
  209. package/dist/cjs/types/CirculatingSupplyErc20.js +0 -2
  210. package/dist/cjs/types/CirculatingSupplyErc721.d.ts +0 -158
  211. package/dist/cjs/types/CirculatingSupplyErc721.js +0 -2
  212. package/dist/cjs/types/Connext.d.ts +0 -289
  213. package/dist/cjs/types/Connext.js +0 -2
  214. package/dist/cjs/types/Delay.d.ts +0 -407
  215. package/dist/cjs/types/Delay.js +0 -2
  216. package/dist/cjs/types/Erc20Votes.d.ts +0 -475
  217. package/dist/cjs/types/Erc20Votes.js +0 -2
  218. package/dist/cjs/types/Erc721Votes.d.ts +0 -455
  219. package/dist/cjs/types/Erc721Votes.js +0 -2
  220. package/dist/cjs/types/ExitErc20.d.ts +0 -238
  221. package/dist/cjs/types/ExitErc20.js +0 -2
  222. package/dist/cjs/types/ExitErc721.d.ts +0 -238
  223. package/dist/cjs/types/ExitErc721.js +0 -2
  224. package/dist/cjs/types/MetaGuard.d.ts +0 -274
  225. package/dist/cjs/types/MetaGuard.js +0 -2
  226. package/dist/cjs/types/ModuleProxyFactory.d.ts +0 -54
  227. package/dist/cjs/types/ModuleProxyFactory.js +0 -2
  228. package/dist/cjs/types/MultisendEncoder.d.ts +0 -59
  229. package/dist/cjs/types/MultisendEncoder.js +0 -2
  230. package/dist/cjs/types/OptimisticGovernor.d.ts +0 -547
  231. package/dist/cjs/types/OptimisticGovernor.js +0 -2
  232. package/dist/cjs/types/OzGovernor.d.ts +0 -645
  233. package/dist/cjs/types/OzGovernor.js +0 -2
  234. package/dist/cjs/types/Permissions.d.ts +0 -341
  235. package/dist/cjs/types/Permissions.js +0 -2
  236. package/dist/cjs/types/RealityErc20.d.ts +0 -471
  237. package/dist/cjs/types/RealityErc20.js +0 -2
  238. package/dist/cjs/types/RealityEth.d.ts +0 -471
  239. package/dist/cjs/types/RealityEth.js +0 -2
  240. package/dist/cjs/types/RolesV1.d.ts +0 -649
  241. package/dist/cjs/types/RolesV1.js +0 -2
  242. package/dist/cjs/types/RolesV2.d.ts +0 -908
  243. package/dist/cjs/types/RolesV2.js +0 -2
  244. package/dist/cjs/types/ScopeGuard.d.ts +0 -405
  245. package/dist/cjs/types/ScopeGuard.js +0 -2
  246. package/dist/cjs/types/Tellor.d.ts +0 -572
  247. package/dist/cjs/types/Tellor.js +0 -2
  248. package/dist/cjs/types/Usul.d.ts +0 -535
  249. package/dist/cjs/types/Usul.js +0 -2
  250. package/dist/cjs/types/common.d.ts +0 -50
  251. package/dist/cjs/types/common.js +0 -2
  252. package/dist/cjs/types/factories/Bridge__factory.d.ts +0 -303
  253. package/dist/cjs/types/factories/Bridge__factory.js +0 -399
  254. package/dist/cjs/types/factories/CirculatingSupplyErc20__factory.d.ts +0 -194
  255. package/dist/cjs/types/factories/CirculatingSupplyErc20__factory.js +0 -262
  256. package/dist/cjs/types/factories/CirculatingSupplyErc721__factory.d.ts +0 -194
  257. package/dist/cjs/types/factories/CirculatingSupplyErc721__factory.js +0 -262
  258. package/dist/cjs/types/factories/Connext__factory.d.ts +0 -389
  259. package/dist/cjs/types/factories/Connext__factory.js +0 -510
  260. package/dist/cjs/types/factories/Delay__factory.d.ts +0 -568
  261. package/dist/cjs/types/factories/Delay__factory.js +0 -745
  262. package/dist/cjs/types/factories/Erc20Votes__factory.d.ts +0 -619
  263. package/dist/cjs/types/factories/Erc20Votes__factory.js +0 -814
  264. package/dist/cjs/types/factories/Erc721Votes__factory.d.ts +0 -616
  265. package/dist/cjs/types/factories/Erc721Votes__factory.js +0 -809
  266. package/dist/cjs/types/factories/ExitErc20__factory.d.ts +0 -329
  267. package/dist/cjs/types/factories/ExitErc20__factory.js +0 -436
  268. package/dist/cjs/types/factories/ExitErc721__factory.d.ts +0 -329
  269. package/dist/cjs/types/factories/ExitErc721__factory.js +0 -436
  270. package/dist/cjs/types/factories/MetaGuard__factory.d.ts +0 -369
  271. package/dist/cjs/types/factories/MetaGuard__factory.js +0 -488
  272. package/dist/cjs/types/factories/ModuleProxyFactory__factory.d.ts +0 -64
  273. package/dist/cjs/types/factories/ModuleProxyFactory__factory.js +0 -94
  274. package/dist/cjs/types/factories/MultisendEncoder__factory.d.ts +0 -53
  275. package/dist/cjs/types/factories/MultisendEncoder__factory.js +0 -78
  276. package/dist/cjs/types/factories/OptimisticGovernor__factory.d.ts +0 -734
  277. package/dist/cjs/types/factories/OptimisticGovernor__factory.js +0 -955
  278. package/dist/cjs/types/factories/OzGovernor__factory.d.ts +0 -827
  279. package/dist/cjs/types/factories/OzGovernor__factory.js +0 -1080
  280. package/dist/cjs/types/factories/Permissions__factory.d.ts +0 -423
  281. package/dist/cjs/types/factories/Permissions__factory.js +0 -537
  282. package/dist/cjs/types/factories/RealityErc20__factory.d.ts +0 -680
  283. package/dist/cjs/types/factories/RealityErc20__factory.js +0 -888
  284. package/dist/cjs/types/factories/RealityEth__factory.d.ts +0 -680
  285. package/dist/cjs/types/factories/RealityEth__factory.js +0 -888
  286. package/dist/cjs/types/factories/RolesV1__factory.d.ts +0 -776
  287. package/dist/cjs/types/factories/RolesV1__factory.js +0 -1007
  288. package/dist/cjs/types/factories/RolesV2__factory.d.ts +0 -1156
  289. package/dist/cjs/types/factories/RolesV2__factory.js +0 -1501
  290. package/dist/cjs/types/factories/ScopeGuard__factory.d.ts +0 -463
  291. package/dist/cjs/types/factories/ScopeGuard__factory.js +0 -609
  292. package/dist/cjs/types/factories/Tellor__factory.d.ts +0 -757
  293. package/dist/cjs/types/factories/Tellor__factory.js +0 -995
  294. package/dist/cjs/types/factories/Usul__factory.d.ts +0 -634
  295. package/dist/cjs/types/factories/Usul__factory.js +0 -829
  296. package/dist/cjs/types/factories/index.d.ts +0 -22
  297. package/dist/cjs/types/factories/index.js +0 -50
  298. package/dist/cjs/types/index.d.ts +0 -45
  299. package/dist/cjs/types/index.js +0 -71
  300. package/dist/esm/abi/OptimisticGovernor.json +0 -938
  301. package/dist/esm/abi/OzGovernor.json +0 -706
  302. package/dist/esm/abi/Permissions.json +0 -520
  303. package/dist/esm/factory/deployModuleFactory.d.ts +0 -9
  304. package/dist/esm/factory/deployModuleFactory.js +0 -46
  305. package/dist/esm/factory/index.d.ts +0 -5
  306. package/dist/esm/factory/index.js +0 -5
  307. package/dist/esm/factory/mastercopyDeployer.d.ts +0 -27
  308. package/dist/esm/factory/mastercopyDeployer.js +0 -100
  309. package/dist/esm/factory/moduleDeployer.d.ts +0 -105
  310. package/dist/esm/factory/moduleDeployer.js +0 -91
  311. package/dist/esm/factory/singletonFactory.d.ts +0 -11
  312. package/dist/esm/factory/singletonFactory.js +0 -44
  313. package/dist/esm/factory/types.d.ts +0 -25
  314. package/dist/esm/factory/types.js +0 -55
  315. package/dist/esm/initData/Bridge.d.ts +0 -2
  316. package/dist/esm/initData/Bridge.js +0 -2
  317. package/dist/esm/initData/CirculatingSupplyErc20.d.ts +0 -2
  318. package/dist/esm/initData/CirculatingSupplyErc20.js +0 -2
  319. package/dist/esm/initData/CirculatingSupplyErc721.d.ts +0 -2
  320. package/dist/esm/initData/CirculatingSupplyErc721.js +0 -2
  321. package/dist/esm/initData/Connext.d.ts +0 -2
  322. package/dist/esm/initData/Connext.js +0 -2
  323. package/dist/esm/initData/Delay.d.ts +0 -2
  324. package/dist/esm/initData/Delay.js +0 -2
  325. package/dist/esm/initData/Erc20Votes.d.ts +0 -2
  326. package/dist/esm/initData/Erc20Votes.js +0 -2
  327. package/dist/esm/initData/Erc721Votes.d.ts +0 -2
  328. package/dist/esm/initData/Erc721Votes.js +0 -2
  329. package/dist/esm/initData/ExitErc20.d.ts +0 -2
  330. package/dist/esm/initData/ExitErc20.js +0 -2
  331. package/dist/esm/initData/ExitErc721.d.ts +0 -2
  332. package/dist/esm/initData/ExitErc721.js +0 -2
  333. package/dist/esm/initData/ModuleProxyFactory.d.ts +0 -2
  334. package/dist/esm/initData/ModuleProxyFactory.js +0 -2
  335. package/dist/esm/initData/MultisendEncoder.d.ts +0 -2
  336. package/dist/esm/initData/MultisendEncoder.js +0 -2
  337. package/dist/esm/initData/OzGovernor.d.ts +0 -2
  338. package/dist/esm/initData/OzGovernor.js +0 -2
  339. package/dist/esm/initData/Permissions.d.ts +0 -2
  340. package/dist/esm/initData/Permissions.js +0 -2
  341. package/dist/esm/initData/RealityErc20.d.ts +0 -2
  342. package/dist/esm/initData/RealityErc20.js +0 -2
  343. package/dist/esm/initData/RealityEth.d.ts +0 -2
  344. package/dist/esm/initData/RealityEth.js +0 -2
  345. package/dist/esm/initData/RolesV1.d.ts +0 -2
  346. package/dist/esm/initData/RolesV1.js +0 -2
  347. package/dist/esm/initData/RolesV2.d.ts +0 -2
  348. package/dist/esm/initData/RolesV2.js +0 -2
  349. package/dist/esm/initData/ScopeGuard.d.ts +0 -2
  350. package/dist/esm/initData/ScopeGuard.js +0 -2
  351. package/dist/esm/types/Bridge.d.ts +0 -208
  352. package/dist/esm/types/Bridge.js +0 -1
  353. package/dist/esm/types/CirculatingSupplyErc20.d.ts +0 -158
  354. package/dist/esm/types/CirculatingSupplyErc20.js +0 -1
  355. package/dist/esm/types/CirculatingSupplyErc721.d.ts +0 -158
  356. package/dist/esm/types/CirculatingSupplyErc721.js +0 -1
  357. package/dist/esm/types/Connext.d.ts +0 -289
  358. package/dist/esm/types/Connext.js +0 -1
  359. package/dist/esm/types/Delay.d.ts +0 -407
  360. package/dist/esm/types/Delay.js +0 -1
  361. package/dist/esm/types/Erc20Votes.d.ts +0 -475
  362. package/dist/esm/types/Erc20Votes.js +0 -1
  363. package/dist/esm/types/Erc721Votes.d.ts +0 -455
  364. package/dist/esm/types/Erc721Votes.js +0 -1
  365. package/dist/esm/types/ExitErc20.d.ts +0 -238
  366. package/dist/esm/types/ExitErc20.js +0 -1
  367. package/dist/esm/types/ExitErc721.d.ts +0 -238
  368. package/dist/esm/types/ExitErc721.js +0 -1
  369. package/dist/esm/types/MetaGuard.d.ts +0 -274
  370. package/dist/esm/types/MetaGuard.js +0 -1
  371. package/dist/esm/types/ModuleProxyFactory.d.ts +0 -54
  372. package/dist/esm/types/ModuleProxyFactory.js +0 -1
  373. package/dist/esm/types/MultisendEncoder.d.ts +0 -59
  374. package/dist/esm/types/MultisendEncoder.js +0 -1
  375. package/dist/esm/types/OptimisticGovernor.d.ts +0 -547
  376. package/dist/esm/types/OptimisticGovernor.js +0 -1
  377. package/dist/esm/types/OzGovernor.d.ts +0 -645
  378. package/dist/esm/types/OzGovernor.js +0 -1
  379. package/dist/esm/types/Permissions.d.ts +0 -341
  380. package/dist/esm/types/Permissions.js +0 -1
  381. package/dist/esm/types/RealityErc20.d.ts +0 -471
  382. package/dist/esm/types/RealityErc20.js +0 -1
  383. package/dist/esm/types/RealityEth.d.ts +0 -471
  384. package/dist/esm/types/RealityEth.js +0 -1
  385. package/dist/esm/types/RolesV1.d.ts +0 -649
  386. package/dist/esm/types/RolesV1.js +0 -1
  387. package/dist/esm/types/RolesV2.d.ts +0 -908
  388. package/dist/esm/types/RolesV2.js +0 -1
  389. package/dist/esm/types/ScopeGuard.d.ts +0 -405
  390. package/dist/esm/types/ScopeGuard.js +0 -1
  391. package/dist/esm/types/Tellor.d.ts +0 -572
  392. package/dist/esm/types/Tellor.js +0 -1
  393. package/dist/esm/types/Usul.d.ts +0 -535
  394. package/dist/esm/types/Usul.js +0 -1
  395. package/dist/esm/types/common.d.ts +0 -50
  396. package/dist/esm/types/common.js +0 -1
  397. package/dist/esm/types/factories/Bridge__factory.d.ts +0 -303
  398. package/dist/esm/types/factories/Bridge__factory.js +0 -395
  399. package/dist/esm/types/factories/CirculatingSupplyErc20__factory.d.ts +0 -194
  400. package/dist/esm/types/factories/CirculatingSupplyErc20__factory.js +0 -258
  401. package/dist/esm/types/factories/CirculatingSupplyErc721__factory.d.ts +0 -194
  402. package/dist/esm/types/factories/CirculatingSupplyErc721__factory.js +0 -258
  403. package/dist/esm/types/factories/Connext__factory.d.ts +0 -389
  404. package/dist/esm/types/factories/Connext__factory.js +0 -506
  405. package/dist/esm/types/factories/Delay__factory.d.ts +0 -568
  406. package/dist/esm/types/factories/Delay__factory.js +0 -741
  407. package/dist/esm/types/factories/Erc20Votes__factory.d.ts +0 -619
  408. package/dist/esm/types/factories/Erc20Votes__factory.js +0 -810
  409. package/dist/esm/types/factories/Erc721Votes__factory.d.ts +0 -616
  410. package/dist/esm/types/factories/Erc721Votes__factory.js +0 -805
  411. package/dist/esm/types/factories/ExitErc20__factory.d.ts +0 -329
  412. package/dist/esm/types/factories/ExitErc20__factory.js +0 -432
  413. package/dist/esm/types/factories/ExitErc721__factory.d.ts +0 -329
  414. package/dist/esm/types/factories/ExitErc721__factory.js +0 -432
  415. package/dist/esm/types/factories/MetaGuard__factory.d.ts +0 -369
  416. package/dist/esm/types/factories/MetaGuard__factory.js +0 -484
  417. package/dist/esm/types/factories/ModuleProxyFactory__factory.d.ts +0 -64
  418. package/dist/esm/types/factories/ModuleProxyFactory__factory.js +0 -90
  419. package/dist/esm/types/factories/MultisendEncoder__factory.d.ts +0 -53
  420. package/dist/esm/types/factories/MultisendEncoder__factory.js +0 -74
  421. package/dist/esm/types/factories/OptimisticGovernor__factory.d.ts +0 -734
  422. package/dist/esm/types/factories/OptimisticGovernor__factory.js +0 -951
  423. package/dist/esm/types/factories/OzGovernor__factory.d.ts +0 -827
  424. package/dist/esm/types/factories/OzGovernor__factory.js +0 -1076
  425. package/dist/esm/types/factories/Permissions__factory.d.ts +0 -423
  426. package/dist/esm/types/factories/Permissions__factory.js +0 -533
  427. package/dist/esm/types/factories/RealityErc20__factory.d.ts +0 -680
  428. package/dist/esm/types/factories/RealityErc20__factory.js +0 -884
  429. package/dist/esm/types/factories/RealityEth__factory.d.ts +0 -680
  430. package/dist/esm/types/factories/RealityEth__factory.js +0 -884
  431. package/dist/esm/types/factories/RolesV1__factory.d.ts +0 -776
  432. package/dist/esm/types/factories/RolesV1__factory.js +0 -1003
  433. package/dist/esm/types/factories/RolesV2__factory.d.ts +0 -1156
  434. package/dist/esm/types/factories/RolesV2__factory.js +0 -1497
  435. package/dist/esm/types/factories/ScopeGuard__factory.d.ts +0 -463
  436. package/dist/esm/types/factories/ScopeGuard__factory.js +0 -605
  437. package/dist/esm/types/factories/Tellor__factory.d.ts +0 -757
  438. package/dist/esm/types/factories/Tellor__factory.js +0 -991
  439. package/dist/esm/types/factories/Usul__factory.d.ts +0 -634
  440. package/dist/esm/types/factories/Usul__factory.js +0 -825
  441. package/dist/esm/types/factories/index.d.ts +0 -22
  442. package/dist/esm/types/factories/index.js +0 -25
  443. package/dist/esm/types/index.d.ts +0 -45
  444. package/dist/esm/types/index.js +0 -24
@@ -1,908 +0,0 @@
1
- import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
2
- import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "./common";
3
- export type ConditionFlatStruct = {
4
- parent: BigNumberish;
5
- paramType: BigNumberish;
6
- operator: BigNumberish;
7
- compValue: BytesLike;
8
- };
9
- export type ConditionFlatStructOutput = [
10
- parent: bigint,
11
- paramType: bigint,
12
- operator: bigint,
13
- compValue: string
14
- ] & {
15
- parent: bigint;
16
- paramType: bigint;
17
- operator: bigint;
18
- compValue: string;
19
- };
20
- export interface RolesV2Interface extends Interface {
21
- getFunction(nameOrSignature: "allowFunction" | "allowTarget" | "allowances" | "assignRoles" | "avatar" | "consumed" | "defaultRoles" | "disableModule" | "enableModule" | "execTransactionFromModule" | "execTransactionFromModuleReturnData" | "execTransactionWithRole" | "execTransactionWithRoleReturnData" | "getModulesPaginated" | "invalidate" | "isModuleEnabled" | "moduleTxHash" | "owner" | "renounceOwnership" | "revokeFunction" | "revokeTarget" | "scopeFunction" | "scopeTarget" | "setAllowance" | "setAvatar" | "setDefaultRole" | "setTarget" | "setTransactionUnwrapper" | "setUp" | "target" | "transferOwnership" | "unwrappers"): FunctionFragment;
22
- getEvent(nameOrSignatureOrTopic: "AllowFunction" | "AllowTarget" | "AssignRoles" | "AvatarSet" | "ConsumeAllowance" | "DisabledModule" | "EnabledModule" | "ExecutionFromModuleFailure" | "ExecutionFromModuleSuccess" | "HashExecuted" | "HashInvalidated" | "Initialized" | "OwnershipTransferred" | "RevokeFunction" | "RevokeTarget" | "RolesModSetup" | "ScopeFunction" | "ScopeTarget" | "SetAllowance" | "SetDefaultRole" | "SetUnwrapAdapter" | "TargetSet"): EventFragment;
23
- encodeFunctionData(functionFragment: "allowFunction", values: [BytesLike, AddressLike, BytesLike, BigNumberish]): string;
24
- encodeFunctionData(functionFragment: "allowTarget", values: [BytesLike, AddressLike, BigNumberish]): string;
25
- encodeFunctionData(functionFragment: "allowances", values: [BytesLike]): string;
26
- encodeFunctionData(functionFragment: "assignRoles", values: [AddressLike, BytesLike[], boolean[]]): string;
27
- encodeFunctionData(functionFragment: "avatar", values?: undefined): string;
28
- encodeFunctionData(functionFragment: "consumed", values: [AddressLike, BytesLike]): string;
29
- encodeFunctionData(functionFragment: "defaultRoles", values: [AddressLike]): string;
30
- encodeFunctionData(functionFragment: "disableModule", values: [AddressLike, AddressLike]): string;
31
- encodeFunctionData(functionFragment: "enableModule", values: [AddressLike]): string;
32
- encodeFunctionData(functionFragment: "execTransactionFromModule", values: [AddressLike, BigNumberish, BytesLike, BigNumberish]): string;
33
- encodeFunctionData(functionFragment: "execTransactionFromModuleReturnData", values: [AddressLike, BigNumberish, BytesLike, BigNumberish]): string;
34
- encodeFunctionData(functionFragment: "execTransactionWithRole", values: [
35
- AddressLike,
36
- BigNumberish,
37
- BytesLike,
38
- BigNumberish,
39
- BytesLike,
40
- boolean
41
- ]): string;
42
- encodeFunctionData(functionFragment: "execTransactionWithRoleReturnData", values: [
43
- AddressLike,
44
- BigNumberish,
45
- BytesLike,
46
- BigNumberish,
47
- BytesLike,
48
- boolean
49
- ]): string;
50
- encodeFunctionData(functionFragment: "getModulesPaginated", values: [AddressLike, BigNumberish]): string;
51
- encodeFunctionData(functionFragment: "invalidate", values: [BytesLike]): string;
52
- encodeFunctionData(functionFragment: "isModuleEnabled", values: [AddressLike]): string;
53
- encodeFunctionData(functionFragment: "moduleTxHash", values: [BytesLike, BytesLike]): string;
54
- encodeFunctionData(functionFragment: "owner", values?: undefined): string;
55
- encodeFunctionData(functionFragment: "renounceOwnership", values?: undefined): string;
56
- encodeFunctionData(functionFragment: "revokeFunction", values: [BytesLike, AddressLike, BytesLike]): string;
57
- encodeFunctionData(functionFragment: "revokeTarget", values: [BytesLike, AddressLike]): string;
58
- encodeFunctionData(functionFragment: "scopeFunction", values: [
59
- BytesLike,
60
- AddressLike,
61
- BytesLike,
62
- ConditionFlatStruct[],
63
- BigNumberish
64
- ]): string;
65
- encodeFunctionData(functionFragment: "scopeTarget", values: [BytesLike, AddressLike]): string;
66
- encodeFunctionData(functionFragment: "setAllowance", values: [
67
- BytesLike,
68
- BigNumberish,
69
- BigNumberish,
70
- BigNumberish,
71
- BigNumberish,
72
- BigNumberish
73
- ]): string;
74
- encodeFunctionData(functionFragment: "setAvatar", values: [AddressLike]): string;
75
- encodeFunctionData(functionFragment: "setDefaultRole", values: [AddressLike, BytesLike]): string;
76
- encodeFunctionData(functionFragment: "setTarget", values: [AddressLike]): string;
77
- encodeFunctionData(functionFragment: "setTransactionUnwrapper", values: [AddressLike, BytesLike, AddressLike]): string;
78
- encodeFunctionData(functionFragment: "setUp", values: [BytesLike]): string;
79
- encodeFunctionData(functionFragment: "target", values?: undefined): string;
80
- encodeFunctionData(functionFragment: "transferOwnership", values: [AddressLike]): string;
81
- encodeFunctionData(functionFragment: "unwrappers", values: [BytesLike]): string;
82
- decodeFunctionResult(functionFragment: "allowFunction", data: BytesLike): Result;
83
- decodeFunctionResult(functionFragment: "allowTarget", data: BytesLike): Result;
84
- decodeFunctionResult(functionFragment: "allowances", data: BytesLike): Result;
85
- decodeFunctionResult(functionFragment: "assignRoles", data: BytesLike): Result;
86
- decodeFunctionResult(functionFragment: "avatar", data: BytesLike): Result;
87
- decodeFunctionResult(functionFragment: "consumed", data: BytesLike): Result;
88
- decodeFunctionResult(functionFragment: "defaultRoles", data: BytesLike): Result;
89
- decodeFunctionResult(functionFragment: "disableModule", data: BytesLike): Result;
90
- decodeFunctionResult(functionFragment: "enableModule", data: BytesLike): Result;
91
- decodeFunctionResult(functionFragment: "execTransactionFromModule", data: BytesLike): Result;
92
- decodeFunctionResult(functionFragment: "execTransactionFromModuleReturnData", data: BytesLike): Result;
93
- decodeFunctionResult(functionFragment: "execTransactionWithRole", data: BytesLike): Result;
94
- decodeFunctionResult(functionFragment: "execTransactionWithRoleReturnData", data: BytesLike): Result;
95
- decodeFunctionResult(functionFragment: "getModulesPaginated", data: BytesLike): Result;
96
- decodeFunctionResult(functionFragment: "invalidate", data: BytesLike): Result;
97
- decodeFunctionResult(functionFragment: "isModuleEnabled", data: BytesLike): Result;
98
- decodeFunctionResult(functionFragment: "moduleTxHash", data: BytesLike): Result;
99
- decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result;
100
- decodeFunctionResult(functionFragment: "renounceOwnership", data: BytesLike): Result;
101
- decodeFunctionResult(functionFragment: "revokeFunction", data: BytesLike): Result;
102
- decodeFunctionResult(functionFragment: "revokeTarget", data: BytesLike): Result;
103
- decodeFunctionResult(functionFragment: "scopeFunction", data: BytesLike): Result;
104
- decodeFunctionResult(functionFragment: "scopeTarget", data: BytesLike): Result;
105
- decodeFunctionResult(functionFragment: "setAllowance", data: BytesLike): Result;
106
- decodeFunctionResult(functionFragment: "setAvatar", data: BytesLike): Result;
107
- decodeFunctionResult(functionFragment: "setDefaultRole", data: BytesLike): Result;
108
- decodeFunctionResult(functionFragment: "setTarget", data: BytesLike): Result;
109
- decodeFunctionResult(functionFragment: "setTransactionUnwrapper", data: BytesLike): Result;
110
- decodeFunctionResult(functionFragment: "setUp", data: BytesLike): Result;
111
- decodeFunctionResult(functionFragment: "target", data: BytesLike): Result;
112
- decodeFunctionResult(functionFragment: "transferOwnership", data: BytesLike): Result;
113
- decodeFunctionResult(functionFragment: "unwrappers", data: BytesLike): Result;
114
- }
115
- export declare namespace AllowFunctionEvent {
116
- type InputTuple = [
117
- roleKey: BytesLike,
118
- targetAddress: AddressLike,
119
- selector: BytesLike,
120
- options: BigNumberish
121
- ];
122
- type OutputTuple = [
123
- roleKey: string,
124
- targetAddress: string,
125
- selector: string,
126
- options: bigint
127
- ];
128
- interface OutputObject {
129
- roleKey: string;
130
- targetAddress: string;
131
- selector: string;
132
- options: bigint;
133
- }
134
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
135
- type Filter = TypedDeferredTopicFilter<Event>;
136
- type Log = TypedEventLog<Event>;
137
- type LogDescription = TypedLogDescription<Event>;
138
- }
139
- export declare namespace AllowTargetEvent {
140
- type InputTuple = [
141
- roleKey: BytesLike,
142
- targetAddress: AddressLike,
143
- options: BigNumberish
144
- ];
145
- type OutputTuple = [
146
- roleKey: string,
147
- targetAddress: string,
148
- options: bigint
149
- ];
150
- interface OutputObject {
151
- roleKey: string;
152
- targetAddress: string;
153
- options: bigint;
154
- }
155
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
156
- type Filter = TypedDeferredTopicFilter<Event>;
157
- type Log = TypedEventLog<Event>;
158
- type LogDescription = TypedLogDescription<Event>;
159
- }
160
- export declare namespace AssignRolesEvent {
161
- type InputTuple = [
162
- module: AddressLike,
163
- roleKeys: BytesLike[],
164
- memberOf: boolean[]
165
- ];
166
- type OutputTuple = [
167
- module: string,
168
- roleKeys: string[],
169
- memberOf: boolean[]
170
- ];
171
- interface OutputObject {
172
- module: string;
173
- roleKeys: string[];
174
- memberOf: boolean[];
175
- }
176
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
177
- type Filter = TypedDeferredTopicFilter<Event>;
178
- type Log = TypedEventLog<Event>;
179
- type LogDescription = TypedLogDescription<Event>;
180
- }
181
- export declare namespace AvatarSetEvent {
182
- type InputTuple = [
183
- previousAvatar: AddressLike,
184
- newAvatar: AddressLike
185
- ];
186
- type OutputTuple = [previousAvatar: string, newAvatar: string];
187
- interface OutputObject {
188
- previousAvatar: string;
189
- newAvatar: string;
190
- }
191
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
192
- type Filter = TypedDeferredTopicFilter<Event>;
193
- type Log = TypedEventLog<Event>;
194
- type LogDescription = TypedLogDescription<Event>;
195
- }
196
- export declare namespace ConsumeAllowanceEvent {
197
- type InputTuple = [
198
- allowanceKey: BytesLike,
199
- consumed: BigNumberish,
200
- newBalance: BigNumberish
201
- ];
202
- type OutputTuple = [
203
- allowanceKey: string,
204
- consumed: bigint,
205
- newBalance: bigint
206
- ];
207
- interface OutputObject {
208
- allowanceKey: string;
209
- consumed: bigint;
210
- newBalance: bigint;
211
- }
212
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
213
- type Filter = TypedDeferredTopicFilter<Event>;
214
- type Log = TypedEventLog<Event>;
215
- type LogDescription = TypedLogDescription<Event>;
216
- }
217
- export declare namespace DisabledModuleEvent {
218
- type InputTuple = [module: AddressLike];
219
- type OutputTuple = [module: string];
220
- interface OutputObject {
221
- module: string;
222
- }
223
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
224
- type Filter = TypedDeferredTopicFilter<Event>;
225
- type Log = TypedEventLog<Event>;
226
- type LogDescription = TypedLogDescription<Event>;
227
- }
228
- export declare namespace EnabledModuleEvent {
229
- type InputTuple = [module: AddressLike];
230
- type OutputTuple = [module: string];
231
- interface OutputObject {
232
- module: string;
233
- }
234
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
235
- type Filter = TypedDeferredTopicFilter<Event>;
236
- type Log = TypedEventLog<Event>;
237
- type LogDescription = TypedLogDescription<Event>;
238
- }
239
- export declare namespace ExecutionFromModuleFailureEvent {
240
- type InputTuple = [module: AddressLike];
241
- type OutputTuple = [module: string];
242
- interface OutputObject {
243
- module: string;
244
- }
245
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
246
- type Filter = TypedDeferredTopicFilter<Event>;
247
- type Log = TypedEventLog<Event>;
248
- type LogDescription = TypedLogDescription<Event>;
249
- }
250
- export declare namespace ExecutionFromModuleSuccessEvent {
251
- type InputTuple = [module: AddressLike];
252
- type OutputTuple = [module: string];
253
- interface OutputObject {
254
- module: string;
255
- }
256
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
257
- type Filter = TypedDeferredTopicFilter<Event>;
258
- type Log = TypedEventLog<Event>;
259
- type LogDescription = TypedLogDescription<Event>;
260
- }
261
- export declare namespace HashExecutedEvent {
262
- type InputTuple = [arg0: BytesLike];
263
- type OutputTuple = [arg0: string];
264
- interface OutputObject {
265
- arg0: string;
266
- }
267
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
268
- type Filter = TypedDeferredTopicFilter<Event>;
269
- type Log = TypedEventLog<Event>;
270
- type LogDescription = TypedLogDescription<Event>;
271
- }
272
- export declare namespace HashInvalidatedEvent {
273
- type InputTuple = [arg0: BytesLike];
274
- type OutputTuple = [arg0: string];
275
- interface OutputObject {
276
- arg0: string;
277
- }
278
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
279
- type Filter = TypedDeferredTopicFilter<Event>;
280
- type Log = TypedEventLog<Event>;
281
- type LogDescription = TypedLogDescription<Event>;
282
- }
283
- export declare namespace InitializedEvent {
284
- type InputTuple = [version: BigNumberish];
285
- type OutputTuple = [version: bigint];
286
- interface OutputObject {
287
- version: bigint;
288
- }
289
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
290
- type Filter = TypedDeferredTopicFilter<Event>;
291
- type Log = TypedEventLog<Event>;
292
- type LogDescription = TypedLogDescription<Event>;
293
- }
294
- export declare namespace OwnershipTransferredEvent {
295
- type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike];
296
- type OutputTuple = [previousOwner: string, newOwner: string];
297
- interface OutputObject {
298
- previousOwner: string;
299
- newOwner: string;
300
- }
301
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
302
- type Filter = TypedDeferredTopicFilter<Event>;
303
- type Log = TypedEventLog<Event>;
304
- type LogDescription = TypedLogDescription<Event>;
305
- }
306
- export declare namespace RevokeFunctionEvent {
307
- type InputTuple = [
308
- roleKey: BytesLike,
309
- targetAddress: AddressLike,
310
- selector: BytesLike
311
- ];
312
- type OutputTuple = [
313
- roleKey: string,
314
- targetAddress: string,
315
- selector: string
316
- ];
317
- interface OutputObject {
318
- roleKey: string;
319
- targetAddress: string;
320
- selector: string;
321
- }
322
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
323
- type Filter = TypedDeferredTopicFilter<Event>;
324
- type Log = TypedEventLog<Event>;
325
- type LogDescription = TypedLogDescription<Event>;
326
- }
327
- export declare namespace RevokeTargetEvent {
328
- type InputTuple = [roleKey: BytesLike, targetAddress: AddressLike];
329
- type OutputTuple = [roleKey: string, targetAddress: string];
330
- interface OutputObject {
331
- roleKey: string;
332
- targetAddress: string;
333
- }
334
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
335
- type Filter = TypedDeferredTopicFilter<Event>;
336
- type Log = TypedEventLog<Event>;
337
- type LogDescription = TypedLogDescription<Event>;
338
- }
339
- export declare namespace RolesModSetupEvent {
340
- type InputTuple = [
341
- initiator: AddressLike,
342
- owner: AddressLike,
343
- avatar: AddressLike,
344
- target: AddressLike
345
- ];
346
- type OutputTuple = [
347
- initiator: string,
348
- owner: string,
349
- avatar: string,
350
- target: string
351
- ];
352
- interface OutputObject {
353
- initiator: string;
354
- owner: string;
355
- avatar: string;
356
- target: string;
357
- }
358
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
359
- type Filter = TypedDeferredTopicFilter<Event>;
360
- type Log = TypedEventLog<Event>;
361
- type LogDescription = TypedLogDescription<Event>;
362
- }
363
- export declare namespace ScopeFunctionEvent {
364
- type InputTuple = [
365
- roleKey: BytesLike,
366
- targetAddress: AddressLike,
367
- selector: BytesLike,
368
- conditions: ConditionFlatStruct[],
369
- options: BigNumberish
370
- ];
371
- type OutputTuple = [
372
- roleKey: string,
373
- targetAddress: string,
374
- selector: string,
375
- conditions: ConditionFlatStructOutput[],
376
- options: bigint
377
- ];
378
- interface OutputObject {
379
- roleKey: string;
380
- targetAddress: string;
381
- selector: string;
382
- conditions: ConditionFlatStructOutput[];
383
- options: bigint;
384
- }
385
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
386
- type Filter = TypedDeferredTopicFilter<Event>;
387
- type Log = TypedEventLog<Event>;
388
- type LogDescription = TypedLogDescription<Event>;
389
- }
390
- export declare namespace ScopeTargetEvent {
391
- type InputTuple = [roleKey: BytesLike, targetAddress: AddressLike];
392
- type OutputTuple = [roleKey: string, targetAddress: string];
393
- interface OutputObject {
394
- roleKey: string;
395
- targetAddress: string;
396
- }
397
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
398
- type Filter = TypedDeferredTopicFilter<Event>;
399
- type Log = TypedEventLog<Event>;
400
- type LogDescription = TypedLogDescription<Event>;
401
- }
402
- export declare namespace SetAllowanceEvent {
403
- type InputTuple = [
404
- allowanceKey: BytesLike,
405
- balance: BigNumberish,
406
- maxRefill: BigNumberish,
407
- refill: BigNumberish,
408
- period: BigNumberish,
409
- timestamp: BigNumberish
410
- ];
411
- type OutputTuple = [
412
- allowanceKey: string,
413
- balance: bigint,
414
- maxRefill: bigint,
415
- refill: bigint,
416
- period: bigint,
417
- timestamp: bigint
418
- ];
419
- interface OutputObject {
420
- allowanceKey: string;
421
- balance: bigint;
422
- maxRefill: bigint;
423
- refill: bigint;
424
- period: bigint;
425
- timestamp: bigint;
426
- }
427
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
428
- type Filter = TypedDeferredTopicFilter<Event>;
429
- type Log = TypedEventLog<Event>;
430
- type LogDescription = TypedLogDescription<Event>;
431
- }
432
- export declare namespace SetDefaultRoleEvent {
433
- type InputTuple = [module: AddressLike, defaultRoleKey: BytesLike];
434
- type OutputTuple = [module: string, defaultRoleKey: string];
435
- interface OutputObject {
436
- module: string;
437
- defaultRoleKey: string;
438
- }
439
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
440
- type Filter = TypedDeferredTopicFilter<Event>;
441
- type Log = TypedEventLog<Event>;
442
- type LogDescription = TypedLogDescription<Event>;
443
- }
444
- export declare namespace SetUnwrapAdapterEvent {
445
- type InputTuple = [
446
- to: AddressLike,
447
- selector: BytesLike,
448
- adapter: AddressLike
449
- ];
450
- type OutputTuple = [to: string, selector: string, adapter: string];
451
- interface OutputObject {
452
- to: string;
453
- selector: string;
454
- adapter: string;
455
- }
456
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
457
- type Filter = TypedDeferredTopicFilter<Event>;
458
- type Log = TypedEventLog<Event>;
459
- type LogDescription = TypedLogDescription<Event>;
460
- }
461
- export declare namespace TargetSetEvent {
462
- type InputTuple = [
463
- previousTarget: AddressLike,
464
- newTarget: AddressLike
465
- ];
466
- type OutputTuple = [previousTarget: string, newTarget: string];
467
- interface OutputObject {
468
- previousTarget: string;
469
- newTarget: string;
470
- }
471
- type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
472
- type Filter = TypedDeferredTopicFilter<Event>;
473
- type Log = TypedEventLog<Event>;
474
- type LogDescription = TypedLogDescription<Event>;
475
- }
476
- export interface RolesV2 extends BaseContract {
477
- connect(runner?: ContractRunner | null): RolesV2;
478
- waitForDeployment(): Promise<this>;
479
- interface: RolesV2Interface;
480
- queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
481
- queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
482
- on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
483
- on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
484
- once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
485
- once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
486
- listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
487
- listeners(eventName?: string): Promise<Array<Listener>>;
488
- removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
489
- allowFunction: TypedContractMethod<[
490
- roleKey: BytesLike,
491
- targetAddress: AddressLike,
492
- selector: BytesLike,
493
- options: BigNumberish
494
- ], [
495
- void
496
- ], "nonpayable">;
497
- allowTarget: TypedContractMethod<[
498
- roleKey: BytesLike,
499
- targetAddress: AddressLike,
500
- options: BigNumberish
501
- ], [
502
- void
503
- ], "nonpayable">;
504
- allowances: TypedContractMethod<[
505
- arg0: BytesLike
506
- ], [
507
- [
508
- bigint,
509
- bigint,
510
- bigint,
511
- bigint,
512
- bigint
513
- ] & {
514
- refill: bigint;
515
- maxRefill: bigint;
516
- period: bigint;
517
- balance: bigint;
518
- timestamp: bigint;
519
- }
520
- ], "view">;
521
- assignRoles: TypedContractMethod<[
522
- module: AddressLike,
523
- roleKeys: BytesLike[],
524
- memberOf: boolean[]
525
- ], [
526
- void
527
- ], "nonpayable">;
528
- avatar: TypedContractMethod<[], [string], "view">;
529
- consumed: TypedContractMethod<[
530
- arg0: AddressLike,
531
- arg1: BytesLike
532
- ], [
533
- boolean
534
- ], "view">;
535
- defaultRoles: TypedContractMethod<[arg0: AddressLike], [string], "view">;
536
- disableModule: TypedContractMethod<[
537
- prevModule: AddressLike,
538
- module: AddressLike
539
- ], [
540
- void
541
- ], "nonpayable">;
542
- enableModule: TypedContractMethod<[
543
- module: AddressLike
544
- ], [
545
- void
546
- ], "nonpayable">;
547
- execTransactionFromModule: TypedContractMethod<[
548
- to: AddressLike,
549
- value: BigNumberish,
550
- data: BytesLike,
551
- operation: BigNumberish
552
- ], [
553
- boolean
554
- ], "nonpayable">;
555
- execTransactionFromModuleReturnData: TypedContractMethod<[
556
- to: AddressLike,
557
- value: BigNumberish,
558
- data: BytesLike,
559
- operation: BigNumberish
560
- ], [
561
- [boolean, string] & {
562
- success: boolean;
563
- returnData: string;
564
- }
565
- ], "nonpayable">;
566
- execTransactionWithRole: TypedContractMethod<[
567
- to: AddressLike,
568
- value: BigNumberish,
569
- data: BytesLike,
570
- operation: BigNumberish,
571
- roleKey: BytesLike,
572
- shouldRevert: boolean
573
- ], [
574
- boolean
575
- ], "nonpayable">;
576
- execTransactionWithRoleReturnData: TypedContractMethod<[
577
- to: AddressLike,
578
- value: BigNumberish,
579
- data: BytesLike,
580
- operation: BigNumberish,
581
- roleKey: BytesLike,
582
- shouldRevert: boolean
583
- ], [
584
- [boolean, string] & {
585
- success: boolean;
586
- returnData: string;
587
- }
588
- ], "nonpayable">;
589
- getModulesPaginated: TypedContractMethod<[
590
- start: AddressLike,
591
- pageSize: BigNumberish
592
- ], [
593
- [string[], string] & {
594
- array: string[];
595
- next: string;
596
- }
597
- ], "view">;
598
- invalidate: TypedContractMethod<[hash: BytesLike], [void], "nonpayable">;
599
- isModuleEnabled: TypedContractMethod<[
600
- _module: AddressLike
601
- ], [
602
- boolean
603
- ], "view">;
604
- moduleTxHash: TypedContractMethod<[
605
- data: BytesLike,
606
- salt: BytesLike
607
- ], [
608
- string
609
- ], "view">;
610
- owner: TypedContractMethod<[], [string], "view">;
611
- renounceOwnership: TypedContractMethod<[], [void], "nonpayable">;
612
- revokeFunction: TypedContractMethod<[
613
- roleKey: BytesLike,
614
- targetAddress: AddressLike,
615
- selector: BytesLike
616
- ], [
617
- void
618
- ], "nonpayable">;
619
- revokeTarget: TypedContractMethod<[
620
- roleKey: BytesLike,
621
- targetAddress: AddressLike
622
- ], [
623
- void
624
- ], "nonpayable">;
625
- scopeFunction: TypedContractMethod<[
626
- roleKey: BytesLike,
627
- targetAddress: AddressLike,
628
- selector: BytesLike,
629
- conditions: ConditionFlatStruct[],
630
- options: BigNumberish
631
- ], [
632
- void
633
- ], "nonpayable">;
634
- scopeTarget: TypedContractMethod<[
635
- roleKey: BytesLike,
636
- targetAddress: AddressLike
637
- ], [
638
- void
639
- ], "nonpayable">;
640
- setAllowance: TypedContractMethod<[
641
- key: BytesLike,
642
- balance: BigNumberish,
643
- maxRefill: BigNumberish,
644
- refill: BigNumberish,
645
- period: BigNumberish,
646
- timestamp: BigNumberish
647
- ], [
648
- void
649
- ], "nonpayable">;
650
- setAvatar: TypedContractMethod<[_avatar: AddressLike], [void], "nonpayable">;
651
- setDefaultRole: TypedContractMethod<[
652
- module: AddressLike,
653
- roleKey: BytesLike
654
- ], [
655
- void
656
- ], "nonpayable">;
657
- setTarget: TypedContractMethod<[_target: AddressLike], [void], "nonpayable">;
658
- setTransactionUnwrapper: TypedContractMethod<[
659
- to: AddressLike,
660
- selector: BytesLike,
661
- adapter: AddressLike
662
- ], [
663
- void
664
- ], "nonpayable">;
665
- setUp: TypedContractMethod<[initParams: BytesLike], [void], "nonpayable">;
666
- transferOwnership: TypedContractMethod<[
667
- newOwner: AddressLike
668
- ], [
669
- void
670
- ], "nonpayable">;
671
- unwrappers: TypedContractMethod<[arg0: BytesLike], [string], "view">;
672
- getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
673
- getFunction(nameOrSignature: "allowFunction"): TypedContractMethod<[
674
- roleKey: BytesLike,
675
- targetAddress: AddressLike,
676
- selector: BytesLike,
677
- options: BigNumberish
678
- ], [
679
- void
680
- ], "nonpayable">;
681
- getFunction(nameOrSignature: "allowTarget"): TypedContractMethod<[
682
- roleKey: BytesLike,
683
- targetAddress: AddressLike,
684
- options: BigNumberish
685
- ], [
686
- void
687
- ], "nonpayable">;
688
- getFunction(nameOrSignature: "allowances"): TypedContractMethod<[
689
- arg0: BytesLike
690
- ], [
691
- [
692
- bigint,
693
- bigint,
694
- bigint,
695
- bigint,
696
- bigint
697
- ] & {
698
- refill: bigint;
699
- maxRefill: bigint;
700
- period: bigint;
701
- balance: bigint;
702
- timestamp: bigint;
703
- }
704
- ], "view">;
705
- getFunction(nameOrSignature: "assignRoles"): TypedContractMethod<[
706
- module: AddressLike,
707
- roleKeys: BytesLike[],
708
- memberOf: boolean[]
709
- ], [
710
- void
711
- ], "nonpayable">;
712
- getFunction(nameOrSignature: "avatar"): TypedContractMethod<[], [string], "view">;
713
- getFunction(nameOrSignature: "consumed"): TypedContractMethod<[
714
- arg0: AddressLike,
715
- arg1: BytesLike
716
- ], [
717
- boolean
718
- ], "view">;
719
- getFunction(nameOrSignature: "defaultRoles"): TypedContractMethod<[arg0: AddressLike], [string], "view">;
720
- getFunction(nameOrSignature: "disableModule"): TypedContractMethod<[
721
- prevModule: AddressLike,
722
- module: AddressLike
723
- ], [
724
- void
725
- ], "nonpayable">;
726
- getFunction(nameOrSignature: "enableModule"): TypedContractMethod<[module: AddressLike], [void], "nonpayable">;
727
- getFunction(nameOrSignature: "execTransactionFromModule"): TypedContractMethod<[
728
- to: AddressLike,
729
- value: BigNumberish,
730
- data: BytesLike,
731
- operation: BigNumberish
732
- ], [
733
- boolean
734
- ], "nonpayable">;
735
- getFunction(nameOrSignature: "execTransactionFromModuleReturnData"): TypedContractMethod<[
736
- to: AddressLike,
737
- value: BigNumberish,
738
- data: BytesLike,
739
- operation: BigNumberish
740
- ], [
741
- [boolean, string] & {
742
- success: boolean;
743
- returnData: string;
744
- }
745
- ], "nonpayable">;
746
- getFunction(nameOrSignature: "execTransactionWithRole"): TypedContractMethod<[
747
- to: AddressLike,
748
- value: BigNumberish,
749
- data: BytesLike,
750
- operation: BigNumberish,
751
- roleKey: BytesLike,
752
- shouldRevert: boolean
753
- ], [
754
- boolean
755
- ], "nonpayable">;
756
- getFunction(nameOrSignature: "execTransactionWithRoleReturnData"): TypedContractMethod<[
757
- to: AddressLike,
758
- value: BigNumberish,
759
- data: BytesLike,
760
- operation: BigNumberish,
761
- roleKey: BytesLike,
762
- shouldRevert: boolean
763
- ], [
764
- [boolean, string] & {
765
- success: boolean;
766
- returnData: string;
767
- }
768
- ], "nonpayable">;
769
- getFunction(nameOrSignature: "getModulesPaginated"): TypedContractMethod<[
770
- start: AddressLike,
771
- pageSize: BigNumberish
772
- ], [
773
- [string[], string] & {
774
- array: string[];
775
- next: string;
776
- }
777
- ], "view">;
778
- getFunction(nameOrSignature: "invalidate"): TypedContractMethod<[hash: BytesLike], [void], "nonpayable">;
779
- getFunction(nameOrSignature: "isModuleEnabled"): TypedContractMethod<[_module: AddressLike], [boolean], "view">;
780
- getFunction(nameOrSignature: "moduleTxHash"): TypedContractMethod<[data: BytesLike, salt: BytesLike], [string], "view">;
781
- getFunction(nameOrSignature: "owner"): TypedContractMethod<[], [string], "view">;
782
- getFunction(nameOrSignature: "renounceOwnership"): TypedContractMethod<[], [void], "nonpayable">;
783
- getFunction(nameOrSignature: "revokeFunction"): TypedContractMethod<[
784
- roleKey: BytesLike,
785
- targetAddress: AddressLike,
786
- selector: BytesLike
787
- ], [
788
- void
789
- ], "nonpayable">;
790
- getFunction(nameOrSignature: "revokeTarget"): TypedContractMethod<[
791
- roleKey: BytesLike,
792
- targetAddress: AddressLike
793
- ], [
794
- void
795
- ], "nonpayable">;
796
- getFunction(nameOrSignature: "scopeFunction"): TypedContractMethod<[
797
- roleKey: BytesLike,
798
- targetAddress: AddressLike,
799
- selector: BytesLike,
800
- conditions: ConditionFlatStruct[],
801
- options: BigNumberish
802
- ], [
803
- void
804
- ], "nonpayable">;
805
- getFunction(nameOrSignature: "scopeTarget"): TypedContractMethod<[
806
- roleKey: BytesLike,
807
- targetAddress: AddressLike
808
- ], [
809
- void
810
- ], "nonpayable">;
811
- getFunction(nameOrSignature: "setAllowance"): TypedContractMethod<[
812
- key: BytesLike,
813
- balance: BigNumberish,
814
- maxRefill: BigNumberish,
815
- refill: BigNumberish,
816
- period: BigNumberish,
817
- timestamp: BigNumberish
818
- ], [
819
- void
820
- ], "nonpayable">;
821
- getFunction(nameOrSignature: "setAvatar"): TypedContractMethod<[_avatar: AddressLike], [void], "nonpayable">;
822
- getFunction(nameOrSignature: "setDefaultRole"): TypedContractMethod<[
823
- module: AddressLike,
824
- roleKey: BytesLike
825
- ], [
826
- void
827
- ], "nonpayable">;
828
- getFunction(nameOrSignature: "setTarget"): TypedContractMethod<[_target: AddressLike], [void], "nonpayable">;
829
- getFunction(nameOrSignature: "setTransactionUnwrapper"): TypedContractMethod<[
830
- to: AddressLike,
831
- selector: BytesLike,
832
- adapter: AddressLike
833
- ], [
834
- void
835
- ], "nonpayable">;
836
- getFunction(nameOrSignature: "setUp"): TypedContractMethod<[initParams: BytesLike], [void], "nonpayable">;
837
- getFunction(nameOrSignature: "target"): TypedContractMethod<[], [string], "view">;
838
- getFunction(nameOrSignature: "transferOwnership"): TypedContractMethod<[newOwner: AddressLike], [void], "nonpayable">;
839
- getFunction(nameOrSignature: "unwrappers"): TypedContractMethod<[arg0: BytesLike], [string], "view">;
840
- getEvent(key: "AllowFunction"): TypedContractEvent<AllowFunctionEvent.InputTuple, AllowFunctionEvent.OutputTuple, AllowFunctionEvent.OutputObject>;
841
- getEvent(key: "AllowTarget"): TypedContractEvent<AllowTargetEvent.InputTuple, AllowTargetEvent.OutputTuple, AllowTargetEvent.OutputObject>;
842
- getEvent(key: "AssignRoles"): TypedContractEvent<AssignRolesEvent.InputTuple, AssignRolesEvent.OutputTuple, AssignRolesEvent.OutputObject>;
843
- getEvent(key: "AvatarSet"): TypedContractEvent<AvatarSetEvent.InputTuple, AvatarSetEvent.OutputTuple, AvatarSetEvent.OutputObject>;
844
- getEvent(key: "ConsumeAllowance"): TypedContractEvent<ConsumeAllowanceEvent.InputTuple, ConsumeAllowanceEvent.OutputTuple, ConsumeAllowanceEvent.OutputObject>;
845
- getEvent(key: "DisabledModule"): TypedContractEvent<DisabledModuleEvent.InputTuple, DisabledModuleEvent.OutputTuple, DisabledModuleEvent.OutputObject>;
846
- getEvent(key: "EnabledModule"): TypedContractEvent<EnabledModuleEvent.InputTuple, EnabledModuleEvent.OutputTuple, EnabledModuleEvent.OutputObject>;
847
- getEvent(key: "ExecutionFromModuleFailure"): TypedContractEvent<ExecutionFromModuleFailureEvent.InputTuple, ExecutionFromModuleFailureEvent.OutputTuple, ExecutionFromModuleFailureEvent.OutputObject>;
848
- getEvent(key: "ExecutionFromModuleSuccess"): TypedContractEvent<ExecutionFromModuleSuccessEvent.InputTuple, ExecutionFromModuleSuccessEvent.OutputTuple, ExecutionFromModuleSuccessEvent.OutputObject>;
849
- getEvent(key: "HashExecuted"): TypedContractEvent<HashExecutedEvent.InputTuple, HashExecutedEvent.OutputTuple, HashExecutedEvent.OutputObject>;
850
- getEvent(key: "HashInvalidated"): TypedContractEvent<HashInvalidatedEvent.InputTuple, HashInvalidatedEvent.OutputTuple, HashInvalidatedEvent.OutputObject>;
851
- getEvent(key: "Initialized"): TypedContractEvent<InitializedEvent.InputTuple, InitializedEvent.OutputTuple, InitializedEvent.OutputObject>;
852
- getEvent(key: "OwnershipTransferred"): TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
853
- getEvent(key: "RevokeFunction"): TypedContractEvent<RevokeFunctionEvent.InputTuple, RevokeFunctionEvent.OutputTuple, RevokeFunctionEvent.OutputObject>;
854
- getEvent(key: "RevokeTarget"): TypedContractEvent<RevokeTargetEvent.InputTuple, RevokeTargetEvent.OutputTuple, RevokeTargetEvent.OutputObject>;
855
- getEvent(key: "RolesModSetup"): TypedContractEvent<RolesModSetupEvent.InputTuple, RolesModSetupEvent.OutputTuple, RolesModSetupEvent.OutputObject>;
856
- getEvent(key: "ScopeFunction"): TypedContractEvent<ScopeFunctionEvent.InputTuple, ScopeFunctionEvent.OutputTuple, ScopeFunctionEvent.OutputObject>;
857
- getEvent(key: "ScopeTarget"): TypedContractEvent<ScopeTargetEvent.InputTuple, ScopeTargetEvent.OutputTuple, ScopeTargetEvent.OutputObject>;
858
- getEvent(key: "SetAllowance"): TypedContractEvent<SetAllowanceEvent.InputTuple, SetAllowanceEvent.OutputTuple, SetAllowanceEvent.OutputObject>;
859
- getEvent(key: "SetDefaultRole"): TypedContractEvent<SetDefaultRoleEvent.InputTuple, SetDefaultRoleEvent.OutputTuple, SetDefaultRoleEvent.OutputObject>;
860
- getEvent(key: "SetUnwrapAdapter"): TypedContractEvent<SetUnwrapAdapterEvent.InputTuple, SetUnwrapAdapterEvent.OutputTuple, SetUnwrapAdapterEvent.OutputObject>;
861
- getEvent(key: "TargetSet"): TypedContractEvent<TargetSetEvent.InputTuple, TargetSetEvent.OutputTuple, TargetSetEvent.OutputObject>;
862
- filters: {
863
- "AllowFunction(bytes32,address,bytes4,uint8)": TypedContractEvent<AllowFunctionEvent.InputTuple, AllowFunctionEvent.OutputTuple, AllowFunctionEvent.OutputObject>;
864
- AllowFunction: TypedContractEvent<AllowFunctionEvent.InputTuple, AllowFunctionEvent.OutputTuple, AllowFunctionEvent.OutputObject>;
865
- "AllowTarget(bytes32,address,uint8)": TypedContractEvent<AllowTargetEvent.InputTuple, AllowTargetEvent.OutputTuple, AllowTargetEvent.OutputObject>;
866
- AllowTarget: TypedContractEvent<AllowTargetEvent.InputTuple, AllowTargetEvent.OutputTuple, AllowTargetEvent.OutputObject>;
867
- "AssignRoles(address,bytes32[],bool[])": TypedContractEvent<AssignRolesEvent.InputTuple, AssignRolesEvent.OutputTuple, AssignRolesEvent.OutputObject>;
868
- AssignRoles: TypedContractEvent<AssignRolesEvent.InputTuple, AssignRolesEvent.OutputTuple, AssignRolesEvent.OutputObject>;
869
- "AvatarSet(address,address)": TypedContractEvent<AvatarSetEvent.InputTuple, AvatarSetEvent.OutputTuple, AvatarSetEvent.OutputObject>;
870
- AvatarSet: TypedContractEvent<AvatarSetEvent.InputTuple, AvatarSetEvent.OutputTuple, AvatarSetEvent.OutputObject>;
871
- "ConsumeAllowance(bytes32,uint128,uint128)": TypedContractEvent<ConsumeAllowanceEvent.InputTuple, ConsumeAllowanceEvent.OutputTuple, ConsumeAllowanceEvent.OutputObject>;
872
- ConsumeAllowance: TypedContractEvent<ConsumeAllowanceEvent.InputTuple, ConsumeAllowanceEvent.OutputTuple, ConsumeAllowanceEvent.OutputObject>;
873
- "DisabledModule(address)": TypedContractEvent<DisabledModuleEvent.InputTuple, DisabledModuleEvent.OutputTuple, DisabledModuleEvent.OutputObject>;
874
- DisabledModule: TypedContractEvent<DisabledModuleEvent.InputTuple, DisabledModuleEvent.OutputTuple, DisabledModuleEvent.OutputObject>;
875
- "EnabledModule(address)": TypedContractEvent<EnabledModuleEvent.InputTuple, EnabledModuleEvent.OutputTuple, EnabledModuleEvent.OutputObject>;
876
- EnabledModule: TypedContractEvent<EnabledModuleEvent.InputTuple, EnabledModuleEvent.OutputTuple, EnabledModuleEvent.OutputObject>;
877
- "ExecutionFromModuleFailure(address)": TypedContractEvent<ExecutionFromModuleFailureEvent.InputTuple, ExecutionFromModuleFailureEvent.OutputTuple, ExecutionFromModuleFailureEvent.OutputObject>;
878
- ExecutionFromModuleFailure: TypedContractEvent<ExecutionFromModuleFailureEvent.InputTuple, ExecutionFromModuleFailureEvent.OutputTuple, ExecutionFromModuleFailureEvent.OutputObject>;
879
- "ExecutionFromModuleSuccess(address)": TypedContractEvent<ExecutionFromModuleSuccessEvent.InputTuple, ExecutionFromModuleSuccessEvent.OutputTuple, ExecutionFromModuleSuccessEvent.OutputObject>;
880
- ExecutionFromModuleSuccess: TypedContractEvent<ExecutionFromModuleSuccessEvent.InputTuple, ExecutionFromModuleSuccessEvent.OutputTuple, ExecutionFromModuleSuccessEvent.OutputObject>;
881
- "HashExecuted(bytes32)": TypedContractEvent<HashExecutedEvent.InputTuple, HashExecutedEvent.OutputTuple, HashExecutedEvent.OutputObject>;
882
- HashExecuted: TypedContractEvent<HashExecutedEvent.InputTuple, HashExecutedEvent.OutputTuple, HashExecutedEvent.OutputObject>;
883
- "HashInvalidated(bytes32)": TypedContractEvent<HashInvalidatedEvent.InputTuple, HashInvalidatedEvent.OutputTuple, HashInvalidatedEvent.OutputObject>;
884
- HashInvalidated: TypedContractEvent<HashInvalidatedEvent.InputTuple, HashInvalidatedEvent.OutputTuple, HashInvalidatedEvent.OutputObject>;
885
- "Initialized(uint64)": TypedContractEvent<InitializedEvent.InputTuple, InitializedEvent.OutputTuple, InitializedEvent.OutputObject>;
886
- Initialized: TypedContractEvent<InitializedEvent.InputTuple, InitializedEvent.OutputTuple, InitializedEvent.OutputObject>;
887
- "OwnershipTransferred(address,address)": TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
888
- OwnershipTransferred: TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
889
- "RevokeFunction(bytes32,address,bytes4)": TypedContractEvent<RevokeFunctionEvent.InputTuple, RevokeFunctionEvent.OutputTuple, RevokeFunctionEvent.OutputObject>;
890
- RevokeFunction: TypedContractEvent<RevokeFunctionEvent.InputTuple, RevokeFunctionEvent.OutputTuple, RevokeFunctionEvent.OutputObject>;
891
- "RevokeTarget(bytes32,address)": TypedContractEvent<RevokeTargetEvent.InputTuple, RevokeTargetEvent.OutputTuple, RevokeTargetEvent.OutputObject>;
892
- RevokeTarget: TypedContractEvent<RevokeTargetEvent.InputTuple, RevokeTargetEvent.OutputTuple, RevokeTargetEvent.OutputObject>;
893
- "RolesModSetup(address,address,address,address)": TypedContractEvent<RolesModSetupEvent.InputTuple, RolesModSetupEvent.OutputTuple, RolesModSetupEvent.OutputObject>;
894
- RolesModSetup: TypedContractEvent<RolesModSetupEvent.InputTuple, RolesModSetupEvent.OutputTuple, RolesModSetupEvent.OutputObject>;
895
- "ScopeFunction(bytes32,address,bytes4,tuple[],uint8)": TypedContractEvent<ScopeFunctionEvent.InputTuple, ScopeFunctionEvent.OutputTuple, ScopeFunctionEvent.OutputObject>;
896
- ScopeFunction: TypedContractEvent<ScopeFunctionEvent.InputTuple, ScopeFunctionEvent.OutputTuple, ScopeFunctionEvent.OutputObject>;
897
- "ScopeTarget(bytes32,address)": TypedContractEvent<ScopeTargetEvent.InputTuple, ScopeTargetEvent.OutputTuple, ScopeTargetEvent.OutputObject>;
898
- ScopeTarget: TypedContractEvent<ScopeTargetEvent.InputTuple, ScopeTargetEvent.OutputTuple, ScopeTargetEvent.OutputObject>;
899
- "SetAllowance(bytes32,uint128,uint128,uint128,uint64,uint64)": TypedContractEvent<SetAllowanceEvent.InputTuple, SetAllowanceEvent.OutputTuple, SetAllowanceEvent.OutputObject>;
900
- SetAllowance: TypedContractEvent<SetAllowanceEvent.InputTuple, SetAllowanceEvent.OutputTuple, SetAllowanceEvent.OutputObject>;
901
- "SetDefaultRole(address,bytes32)": TypedContractEvent<SetDefaultRoleEvent.InputTuple, SetDefaultRoleEvent.OutputTuple, SetDefaultRoleEvent.OutputObject>;
902
- SetDefaultRole: TypedContractEvent<SetDefaultRoleEvent.InputTuple, SetDefaultRoleEvent.OutputTuple, SetDefaultRoleEvent.OutputObject>;
903
- "SetUnwrapAdapter(address,bytes4,address)": TypedContractEvent<SetUnwrapAdapterEvent.InputTuple, SetUnwrapAdapterEvent.OutputTuple, SetUnwrapAdapterEvent.OutputObject>;
904
- SetUnwrapAdapter: TypedContractEvent<SetUnwrapAdapterEvent.InputTuple, SetUnwrapAdapterEvent.OutputTuple, SetUnwrapAdapterEvent.OutputObject>;
905
- "TargetSet(address,address)": TypedContractEvent<TargetSetEvent.InputTuple, TargetSetEvent.OutputTuple, TargetSetEvent.OutputObject>;
906
- TargetSet: TypedContractEvent<TargetSetEvent.InputTuple, TargetSetEvent.OutputTuple, TargetSetEvent.OutputObject>;
907
- };
908
- }