@gnosis-guild/zodiac 4.0.3

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 (356) hide show
  1. package/LICENSE +165 -0
  2. package/README.md +141 -0
  3. package/contracts/core/GuardableModifier.sol +96 -0
  4. package/contracts/core/GuardableModule.sol +95 -0
  5. package/contracts/core/Modifier.sol +204 -0
  6. package/contracts/core/Module.sol +73 -0
  7. package/contracts/factory/FactoryFriendly.sol +10 -0
  8. package/contracts/factory/ModuleProxyFactory.sol +51 -0
  9. package/contracts/guard/BaseGuard.sol +36 -0
  10. package/contracts/guard/Guardable.sol +32 -0
  11. package/contracts/interfaces/IAvatar.sol +71 -0
  12. package/contracts/interfaces/IGuard.sol +22 -0
  13. package/contracts/signature/ExecutionTracker.sol +17 -0
  14. package/contracts/signature/IERC1271.sol +19 -0
  15. package/contracts/signature/SignatureChecker.sol +154 -0
  16. package/contracts/test/TestAvatar.sol +64 -0
  17. package/contracts/test/TestGuard.sol +82 -0
  18. package/contracts/test/TestGuardableModifier.sol +82 -0
  19. package/contracts/test/TestModifier.sol +88 -0
  20. package/contracts/test/TestModule.sol +66 -0
  21. package/contracts/test/TestSignature.sol +71 -0
  22. package/dist/cjs/abi/Bridge.json +382 -0
  23. package/dist/cjs/abi/CirculatingSupplyErc20.json +245 -0
  24. package/dist/cjs/abi/CirculatingSupplyErc721.json +245 -0
  25. package/dist/cjs/abi/Connext.json +493 -0
  26. package/dist/cjs/abi/Delay.json +728 -0
  27. package/dist/cjs/abi/Erc20Votes.json +797 -0
  28. package/dist/cjs/abi/Erc721Votes.json +792 -0
  29. package/dist/cjs/abi/ExitErc20.json +419 -0
  30. package/dist/cjs/abi/ExitErc721.json +419 -0
  31. package/dist/cjs/abi/MetaGuard.json +471 -0
  32. package/dist/cjs/abi/ModuleProxyFactory.json +77 -0
  33. package/dist/cjs/abi/MultisendEncoder.json +61 -0
  34. package/dist/cjs/abi/OptimisticGovernor.json +938 -0
  35. package/dist/cjs/abi/OzGovernor.json +706 -0
  36. package/dist/cjs/abi/Permissions.json +520 -0
  37. package/dist/cjs/abi/RealityErc20.json +871 -0
  38. package/dist/cjs/abi/RealityEth.json +871 -0
  39. package/dist/cjs/abi/RolesV1.json +990 -0
  40. package/dist/cjs/abi/RolesV2.json +1484 -0
  41. package/dist/cjs/abi/ScopeGuard.json +592 -0
  42. package/dist/cjs/abi/Tellor.json +978 -0
  43. package/dist/cjs/contracts.d.ts +61 -0
  44. package/dist/cjs/contracts.js +309 -0
  45. package/dist/cjs/factory/deployModuleFactory.d.ts +9 -0
  46. package/dist/cjs/factory/deployModuleFactory.js +44 -0
  47. package/dist/cjs/factory/index.d.ts +5 -0
  48. package/dist/cjs/factory/index.js +21 -0
  49. package/dist/cjs/factory/mastercopyDeployer.d.ts +27 -0
  50. package/dist/cjs/factory/mastercopyDeployer.js +97 -0
  51. package/dist/cjs/factory/moduleDeployer.d.ts +105 -0
  52. package/dist/cjs/factory/moduleDeployer.js +90 -0
  53. package/dist/cjs/factory/singletonFactory.d.ts +11 -0
  54. package/dist/cjs/factory/singletonFactory.js +39 -0
  55. package/dist/cjs/factory/types.d.ts +25 -0
  56. package/dist/cjs/factory/types.js +58 -0
  57. package/dist/cjs/index.d.ts +1 -0
  58. package/dist/cjs/index.js +17 -0
  59. package/dist/cjs/initData/Bridge.d.ts +2 -0
  60. package/dist/cjs/initData/Bridge.js +5 -0
  61. package/dist/cjs/initData/CirculatingSupplyErc20.d.ts +2 -0
  62. package/dist/cjs/initData/CirculatingSupplyErc20.js +5 -0
  63. package/dist/cjs/initData/CirculatingSupplyErc721.d.ts +2 -0
  64. package/dist/cjs/initData/CirculatingSupplyErc721.js +5 -0
  65. package/dist/cjs/initData/Connext.d.ts +2 -0
  66. package/dist/cjs/initData/Connext.js +5 -0
  67. package/dist/cjs/initData/Delay.d.ts +2 -0
  68. package/dist/cjs/initData/Delay.js +5 -0
  69. package/dist/cjs/initData/Erc20Votes.d.ts +2 -0
  70. package/dist/cjs/initData/Erc20Votes.js +5 -0
  71. package/dist/cjs/initData/Erc721Votes.d.ts +2 -0
  72. package/dist/cjs/initData/Erc721Votes.js +5 -0
  73. package/dist/cjs/initData/ExitErc20.d.ts +2 -0
  74. package/dist/cjs/initData/ExitErc20.js +5 -0
  75. package/dist/cjs/initData/ExitErc721.d.ts +2 -0
  76. package/dist/cjs/initData/ExitErc721.js +5 -0
  77. package/dist/cjs/initData/ModuleProxyFactory.d.ts +2 -0
  78. package/dist/cjs/initData/ModuleProxyFactory.js +5 -0
  79. package/dist/cjs/initData/MultisendEncoder.d.ts +2 -0
  80. package/dist/cjs/initData/MultisendEncoder.js +5 -0
  81. package/dist/cjs/initData/OzGovernor.d.ts +2 -0
  82. package/dist/cjs/initData/OzGovernor.js +5 -0
  83. package/dist/cjs/initData/Permissions.d.ts +2 -0
  84. package/dist/cjs/initData/Permissions.js +5 -0
  85. package/dist/cjs/initData/RealityErc20.d.ts +2 -0
  86. package/dist/cjs/initData/RealityErc20.js +5 -0
  87. package/dist/cjs/initData/RealityEth.d.ts +2 -0
  88. package/dist/cjs/initData/RealityEth.js +5 -0
  89. package/dist/cjs/initData/RolesV1.d.ts +2 -0
  90. package/dist/cjs/initData/RolesV1.js +5 -0
  91. package/dist/cjs/initData/RolesV2.d.ts +2 -0
  92. package/dist/cjs/initData/RolesV2.js +5 -0
  93. package/dist/cjs/initData/ScopeGuard.d.ts +2 -0
  94. package/dist/cjs/initData/ScopeGuard.js +5 -0
  95. package/dist/cjs/types/Bridge.d.ts +208 -0
  96. package/dist/cjs/types/Bridge.js +2 -0
  97. package/dist/cjs/types/CirculatingSupplyErc20.d.ts +158 -0
  98. package/dist/cjs/types/CirculatingSupplyErc20.js +2 -0
  99. package/dist/cjs/types/CirculatingSupplyErc721.d.ts +158 -0
  100. package/dist/cjs/types/CirculatingSupplyErc721.js +2 -0
  101. package/dist/cjs/types/Connext.d.ts +289 -0
  102. package/dist/cjs/types/Connext.js +2 -0
  103. package/dist/cjs/types/Delay.d.ts +407 -0
  104. package/dist/cjs/types/Delay.js +2 -0
  105. package/dist/cjs/types/Erc20Votes.d.ts +475 -0
  106. package/dist/cjs/types/Erc20Votes.js +2 -0
  107. package/dist/cjs/types/Erc721Votes.d.ts +455 -0
  108. package/dist/cjs/types/Erc721Votes.js +2 -0
  109. package/dist/cjs/types/ExitErc20.d.ts +238 -0
  110. package/dist/cjs/types/ExitErc20.js +2 -0
  111. package/dist/cjs/types/ExitErc721.d.ts +238 -0
  112. package/dist/cjs/types/ExitErc721.js +2 -0
  113. package/dist/cjs/types/MetaGuard.d.ts +274 -0
  114. package/dist/cjs/types/MetaGuard.js +2 -0
  115. package/dist/cjs/types/ModuleProxyFactory.d.ts +54 -0
  116. package/dist/cjs/types/ModuleProxyFactory.js +2 -0
  117. package/dist/cjs/types/MultisendEncoder.d.ts +59 -0
  118. package/dist/cjs/types/MultisendEncoder.js +2 -0
  119. package/dist/cjs/types/OptimisticGovernor.d.ts +547 -0
  120. package/dist/cjs/types/OptimisticGovernor.js +2 -0
  121. package/dist/cjs/types/OzGovernor.d.ts +645 -0
  122. package/dist/cjs/types/OzGovernor.js +2 -0
  123. package/dist/cjs/types/Permissions.d.ts +341 -0
  124. package/dist/cjs/types/Permissions.js +2 -0
  125. package/dist/cjs/types/RealityErc20.d.ts +471 -0
  126. package/dist/cjs/types/RealityErc20.js +2 -0
  127. package/dist/cjs/types/RealityEth.d.ts +471 -0
  128. package/dist/cjs/types/RealityEth.js +2 -0
  129. package/dist/cjs/types/RolesV1.d.ts +649 -0
  130. package/dist/cjs/types/RolesV1.js +2 -0
  131. package/dist/cjs/types/RolesV2.d.ts +908 -0
  132. package/dist/cjs/types/RolesV2.js +2 -0
  133. package/dist/cjs/types/ScopeGuard.d.ts +405 -0
  134. package/dist/cjs/types/ScopeGuard.js +2 -0
  135. package/dist/cjs/types/Tellor.d.ts +572 -0
  136. package/dist/cjs/types/Tellor.js +2 -0
  137. package/dist/cjs/types/Usul.d.ts +535 -0
  138. package/dist/cjs/types/Usul.js +2 -0
  139. package/dist/cjs/types/common.d.ts +50 -0
  140. package/dist/cjs/types/common.js +2 -0
  141. package/dist/cjs/types/factories/Bridge__factory.d.ts +303 -0
  142. package/dist/cjs/types/factories/Bridge__factory.js +399 -0
  143. package/dist/cjs/types/factories/CirculatingSupplyErc20__factory.d.ts +194 -0
  144. package/dist/cjs/types/factories/CirculatingSupplyErc20__factory.js +262 -0
  145. package/dist/cjs/types/factories/CirculatingSupplyErc721__factory.d.ts +194 -0
  146. package/dist/cjs/types/factories/CirculatingSupplyErc721__factory.js +262 -0
  147. package/dist/cjs/types/factories/Connext__factory.d.ts +389 -0
  148. package/dist/cjs/types/factories/Connext__factory.js +510 -0
  149. package/dist/cjs/types/factories/Delay__factory.d.ts +568 -0
  150. package/dist/cjs/types/factories/Delay__factory.js +745 -0
  151. package/dist/cjs/types/factories/Erc20Votes__factory.d.ts +619 -0
  152. package/dist/cjs/types/factories/Erc20Votes__factory.js +814 -0
  153. package/dist/cjs/types/factories/Erc721Votes__factory.d.ts +616 -0
  154. package/dist/cjs/types/factories/Erc721Votes__factory.js +809 -0
  155. package/dist/cjs/types/factories/ExitErc20__factory.d.ts +329 -0
  156. package/dist/cjs/types/factories/ExitErc20__factory.js +436 -0
  157. package/dist/cjs/types/factories/ExitErc721__factory.d.ts +329 -0
  158. package/dist/cjs/types/factories/ExitErc721__factory.js +436 -0
  159. package/dist/cjs/types/factories/MetaGuard__factory.d.ts +369 -0
  160. package/dist/cjs/types/factories/MetaGuard__factory.js +488 -0
  161. package/dist/cjs/types/factories/ModuleProxyFactory__factory.d.ts +64 -0
  162. package/dist/cjs/types/factories/ModuleProxyFactory__factory.js +94 -0
  163. package/dist/cjs/types/factories/MultisendEncoder__factory.d.ts +53 -0
  164. package/dist/cjs/types/factories/MultisendEncoder__factory.js +78 -0
  165. package/dist/cjs/types/factories/OptimisticGovernor__factory.d.ts +734 -0
  166. package/dist/cjs/types/factories/OptimisticGovernor__factory.js +955 -0
  167. package/dist/cjs/types/factories/OzGovernor__factory.d.ts +827 -0
  168. package/dist/cjs/types/factories/OzGovernor__factory.js +1080 -0
  169. package/dist/cjs/types/factories/Permissions__factory.d.ts +423 -0
  170. package/dist/cjs/types/factories/Permissions__factory.js +537 -0
  171. package/dist/cjs/types/factories/RealityErc20__factory.d.ts +680 -0
  172. package/dist/cjs/types/factories/RealityErc20__factory.js +888 -0
  173. package/dist/cjs/types/factories/RealityEth__factory.d.ts +680 -0
  174. package/dist/cjs/types/factories/RealityEth__factory.js +888 -0
  175. package/dist/cjs/types/factories/RolesV1__factory.d.ts +776 -0
  176. package/dist/cjs/types/factories/RolesV1__factory.js +1007 -0
  177. package/dist/cjs/types/factories/RolesV2__factory.d.ts +1156 -0
  178. package/dist/cjs/types/factories/RolesV2__factory.js +1501 -0
  179. package/dist/cjs/types/factories/ScopeGuard__factory.d.ts +463 -0
  180. package/dist/cjs/types/factories/ScopeGuard__factory.js +609 -0
  181. package/dist/cjs/types/factories/Tellor__factory.d.ts +757 -0
  182. package/dist/cjs/types/factories/Tellor__factory.js +995 -0
  183. package/dist/cjs/types/factories/Usul__factory.d.ts +634 -0
  184. package/dist/cjs/types/factories/Usul__factory.js +829 -0
  185. package/dist/cjs/types/factories/index.d.ts +22 -0
  186. package/dist/cjs/types/factories/index.js +50 -0
  187. package/dist/cjs/types/index.d.ts +45 -0
  188. package/dist/cjs/types/index.js +71 -0
  189. package/dist/esm/abi/Bridge.json +382 -0
  190. package/dist/esm/abi/CirculatingSupplyErc20.json +245 -0
  191. package/dist/esm/abi/CirculatingSupplyErc721.json +245 -0
  192. package/dist/esm/abi/Connext.json +493 -0
  193. package/dist/esm/abi/Delay.json +728 -0
  194. package/dist/esm/abi/Erc20Votes.json +797 -0
  195. package/dist/esm/abi/Erc721Votes.json +792 -0
  196. package/dist/esm/abi/ExitErc20.json +419 -0
  197. package/dist/esm/abi/ExitErc721.json +419 -0
  198. package/dist/esm/abi/MetaGuard.json +471 -0
  199. package/dist/esm/abi/ModuleProxyFactory.json +77 -0
  200. package/dist/esm/abi/MultisendEncoder.json +61 -0
  201. package/dist/esm/abi/OptimisticGovernor.json +938 -0
  202. package/dist/esm/abi/OzGovernor.json +706 -0
  203. package/dist/esm/abi/Permissions.json +520 -0
  204. package/dist/esm/abi/RealityErc20.json +871 -0
  205. package/dist/esm/abi/RealityEth.json +871 -0
  206. package/dist/esm/abi/RolesV1.json +990 -0
  207. package/dist/esm/abi/RolesV2.json +1484 -0
  208. package/dist/esm/abi/ScopeGuard.json +592 -0
  209. package/dist/esm/abi/Tellor.json +978 -0
  210. package/dist/esm/contracts.d.ts +61 -0
  211. package/dist/esm/contracts.js +280 -0
  212. package/dist/esm/factory/deployModuleFactory.d.ts +9 -0
  213. package/dist/esm/factory/deployModuleFactory.js +46 -0
  214. package/dist/esm/factory/index.d.ts +5 -0
  215. package/dist/esm/factory/index.js +5 -0
  216. package/dist/esm/factory/mastercopyDeployer.d.ts +27 -0
  217. package/dist/esm/factory/mastercopyDeployer.js +100 -0
  218. package/dist/esm/factory/moduleDeployer.d.ts +105 -0
  219. package/dist/esm/factory/moduleDeployer.js +91 -0
  220. package/dist/esm/factory/singletonFactory.d.ts +11 -0
  221. package/dist/esm/factory/singletonFactory.js +44 -0
  222. package/dist/esm/factory/types.d.ts +25 -0
  223. package/dist/esm/factory/types.js +55 -0
  224. package/dist/esm/index.d.ts +1 -0
  225. package/dist/esm/index.js +1 -0
  226. package/dist/esm/initData/Bridge.d.ts +2 -0
  227. package/dist/esm/initData/Bridge.js +2 -0
  228. package/dist/esm/initData/CirculatingSupplyErc20.d.ts +2 -0
  229. package/dist/esm/initData/CirculatingSupplyErc20.js +2 -0
  230. package/dist/esm/initData/CirculatingSupplyErc721.d.ts +2 -0
  231. package/dist/esm/initData/CirculatingSupplyErc721.js +2 -0
  232. package/dist/esm/initData/Connext.d.ts +2 -0
  233. package/dist/esm/initData/Connext.js +2 -0
  234. package/dist/esm/initData/Delay.d.ts +2 -0
  235. package/dist/esm/initData/Delay.js +2 -0
  236. package/dist/esm/initData/Erc20Votes.d.ts +2 -0
  237. package/dist/esm/initData/Erc20Votes.js +2 -0
  238. package/dist/esm/initData/Erc721Votes.d.ts +2 -0
  239. package/dist/esm/initData/Erc721Votes.js +2 -0
  240. package/dist/esm/initData/ExitErc20.d.ts +2 -0
  241. package/dist/esm/initData/ExitErc20.js +2 -0
  242. package/dist/esm/initData/ExitErc721.d.ts +2 -0
  243. package/dist/esm/initData/ExitErc721.js +2 -0
  244. package/dist/esm/initData/ModuleProxyFactory.d.ts +2 -0
  245. package/dist/esm/initData/ModuleProxyFactory.js +2 -0
  246. package/dist/esm/initData/MultisendEncoder.d.ts +2 -0
  247. package/dist/esm/initData/MultisendEncoder.js +2 -0
  248. package/dist/esm/initData/OzGovernor.d.ts +2 -0
  249. package/dist/esm/initData/OzGovernor.js +2 -0
  250. package/dist/esm/initData/Permissions.d.ts +2 -0
  251. package/dist/esm/initData/Permissions.js +2 -0
  252. package/dist/esm/initData/RealityErc20.d.ts +2 -0
  253. package/dist/esm/initData/RealityErc20.js +2 -0
  254. package/dist/esm/initData/RealityEth.d.ts +2 -0
  255. package/dist/esm/initData/RealityEth.js +2 -0
  256. package/dist/esm/initData/RolesV1.d.ts +2 -0
  257. package/dist/esm/initData/RolesV1.js +2 -0
  258. package/dist/esm/initData/RolesV2.d.ts +2 -0
  259. package/dist/esm/initData/RolesV2.js +2 -0
  260. package/dist/esm/initData/ScopeGuard.d.ts +2 -0
  261. package/dist/esm/initData/ScopeGuard.js +2 -0
  262. package/dist/esm/types/Bridge.d.ts +208 -0
  263. package/dist/esm/types/Bridge.js +1 -0
  264. package/dist/esm/types/CirculatingSupplyErc20.d.ts +158 -0
  265. package/dist/esm/types/CirculatingSupplyErc20.js +1 -0
  266. package/dist/esm/types/CirculatingSupplyErc721.d.ts +158 -0
  267. package/dist/esm/types/CirculatingSupplyErc721.js +1 -0
  268. package/dist/esm/types/Connext.d.ts +289 -0
  269. package/dist/esm/types/Connext.js +1 -0
  270. package/dist/esm/types/Delay.d.ts +407 -0
  271. package/dist/esm/types/Delay.js +1 -0
  272. package/dist/esm/types/Erc20Votes.d.ts +475 -0
  273. package/dist/esm/types/Erc20Votes.js +1 -0
  274. package/dist/esm/types/Erc721Votes.d.ts +455 -0
  275. package/dist/esm/types/Erc721Votes.js +1 -0
  276. package/dist/esm/types/ExitErc20.d.ts +238 -0
  277. package/dist/esm/types/ExitErc20.js +1 -0
  278. package/dist/esm/types/ExitErc721.d.ts +238 -0
  279. package/dist/esm/types/ExitErc721.js +1 -0
  280. package/dist/esm/types/MetaGuard.d.ts +274 -0
  281. package/dist/esm/types/MetaGuard.js +1 -0
  282. package/dist/esm/types/ModuleProxyFactory.d.ts +54 -0
  283. package/dist/esm/types/ModuleProxyFactory.js +1 -0
  284. package/dist/esm/types/MultisendEncoder.d.ts +59 -0
  285. package/dist/esm/types/MultisendEncoder.js +1 -0
  286. package/dist/esm/types/OptimisticGovernor.d.ts +547 -0
  287. package/dist/esm/types/OptimisticGovernor.js +1 -0
  288. package/dist/esm/types/OzGovernor.d.ts +645 -0
  289. package/dist/esm/types/OzGovernor.js +1 -0
  290. package/dist/esm/types/Permissions.d.ts +341 -0
  291. package/dist/esm/types/Permissions.js +1 -0
  292. package/dist/esm/types/RealityErc20.d.ts +471 -0
  293. package/dist/esm/types/RealityErc20.js +1 -0
  294. package/dist/esm/types/RealityEth.d.ts +471 -0
  295. package/dist/esm/types/RealityEth.js +1 -0
  296. package/dist/esm/types/RolesV1.d.ts +649 -0
  297. package/dist/esm/types/RolesV1.js +1 -0
  298. package/dist/esm/types/RolesV2.d.ts +908 -0
  299. package/dist/esm/types/RolesV2.js +1 -0
  300. package/dist/esm/types/ScopeGuard.d.ts +405 -0
  301. package/dist/esm/types/ScopeGuard.js +1 -0
  302. package/dist/esm/types/Tellor.d.ts +572 -0
  303. package/dist/esm/types/Tellor.js +1 -0
  304. package/dist/esm/types/Usul.d.ts +535 -0
  305. package/dist/esm/types/Usul.js +1 -0
  306. package/dist/esm/types/common.d.ts +50 -0
  307. package/dist/esm/types/common.js +1 -0
  308. package/dist/esm/types/factories/Bridge__factory.d.ts +303 -0
  309. package/dist/esm/types/factories/Bridge__factory.js +395 -0
  310. package/dist/esm/types/factories/CirculatingSupplyErc20__factory.d.ts +194 -0
  311. package/dist/esm/types/factories/CirculatingSupplyErc20__factory.js +258 -0
  312. package/dist/esm/types/factories/CirculatingSupplyErc721__factory.d.ts +194 -0
  313. package/dist/esm/types/factories/CirculatingSupplyErc721__factory.js +258 -0
  314. package/dist/esm/types/factories/Connext__factory.d.ts +389 -0
  315. package/dist/esm/types/factories/Connext__factory.js +506 -0
  316. package/dist/esm/types/factories/Delay__factory.d.ts +568 -0
  317. package/dist/esm/types/factories/Delay__factory.js +741 -0
  318. package/dist/esm/types/factories/Erc20Votes__factory.d.ts +619 -0
  319. package/dist/esm/types/factories/Erc20Votes__factory.js +810 -0
  320. package/dist/esm/types/factories/Erc721Votes__factory.d.ts +616 -0
  321. package/dist/esm/types/factories/Erc721Votes__factory.js +805 -0
  322. package/dist/esm/types/factories/ExitErc20__factory.d.ts +329 -0
  323. package/dist/esm/types/factories/ExitErc20__factory.js +432 -0
  324. package/dist/esm/types/factories/ExitErc721__factory.d.ts +329 -0
  325. package/dist/esm/types/factories/ExitErc721__factory.js +432 -0
  326. package/dist/esm/types/factories/MetaGuard__factory.d.ts +369 -0
  327. package/dist/esm/types/factories/MetaGuard__factory.js +484 -0
  328. package/dist/esm/types/factories/ModuleProxyFactory__factory.d.ts +64 -0
  329. package/dist/esm/types/factories/ModuleProxyFactory__factory.js +90 -0
  330. package/dist/esm/types/factories/MultisendEncoder__factory.d.ts +53 -0
  331. package/dist/esm/types/factories/MultisendEncoder__factory.js +74 -0
  332. package/dist/esm/types/factories/OptimisticGovernor__factory.d.ts +734 -0
  333. package/dist/esm/types/factories/OptimisticGovernor__factory.js +951 -0
  334. package/dist/esm/types/factories/OzGovernor__factory.d.ts +827 -0
  335. package/dist/esm/types/factories/OzGovernor__factory.js +1076 -0
  336. package/dist/esm/types/factories/Permissions__factory.d.ts +423 -0
  337. package/dist/esm/types/factories/Permissions__factory.js +533 -0
  338. package/dist/esm/types/factories/RealityErc20__factory.d.ts +680 -0
  339. package/dist/esm/types/factories/RealityErc20__factory.js +884 -0
  340. package/dist/esm/types/factories/RealityEth__factory.d.ts +680 -0
  341. package/dist/esm/types/factories/RealityEth__factory.js +884 -0
  342. package/dist/esm/types/factories/RolesV1__factory.d.ts +776 -0
  343. package/dist/esm/types/factories/RolesV1__factory.js +1003 -0
  344. package/dist/esm/types/factories/RolesV2__factory.d.ts +1156 -0
  345. package/dist/esm/types/factories/RolesV2__factory.js +1497 -0
  346. package/dist/esm/types/factories/ScopeGuard__factory.d.ts +463 -0
  347. package/dist/esm/types/factories/ScopeGuard__factory.js +605 -0
  348. package/dist/esm/types/factories/Tellor__factory.d.ts +757 -0
  349. package/dist/esm/types/factories/Tellor__factory.js +991 -0
  350. package/dist/esm/types/factories/Usul__factory.d.ts +634 -0
  351. package/dist/esm/types/factories/Usul__factory.js +825 -0
  352. package/dist/esm/types/factories/index.d.ts +22 -0
  353. package/dist/esm/types/factories/index.js +25 -0
  354. package/dist/esm/types/index.d.ts +45 -0
  355. package/dist/esm/types/index.js +24 -0
  356. package/package.json +98 -0
@@ -0,0 +1,908 @@
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
+ }