@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.
- package/README.md +107 -4
- package/dist/{esm/abi/Bridge.json → cjs/abis/bridge/1.0.0.js} +5 -2
- package/dist/cjs/abis/circulatingSupplyERC20/1.0.0.js +248 -0
- package/dist/cjs/abis/circulatingSupplyERC20/1.1.0.js +248 -0
- package/dist/cjs/abis/circulatingSupplyERC20/1.2.0.js +248 -0
- package/dist/cjs/abis/circulatingSupplyERC721/1.1.0.js +248 -0
- package/dist/cjs/abis/circulatingSupplyERC721/1.2.0.js +248 -0
- package/dist/cjs/{abi/Connext.json → abis/connext/1.0.0.js} +5 -2
- package/dist/cjs/abis/delay/1.0.0.js +731 -0
- package/dist/cjs/abis/delay/1.0.1.js +731 -0
- package/dist/cjs/abis/delay/1.1.0.js +941 -0
- package/dist/cjs/abis/delay/1.1.1.js +941 -0
- package/dist/cjs/{abi/Erc20Votes.json → abis/erc20Votes/1.0.0.js} +5 -2
- package/dist/cjs/{abi/Erc721Votes.json → abis/erc721Votes/1.0.0.js} +5 -2
- package/dist/cjs/abis/exit/1.0.0.js +403 -0
- package/dist/cjs/abis/exit/1.1.0.js +422 -0
- package/dist/cjs/abis/exit/1.2.0.js +422 -0
- package/dist/cjs/abis/exitERC721/1.1.0.js +422 -0
- package/dist/cjs/abis/exitERC721/1.2.0.js +422 -0
- package/dist/cjs/abis/factory/1.0.0.js +53 -0
- package/dist/{esm/abi/ModuleProxyFactory.json → cjs/abis/factory/1.1.0.js} +5 -2
- package/dist/cjs/abis/factory/1.2.0.js +91 -0
- package/dist/cjs/abis/index.js +101 -0
- package/dist/{esm/abi/MetaGuard.json → cjs/abis/metaGuard/1.0.0.js} +5 -2
- package/dist/{esm/abi/MultisendEncoder.json → cjs/abis/multisendEncoder/1.0.0.js} +5 -2
- package/dist/{esm/abi/Tellor.json → cjs/abis/ozGovernor/1.0.0.js} +533 -445
- package/dist/cjs/{abi/RealityEth.json → abis/realityERC20/2.0.0.js} +5 -2
- package/dist/{esm/abi/RealityEth.json → cjs/abis/realityETH/2.0.0.js} +5 -2
- package/dist/cjs/abis/roles/1.0.0.js +993 -0
- package/dist/cjs/abis/roles/1.1.0.js +993 -0
- package/dist/cjs/{abi/RolesV2.json → abis/roles/2.1.0.js} +5 -78
- package/dist/{esm/abi/RolesV2.json → cjs/abis/roles/2.1.1.js} +5 -78
- package/dist/{esm/abi/ScopeGuard.json → cjs/abis/scopeGuard/1.0.0.js} +5 -2
- package/dist/cjs/contracts.js +91 -296
- package/dist/cjs/explorer.js +264 -0
- package/dist/cjs/extract.js +117 -0
- package/dist/cjs/index.js +14 -15
- package/dist/cjs/mastercopies.js +34 -0
- package/dist/cjs/networks.js +233 -0
- package/dist/cjs/package.json +1 -0
- package/dist/cjs/rpc.js +36 -0
- package/dist/cjs/singleton.js +42 -0
- package/dist/cjs/types.js +7 -0
- package/dist/cjs/ui.js +64 -0
- package/dist/cjs/zodiacModule.js +61 -0
- package/dist/esm/abis/bridge/1.0.0.d.ts +297 -0
- package/dist/{cjs/abi/Bridge.json → esm/abis/bridge/1.0.0.js} +2 -2
- package/dist/esm/abis/circulatingSupplyERC20/1.0.0.d.ts +188 -0
- package/dist/esm/{abi/CirculatingSupplyErc20.json → abis/circulatingSupplyERC20/1.0.0.js} +2 -2
- package/dist/esm/abis/circulatingSupplyERC20/1.1.0.d.ts +188 -0
- package/dist/{cjs/abi/CirculatingSupplyErc20.json → esm/abis/circulatingSupplyERC20/1.1.0.js} +2 -2
- package/dist/esm/abis/circulatingSupplyERC20/1.2.0.d.ts +188 -0
- package/dist/{cjs/abi/CirculatingSupplyErc721.json → esm/abis/circulatingSupplyERC20/1.2.0.js} +2 -2
- package/dist/esm/abis/circulatingSupplyERC721/1.1.0.d.ts +188 -0
- package/dist/esm/{abi/CirculatingSupplyErc721.json → abis/circulatingSupplyERC721/1.1.0.js} +2 -2
- package/dist/esm/abis/circulatingSupplyERC721/1.2.0.d.ts +188 -0
- package/dist/esm/abis/circulatingSupplyERC721/1.2.0.js +245 -0
- package/dist/esm/abis/connext/1.0.0.d.ts +383 -0
- package/dist/esm/{abi/Connext.json → abis/connext/1.0.0.js} +2 -2
- package/dist/esm/abis/delay/1.0.0.d.ts +562 -0
- package/dist/esm/{abi/Delay.json → abis/delay/1.0.0.js} +2 -2
- package/dist/esm/abis/delay/1.0.1.d.ts +562 -0
- package/dist/{cjs/abi/Delay.json → esm/abis/delay/1.0.1.js} +2 -2
- package/dist/esm/abis/delay/1.1.0.d.ts +720 -0
- package/dist/esm/abis/delay/1.1.0.js +938 -0
- package/dist/esm/abis/delay/1.1.1.d.ts +720 -0
- package/dist/esm/abis/delay/1.1.1.js +938 -0
- package/dist/esm/abis/erc20Votes/1.0.0.d.ts +613 -0
- package/dist/esm/{abi/Erc20Votes.json → abis/erc20Votes/1.0.0.js} +2 -2
- package/dist/esm/abis/erc721Votes/1.0.0.d.ts +610 -0
- package/dist/esm/{abi/Erc721Votes.json → abis/erc721Votes/1.0.0.js} +2 -2
- package/dist/esm/abis/exit/1.0.0.d.ts +309 -0
- package/dist/esm/abis/exit/1.0.0.js +400 -0
- package/dist/esm/abis/exit/1.1.0.d.ts +323 -0
- package/dist/esm/{abi/ExitErc20.json → abis/exit/1.1.0.js} +2 -2
- package/dist/esm/abis/exit/1.2.0.d.ts +323 -0
- package/dist/{cjs/abi/ExitErc20.json → esm/abis/exit/1.2.0.js} +2 -2
- package/dist/esm/abis/exitERC721/1.1.0.d.ts +323 -0
- package/dist/{cjs/abi/ExitErc721.json → esm/abis/exitERC721/1.1.0.js} +2 -2
- package/dist/esm/abis/exitERC721/1.2.0.d.ts +323 -0
- package/dist/esm/{abi/ExitErc721.json → abis/exitERC721/1.2.0.js} +2 -2
- package/dist/esm/abis/factory/1.0.0.d.ts +38 -0
- package/dist/esm/abis/factory/1.0.0.js +50 -0
- package/dist/esm/abis/factory/1.1.0.d.ts +58 -0
- package/dist/{cjs/abi/ModuleProxyFactory.json → esm/abis/factory/1.1.0.js} +2 -2
- package/dist/esm/abis/factory/1.2.0.d.ts +66 -0
- package/dist/esm/abis/factory/1.2.0.js +88 -0
- package/dist/esm/abis/index.d.ts +13970 -0
- package/dist/esm/abis/index.js +98 -0
- package/dist/esm/abis/metaGuard/1.0.0.d.ts +363 -0
- package/dist/{cjs/abi/MetaGuard.json → esm/abis/metaGuard/1.0.0.js} +2 -2
- package/dist/esm/abis/multisendEncoder/1.0.0.d.ts +47 -0
- package/dist/{cjs/abi/MultisendEncoder.json → esm/abis/multisendEncoder/1.0.0.js} +2 -2
- package/dist/esm/abis/ozGovernor/1.0.0.d.ts +821 -0
- package/dist/{cjs/abi/Tellor.json → esm/abis/ozGovernor/1.0.0.js} +530 -445
- package/dist/esm/abis/realityERC20/2.0.0.d.ts +674 -0
- package/dist/esm/{abi/RealityErc20.json → abis/realityERC20/2.0.0.js} +2 -2
- package/dist/esm/abis/realityETH/2.0.0.d.ts +674 -0
- package/dist/{cjs/abi/RealityErc20.json → esm/abis/realityETH/2.0.0.js} +2 -2
- package/dist/esm/abis/roles/1.0.0.d.ts +770 -0
- package/dist/esm/{abi/RolesV1.json → abis/roles/1.0.0.js} +2 -2
- package/dist/esm/abis/roles/1.1.0.d.ts +770 -0
- package/dist/{cjs/abi/RolesV1.json → esm/abis/roles/1.1.0.js} +2 -2
- package/dist/esm/abis/roles/2.1.0.d.ts +1094 -0
- package/dist/esm/abis/roles/2.1.0.js +1408 -0
- package/dist/esm/abis/roles/2.1.1.d.ts +1094 -0
- package/dist/esm/abis/roles/2.1.1.js +1408 -0
- package/dist/esm/abis/scopeGuard/1.0.0.d.ts +457 -0
- package/dist/{cjs/abi/ScopeGuard.json → esm/abis/scopeGuard/1.0.0.js} +2 -2
- package/dist/esm/contracts.d.ts +63 -78
- package/dist/esm/contracts.js +71 -250
- package/dist/esm/explorer.d.ts +81 -0
- package/dist/esm/explorer.js +256 -0
- package/dist/esm/extract.d.ts +15 -0
- package/dist/esm/extract.js +114 -0
- package/dist/esm/index.d.ts +3 -1
- package/dist/esm/index.js +3 -1
- package/dist/esm/mastercopies.d.ts +21 -0
- package/dist/esm/mastercopies.js +27 -0
- package/dist/esm/networks.d.ts +37 -0
- package/dist/esm/networks.js +229 -0
- package/dist/esm/package.json +1 -0
- package/dist/esm/rpc.d.ts +6 -0
- package/dist/esm/rpc.js +33 -0
- package/dist/esm/singleton.d.ts +24 -0
- package/dist/esm/singleton.js +38 -0
- package/dist/esm/types.d.ts +43 -0
- package/dist/esm/types.js +6 -0
- package/dist/esm/ui.d.ts +16 -0
- package/dist/esm/ui.js +53 -0
- package/dist/esm/zodiacModule.d.ts +4 -0
- package/dist/esm/zodiacModule.js +56 -0
- package/package.json +33 -75
- package/contracts/core/GuardableModifier.sol +0 -96
- package/contracts/core/GuardableModule.sol +0 -95
- package/contracts/core/Modifier.sol +0 -204
- package/contracts/core/Module.sol +0 -73
- package/contracts/factory/FactoryFriendly.sol +0 -10
- package/contracts/factory/ModuleProxyFactory.sol +0 -51
- package/contracts/guard/BaseGuard.sol +0 -36
- package/contracts/guard/Guardable.sol +0 -32
- package/contracts/interfaces/IAvatar.sol +0 -71
- package/contracts/interfaces/IGuard.sol +0 -22
- package/contracts/signature/ExecutionTracker.sol +0 -17
- package/contracts/signature/IERC1271.sol +0 -19
- package/contracts/signature/SignatureChecker.sol +0 -154
- package/contracts/test/TestAvatar.sol +0 -64
- package/contracts/test/TestGuard.sol +0 -82
- package/contracts/test/TestGuardableModifier.sol +0 -82
- package/contracts/test/TestModifier.sol +0 -88
- package/contracts/test/TestModule.sol +0 -66
- package/contracts/test/TestSignature.sol +0 -71
- package/dist/cjs/abi/OptimisticGovernor.json +0 -938
- package/dist/cjs/abi/OzGovernor.json +0 -706
- package/dist/cjs/abi/Permissions.json +0 -520
- package/dist/cjs/contracts.d.ts +0 -81
- package/dist/cjs/factory/deployModuleFactory.d.ts +0 -9
- package/dist/cjs/factory/deployModuleFactory.js +0 -44
- package/dist/cjs/factory/index.d.ts +0 -5
- package/dist/cjs/factory/index.js +0 -21
- package/dist/cjs/factory/mastercopyDeployer.d.ts +0 -27
- package/dist/cjs/factory/mastercopyDeployer.js +0 -97
- package/dist/cjs/factory/moduleDeployer.d.ts +0 -105
- package/dist/cjs/factory/moduleDeployer.js +0 -90
- package/dist/cjs/factory/singletonFactory.d.ts +0 -11
- package/dist/cjs/factory/singletonFactory.js +0 -39
- package/dist/cjs/factory/types.d.ts +0 -25
- package/dist/cjs/factory/types.js +0 -58
- package/dist/cjs/index.d.ts +0 -1
- package/dist/cjs/initData/Bridge.d.ts +0 -2
- package/dist/cjs/initData/Bridge.js +0 -5
- package/dist/cjs/initData/CirculatingSupplyErc20.d.ts +0 -2
- package/dist/cjs/initData/CirculatingSupplyErc20.js +0 -5
- package/dist/cjs/initData/CirculatingSupplyErc721.d.ts +0 -2
- package/dist/cjs/initData/CirculatingSupplyErc721.js +0 -5
- package/dist/cjs/initData/Connext.d.ts +0 -2
- package/dist/cjs/initData/Connext.js +0 -5
- package/dist/cjs/initData/Delay.d.ts +0 -2
- package/dist/cjs/initData/Delay.js +0 -5
- package/dist/cjs/initData/Erc20Votes.d.ts +0 -2
- package/dist/cjs/initData/Erc20Votes.js +0 -5
- package/dist/cjs/initData/Erc721Votes.d.ts +0 -2
- package/dist/cjs/initData/Erc721Votes.js +0 -5
- package/dist/cjs/initData/ExitErc20.d.ts +0 -2
- package/dist/cjs/initData/ExitErc20.js +0 -5
- package/dist/cjs/initData/ExitErc721.d.ts +0 -2
- package/dist/cjs/initData/ExitErc721.js +0 -5
- package/dist/cjs/initData/ModuleProxyFactory.d.ts +0 -2
- package/dist/cjs/initData/ModuleProxyFactory.js +0 -5
- package/dist/cjs/initData/MultisendEncoder.d.ts +0 -2
- package/dist/cjs/initData/MultisendEncoder.js +0 -5
- package/dist/cjs/initData/OzGovernor.d.ts +0 -2
- package/dist/cjs/initData/OzGovernor.js +0 -5
- package/dist/cjs/initData/Permissions.d.ts +0 -2
- package/dist/cjs/initData/Permissions.js +0 -5
- package/dist/cjs/initData/RealityErc20.d.ts +0 -2
- package/dist/cjs/initData/RealityErc20.js +0 -5
- package/dist/cjs/initData/RealityEth.d.ts +0 -2
- package/dist/cjs/initData/RealityEth.js +0 -5
- package/dist/cjs/initData/RolesV1.d.ts +0 -2
- package/dist/cjs/initData/RolesV1.js +0 -5
- package/dist/cjs/initData/RolesV2.d.ts +0 -2
- package/dist/cjs/initData/RolesV2.js +0 -5
- package/dist/cjs/initData/ScopeGuard.d.ts +0 -2
- package/dist/cjs/initData/ScopeGuard.js +0 -5
- package/dist/cjs/types/Bridge.d.ts +0 -208
- package/dist/cjs/types/Bridge.js +0 -2
- package/dist/cjs/types/CirculatingSupplyErc20.d.ts +0 -158
- package/dist/cjs/types/CirculatingSupplyErc20.js +0 -2
- package/dist/cjs/types/CirculatingSupplyErc721.d.ts +0 -158
- package/dist/cjs/types/CirculatingSupplyErc721.js +0 -2
- package/dist/cjs/types/Connext.d.ts +0 -289
- package/dist/cjs/types/Connext.js +0 -2
- package/dist/cjs/types/Delay.d.ts +0 -407
- package/dist/cjs/types/Delay.js +0 -2
- package/dist/cjs/types/Erc20Votes.d.ts +0 -475
- package/dist/cjs/types/Erc20Votes.js +0 -2
- package/dist/cjs/types/Erc721Votes.d.ts +0 -455
- package/dist/cjs/types/Erc721Votes.js +0 -2
- package/dist/cjs/types/ExitErc20.d.ts +0 -238
- package/dist/cjs/types/ExitErc20.js +0 -2
- package/dist/cjs/types/ExitErc721.d.ts +0 -238
- package/dist/cjs/types/ExitErc721.js +0 -2
- package/dist/cjs/types/MetaGuard.d.ts +0 -274
- package/dist/cjs/types/MetaGuard.js +0 -2
- package/dist/cjs/types/ModuleProxyFactory.d.ts +0 -54
- package/dist/cjs/types/ModuleProxyFactory.js +0 -2
- package/dist/cjs/types/MultisendEncoder.d.ts +0 -59
- package/dist/cjs/types/MultisendEncoder.js +0 -2
- package/dist/cjs/types/OptimisticGovernor.d.ts +0 -547
- package/dist/cjs/types/OptimisticGovernor.js +0 -2
- package/dist/cjs/types/OzGovernor.d.ts +0 -645
- package/dist/cjs/types/OzGovernor.js +0 -2
- package/dist/cjs/types/Permissions.d.ts +0 -341
- package/dist/cjs/types/Permissions.js +0 -2
- package/dist/cjs/types/RealityErc20.d.ts +0 -471
- package/dist/cjs/types/RealityErc20.js +0 -2
- package/dist/cjs/types/RealityEth.d.ts +0 -471
- package/dist/cjs/types/RealityEth.js +0 -2
- package/dist/cjs/types/RolesV1.d.ts +0 -649
- package/dist/cjs/types/RolesV1.js +0 -2
- package/dist/cjs/types/RolesV2.d.ts +0 -908
- package/dist/cjs/types/RolesV2.js +0 -2
- package/dist/cjs/types/ScopeGuard.d.ts +0 -405
- package/dist/cjs/types/ScopeGuard.js +0 -2
- package/dist/cjs/types/Tellor.d.ts +0 -572
- package/dist/cjs/types/Tellor.js +0 -2
- package/dist/cjs/types/Usul.d.ts +0 -535
- package/dist/cjs/types/Usul.js +0 -2
- package/dist/cjs/types/common.d.ts +0 -50
- package/dist/cjs/types/common.js +0 -2
- package/dist/cjs/types/factories/Bridge__factory.d.ts +0 -303
- package/dist/cjs/types/factories/Bridge__factory.js +0 -399
- package/dist/cjs/types/factories/CirculatingSupplyErc20__factory.d.ts +0 -194
- package/dist/cjs/types/factories/CirculatingSupplyErc20__factory.js +0 -262
- package/dist/cjs/types/factories/CirculatingSupplyErc721__factory.d.ts +0 -194
- package/dist/cjs/types/factories/CirculatingSupplyErc721__factory.js +0 -262
- package/dist/cjs/types/factories/Connext__factory.d.ts +0 -389
- package/dist/cjs/types/factories/Connext__factory.js +0 -510
- package/dist/cjs/types/factories/Delay__factory.d.ts +0 -568
- package/dist/cjs/types/factories/Delay__factory.js +0 -745
- package/dist/cjs/types/factories/Erc20Votes__factory.d.ts +0 -619
- package/dist/cjs/types/factories/Erc20Votes__factory.js +0 -814
- package/dist/cjs/types/factories/Erc721Votes__factory.d.ts +0 -616
- package/dist/cjs/types/factories/Erc721Votes__factory.js +0 -809
- package/dist/cjs/types/factories/ExitErc20__factory.d.ts +0 -329
- package/dist/cjs/types/factories/ExitErc20__factory.js +0 -436
- package/dist/cjs/types/factories/ExitErc721__factory.d.ts +0 -329
- package/dist/cjs/types/factories/ExitErc721__factory.js +0 -436
- package/dist/cjs/types/factories/MetaGuard__factory.d.ts +0 -369
- package/dist/cjs/types/factories/MetaGuard__factory.js +0 -488
- package/dist/cjs/types/factories/ModuleProxyFactory__factory.d.ts +0 -64
- package/dist/cjs/types/factories/ModuleProxyFactory__factory.js +0 -94
- package/dist/cjs/types/factories/MultisendEncoder__factory.d.ts +0 -53
- package/dist/cjs/types/factories/MultisendEncoder__factory.js +0 -78
- package/dist/cjs/types/factories/OptimisticGovernor__factory.d.ts +0 -734
- package/dist/cjs/types/factories/OptimisticGovernor__factory.js +0 -955
- package/dist/cjs/types/factories/OzGovernor__factory.d.ts +0 -827
- package/dist/cjs/types/factories/OzGovernor__factory.js +0 -1080
- package/dist/cjs/types/factories/Permissions__factory.d.ts +0 -423
- package/dist/cjs/types/factories/Permissions__factory.js +0 -537
- package/dist/cjs/types/factories/RealityErc20__factory.d.ts +0 -680
- package/dist/cjs/types/factories/RealityErc20__factory.js +0 -888
- package/dist/cjs/types/factories/RealityEth__factory.d.ts +0 -680
- package/dist/cjs/types/factories/RealityEth__factory.js +0 -888
- package/dist/cjs/types/factories/RolesV1__factory.d.ts +0 -776
- package/dist/cjs/types/factories/RolesV1__factory.js +0 -1007
- package/dist/cjs/types/factories/RolesV2__factory.d.ts +0 -1156
- package/dist/cjs/types/factories/RolesV2__factory.js +0 -1501
- package/dist/cjs/types/factories/ScopeGuard__factory.d.ts +0 -463
- package/dist/cjs/types/factories/ScopeGuard__factory.js +0 -609
- package/dist/cjs/types/factories/Tellor__factory.d.ts +0 -757
- package/dist/cjs/types/factories/Tellor__factory.js +0 -995
- package/dist/cjs/types/factories/Usul__factory.d.ts +0 -634
- package/dist/cjs/types/factories/Usul__factory.js +0 -829
- package/dist/cjs/types/factories/index.d.ts +0 -22
- package/dist/cjs/types/factories/index.js +0 -50
- package/dist/cjs/types/index.d.ts +0 -45
- package/dist/cjs/types/index.js +0 -71
- package/dist/esm/abi/OptimisticGovernor.json +0 -938
- package/dist/esm/abi/OzGovernor.json +0 -706
- package/dist/esm/abi/Permissions.json +0 -520
- package/dist/esm/factory/deployModuleFactory.d.ts +0 -9
- package/dist/esm/factory/deployModuleFactory.js +0 -46
- package/dist/esm/factory/index.d.ts +0 -5
- package/dist/esm/factory/index.js +0 -5
- package/dist/esm/factory/mastercopyDeployer.d.ts +0 -27
- package/dist/esm/factory/mastercopyDeployer.js +0 -100
- package/dist/esm/factory/moduleDeployer.d.ts +0 -105
- package/dist/esm/factory/moduleDeployer.js +0 -91
- package/dist/esm/factory/singletonFactory.d.ts +0 -11
- package/dist/esm/factory/singletonFactory.js +0 -44
- package/dist/esm/factory/types.d.ts +0 -25
- package/dist/esm/factory/types.js +0 -55
- package/dist/esm/initData/Bridge.d.ts +0 -2
- package/dist/esm/initData/Bridge.js +0 -2
- package/dist/esm/initData/CirculatingSupplyErc20.d.ts +0 -2
- package/dist/esm/initData/CirculatingSupplyErc20.js +0 -2
- package/dist/esm/initData/CirculatingSupplyErc721.d.ts +0 -2
- package/dist/esm/initData/CirculatingSupplyErc721.js +0 -2
- package/dist/esm/initData/Connext.d.ts +0 -2
- package/dist/esm/initData/Connext.js +0 -2
- package/dist/esm/initData/Delay.d.ts +0 -2
- package/dist/esm/initData/Delay.js +0 -2
- package/dist/esm/initData/Erc20Votes.d.ts +0 -2
- package/dist/esm/initData/Erc20Votes.js +0 -2
- package/dist/esm/initData/Erc721Votes.d.ts +0 -2
- package/dist/esm/initData/Erc721Votes.js +0 -2
- package/dist/esm/initData/ExitErc20.d.ts +0 -2
- package/dist/esm/initData/ExitErc20.js +0 -2
- package/dist/esm/initData/ExitErc721.d.ts +0 -2
- package/dist/esm/initData/ExitErc721.js +0 -2
- package/dist/esm/initData/ModuleProxyFactory.d.ts +0 -2
- package/dist/esm/initData/ModuleProxyFactory.js +0 -2
- package/dist/esm/initData/MultisendEncoder.d.ts +0 -2
- package/dist/esm/initData/MultisendEncoder.js +0 -2
- package/dist/esm/initData/OzGovernor.d.ts +0 -2
- package/dist/esm/initData/OzGovernor.js +0 -2
- package/dist/esm/initData/Permissions.d.ts +0 -2
- package/dist/esm/initData/Permissions.js +0 -2
- package/dist/esm/initData/RealityErc20.d.ts +0 -2
- package/dist/esm/initData/RealityErc20.js +0 -2
- package/dist/esm/initData/RealityEth.d.ts +0 -2
- package/dist/esm/initData/RealityEth.js +0 -2
- package/dist/esm/initData/RolesV1.d.ts +0 -2
- package/dist/esm/initData/RolesV1.js +0 -2
- package/dist/esm/initData/RolesV2.d.ts +0 -2
- package/dist/esm/initData/RolesV2.js +0 -2
- package/dist/esm/initData/ScopeGuard.d.ts +0 -2
- package/dist/esm/initData/ScopeGuard.js +0 -2
- package/dist/esm/types/Bridge.d.ts +0 -208
- package/dist/esm/types/Bridge.js +0 -1
- package/dist/esm/types/CirculatingSupplyErc20.d.ts +0 -158
- package/dist/esm/types/CirculatingSupplyErc20.js +0 -1
- package/dist/esm/types/CirculatingSupplyErc721.d.ts +0 -158
- package/dist/esm/types/CirculatingSupplyErc721.js +0 -1
- package/dist/esm/types/Connext.d.ts +0 -289
- package/dist/esm/types/Connext.js +0 -1
- package/dist/esm/types/Delay.d.ts +0 -407
- package/dist/esm/types/Delay.js +0 -1
- package/dist/esm/types/Erc20Votes.d.ts +0 -475
- package/dist/esm/types/Erc20Votes.js +0 -1
- package/dist/esm/types/Erc721Votes.d.ts +0 -455
- package/dist/esm/types/Erc721Votes.js +0 -1
- package/dist/esm/types/ExitErc20.d.ts +0 -238
- package/dist/esm/types/ExitErc20.js +0 -1
- package/dist/esm/types/ExitErc721.d.ts +0 -238
- package/dist/esm/types/ExitErc721.js +0 -1
- package/dist/esm/types/MetaGuard.d.ts +0 -274
- package/dist/esm/types/MetaGuard.js +0 -1
- package/dist/esm/types/ModuleProxyFactory.d.ts +0 -54
- package/dist/esm/types/ModuleProxyFactory.js +0 -1
- package/dist/esm/types/MultisendEncoder.d.ts +0 -59
- package/dist/esm/types/MultisendEncoder.js +0 -1
- package/dist/esm/types/OptimisticGovernor.d.ts +0 -547
- package/dist/esm/types/OptimisticGovernor.js +0 -1
- package/dist/esm/types/OzGovernor.d.ts +0 -645
- package/dist/esm/types/OzGovernor.js +0 -1
- package/dist/esm/types/Permissions.d.ts +0 -341
- package/dist/esm/types/Permissions.js +0 -1
- package/dist/esm/types/RealityErc20.d.ts +0 -471
- package/dist/esm/types/RealityErc20.js +0 -1
- package/dist/esm/types/RealityEth.d.ts +0 -471
- package/dist/esm/types/RealityEth.js +0 -1
- package/dist/esm/types/RolesV1.d.ts +0 -649
- package/dist/esm/types/RolesV1.js +0 -1
- package/dist/esm/types/RolesV2.d.ts +0 -908
- package/dist/esm/types/RolesV2.js +0 -1
- package/dist/esm/types/ScopeGuard.d.ts +0 -405
- package/dist/esm/types/ScopeGuard.js +0 -1
- package/dist/esm/types/Tellor.d.ts +0 -572
- package/dist/esm/types/Tellor.js +0 -1
- package/dist/esm/types/Usul.d.ts +0 -535
- package/dist/esm/types/Usul.js +0 -1
- package/dist/esm/types/common.d.ts +0 -50
- package/dist/esm/types/common.js +0 -1
- package/dist/esm/types/factories/Bridge__factory.d.ts +0 -303
- package/dist/esm/types/factories/Bridge__factory.js +0 -395
- package/dist/esm/types/factories/CirculatingSupplyErc20__factory.d.ts +0 -194
- package/dist/esm/types/factories/CirculatingSupplyErc20__factory.js +0 -258
- package/dist/esm/types/factories/CirculatingSupplyErc721__factory.d.ts +0 -194
- package/dist/esm/types/factories/CirculatingSupplyErc721__factory.js +0 -258
- package/dist/esm/types/factories/Connext__factory.d.ts +0 -389
- package/dist/esm/types/factories/Connext__factory.js +0 -506
- package/dist/esm/types/factories/Delay__factory.d.ts +0 -568
- package/dist/esm/types/factories/Delay__factory.js +0 -741
- package/dist/esm/types/factories/Erc20Votes__factory.d.ts +0 -619
- package/dist/esm/types/factories/Erc20Votes__factory.js +0 -810
- package/dist/esm/types/factories/Erc721Votes__factory.d.ts +0 -616
- package/dist/esm/types/factories/Erc721Votes__factory.js +0 -805
- package/dist/esm/types/factories/ExitErc20__factory.d.ts +0 -329
- package/dist/esm/types/factories/ExitErc20__factory.js +0 -432
- package/dist/esm/types/factories/ExitErc721__factory.d.ts +0 -329
- package/dist/esm/types/factories/ExitErc721__factory.js +0 -432
- package/dist/esm/types/factories/MetaGuard__factory.d.ts +0 -369
- package/dist/esm/types/factories/MetaGuard__factory.js +0 -484
- package/dist/esm/types/factories/ModuleProxyFactory__factory.d.ts +0 -64
- package/dist/esm/types/factories/ModuleProxyFactory__factory.js +0 -90
- package/dist/esm/types/factories/MultisendEncoder__factory.d.ts +0 -53
- package/dist/esm/types/factories/MultisendEncoder__factory.js +0 -74
- package/dist/esm/types/factories/OptimisticGovernor__factory.d.ts +0 -734
- package/dist/esm/types/factories/OptimisticGovernor__factory.js +0 -951
- package/dist/esm/types/factories/OzGovernor__factory.d.ts +0 -827
- package/dist/esm/types/factories/OzGovernor__factory.js +0 -1076
- package/dist/esm/types/factories/Permissions__factory.d.ts +0 -423
- package/dist/esm/types/factories/Permissions__factory.js +0 -533
- package/dist/esm/types/factories/RealityErc20__factory.d.ts +0 -680
- package/dist/esm/types/factories/RealityErc20__factory.js +0 -884
- package/dist/esm/types/factories/RealityEth__factory.d.ts +0 -680
- package/dist/esm/types/factories/RealityEth__factory.js +0 -884
- package/dist/esm/types/factories/RolesV1__factory.d.ts +0 -776
- package/dist/esm/types/factories/RolesV1__factory.js +0 -1003
- package/dist/esm/types/factories/RolesV2__factory.d.ts +0 -1156
- package/dist/esm/types/factories/RolesV2__factory.js +0 -1497
- package/dist/esm/types/factories/ScopeGuard__factory.d.ts +0 -463
- package/dist/esm/types/factories/ScopeGuard__factory.js +0 -605
- package/dist/esm/types/factories/Tellor__factory.d.ts +0 -757
- package/dist/esm/types/factories/Tellor__factory.js +0 -991
- package/dist/esm/types/factories/Usul__factory.d.ts +0 -634
- package/dist/esm/types/factories/Usul__factory.js +0 -825
- package/dist/esm/types/factories/index.d.ts +0 -22
- package/dist/esm/types/factories/index.js +0 -25
- package/dist/esm/types/index.d.ts +0 -45
- package/dist/esm/types/index.js +0 -24
|
@@ -1,645 +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 interface OzGovernorInterface extends Interface {
|
|
4
|
-
getFunction(nameOrSignature: "BALLOT_TYPEHASH" | "COUNTING_MODE" | "castVote" | "castVoteBySig" | "castVoteWithReason" | "execute" | "getVotes" | "hasVoted" | "hashProposal" | "lateQuorumVoteExtension" | "multisend" | "name" | "owner" | "proposalDeadline" | "proposalSnapshot" | "proposalThreshold" | "proposalVotes" | "propose" | "quorum" | "quorumDenominator" | "quorumNumerator" | "relay" | "setLateQuorumVoteExtension" | "setMultisend" | "setProposalThreshold" | "setTarget" | "setUp" | "setVotingDelay" | "setVotingPeriod" | "state" | "supportsInterface" | "target" | "token" | "transferOwnership" | "updateQuorumNumerator" | "version" | "votingDelay" | "votingPeriod"): FunctionFragment;
|
|
5
|
-
getEvent(nameOrSignatureOrTopic: "LateQuorumVoteExtensionSet" | "MultisendSet" | "OZGovernorModuleSetUp" | "OwnershipTransferred" | "ProposalCanceled" | "ProposalCreated" | "ProposalExecuted" | "ProposalExtended" | "ProposalThresholdSet" | "QuorumNumeratorUpdated" | "TargetSet" | "VoteCast" | "VotingDelaySet" | "VotingPeriodSet"): EventFragment;
|
|
6
|
-
encodeFunctionData(functionFragment: "BALLOT_TYPEHASH", values?: undefined): string;
|
|
7
|
-
encodeFunctionData(functionFragment: "COUNTING_MODE", values?: undefined): string;
|
|
8
|
-
encodeFunctionData(functionFragment: "castVote", values: [BigNumberish, BigNumberish]): string;
|
|
9
|
-
encodeFunctionData(functionFragment: "castVoteBySig", values: [BigNumberish, BigNumberish, BigNumberish, BytesLike, BytesLike]): string;
|
|
10
|
-
encodeFunctionData(functionFragment: "castVoteWithReason", values: [BigNumberish, BigNumberish, string]): string;
|
|
11
|
-
encodeFunctionData(functionFragment: "execute", values: [AddressLike[], BigNumberish[], BytesLike[], BytesLike]): string;
|
|
12
|
-
encodeFunctionData(functionFragment: "getVotes", values: [AddressLike, BigNumberish]): string;
|
|
13
|
-
encodeFunctionData(functionFragment: "hasVoted", values: [BigNumberish, AddressLike]): string;
|
|
14
|
-
encodeFunctionData(functionFragment: "hashProposal", values: [AddressLike[], BigNumberish[], BytesLike[], BytesLike]): string;
|
|
15
|
-
encodeFunctionData(functionFragment: "lateQuorumVoteExtension", values?: undefined): string;
|
|
16
|
-
encodeFunctionData(functionFragment: "multisend", values?: undefined): string;
|
|
17
|
-
encodeFunctionData(functionFragment: "name", values?: undefined): string;
|
|
18
|
-
encodeFunctionData(functionFragment: "owner", values?: undefined): string;
|
|
19
|
-
encodeFunctionData(functionFragment: "proposalDeadline", values: [BigNumberish]): string;
|
|
20
|
-
encodeFunctionData(functionFragment: "proposalSnapshot", values: [BigNumberish]): string;
|
|
21
|
-
encodeFunctionData(functionFragment: "proposalThreshold", values?: undefined): string;
|
|
22
|
-
encodeFunctionData(functionFragment: "proposalVotes", values: [BigNumberish]): string;
|
|
23
|
-
encodeFunctionData(functionFragment: "propose", values: [AddressLike[], BigNumberish[], BytesLike[], string]): string;
|
|
24
|
-
encodeFunctionData(functionFragment: "quorum", values: [BigNumberish]): string;
|
|
25
|
-
encodeFunctionData(functionFragment: "quorumDenominator", values?: undefined): string;
|
|
26
|
-
encodeFunctionData(functionFragment: "quorumNumerator", values?: undefined): string;
|
|
27
|
-
encodeFunctionData(functionFragment: "relay", values: [AddressLike, BigNumberish, BytesLike]): string;
|
|
28
|
-
encodeFunctionData(functionFragment: "setLateQuorumVoteExtension", values: [BigNumberish]): string;
|
|
29
|
-
encodeFunctionData(functionFragment: "setMultisend", values: [AddressLike]): string;
|
|
30
|
-
encodeFunctionData(functionFragment: "setProposalThreshold", values: [BigNumberish]): string;
|
|
31
|
-
encodeFunctionData(functionFragment: "setTarget", values: [AddressLike]): string;
|
|
32
|
-
encodeFunctionData(functionFragment: "setUp", values: [BytesLike]): string;
|
|
33
|
-
encodeFunctionData(functionFragment: "setVotingDelay", values: [BigNumberish]): string;
|
|
34
|
-
encodeFunctionData(functionFragment: "setVotingPeriod", values: [BigNumberish]): string;
|
|
35
|
-
encodeFunctionData(functionFragment: "state", values: [BigNumberish]): string;
|
|
36
|
-
encodeFunctionData(functionFragment: "supportsInterface", values: [BytesLike]): string;
|
|
37
|
-
encodeFunctionData(functionFragment: "target", values?: undefined): string;
|
|
38
|
-
encodeFunctionData(functionFragment: "token", values?: undefined): string;
|
|
39
|
-
encodeFunctionData(functionFragment: "transferOwnership", values: [AddressLike]): string;
|
|
40
|
-
encodeFunctionData(functionFragment: "updateQuorumNumerator", values: [BigNumberish]): string;
|
|
41
|
-
encodeFunctionData(functionFragment: "version", values?: undefined): string;
|
|
42
|
-
encodeFunctionData(functionFragment: "votingDelay", values?: undefined): string;
|
|
43
|
-
encodeFunctionData(functionFragment: "votingPeriod", values?: undefined): string;
|
|
44
|
-
decodeFunctionResult(functionFragment: "BALLOT_TYPEHASH", data: BytesLike): Result;
|
|
45
|
-
decodeFunctionResult(functionFragment: "COUNTING_MODE", data: BytesLike): Result;
|
|
46
|
-
decodeFunctionResult(functionFragment: "castVote", data: BytesLike): Result;
|
|
47
|
-
decodeFunctionResult(functionFragment: "castVoteBySig", data: BytesLike): Result;
|
|
48
|
-
decodeFunctionResult(functionFragment: "castVoteWithReason", data: BytesLike): Result;
|
|
49
|
-
decodeFunctionResult(functionFragment: "execute", data: BytesLike): Result;
|
|
50
|
-
decodeFunctionResult(functionFragment: "getVotes", data: BytesLike): Result;
|
|
51
|
-
decodeFunctionResult(functionFragment: "hasVoted", data: BytesLike): Result;
|
|
52
|
-
decodeFunctionResult(functionFragment: "hashProposal", data: BytesLike): Result;
|
|
53
|
-
decodeFunctionResult(functionFragment: "lateQuorumVoteExtension", data: BytesLike): Result;
|
|
54
|
-
decodeFunctionResult(functionFragment: "multisend", data: BytesLike): Result;
|
|
55
|
-
decodeFunctionResult(functionFragment: "name", data: BytesLike): Result;
|
|
56
|
-
decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result;
|
|
57
|
-
decodeFunctionResult(functionFragment: "proposalDeadline", data: BytesLike): Result;
|
|
58
|
-
decodeFunctionResult(functionFragment: "proposalSnapshot", data: BytesLike): Result;
|
|
59
|
-
decodeFunctionResult(functionFragment: "proposalThreshold", data: BytesLike): Result;
|
|
60
|
-
decodeFunctionResult(functionFragment: "proposalVotes", data: BytesLike): Result;
|
|
61
|
-
decodeFunctionResult(functionFragment: "propose", data: BytesLike): Result;
|
|
62
|
-
decodeFunctionResult(functionFragment: "quorum", data: BytesLike): Result;
|
|
63
|
-
decodeFunctionResult(functionFragment: "quorumDenominator", data: BytesLike): Result;
|
|
64
|
-
decodeFunctionResult(functionFragment: "quorumNumerator", data: BytesLike): Result;
|
|
65
|
-
decodeFunctionResult(functionFragment: "relay", data: BytesLike): Result;
|
|
66
|
-
decodeFunctionResult(functionFragment: "setLateQuorumVoteExtension", data: BytesLike): Result;
|
|
67
|
-
decodeFunctionResult(functionFragment: "setMultisend", data: BytesLike): Result;
|
|
68
|
-
decodeFunctionResult(functionFragment: "setProposalThreshold", data: BytesLike): Result;
|
|
69
|
-
decodeFunctionResult(functionFragment: "setTarget", data: BytesLike): Result;
|
|
70
|
-
decodeFunctionResult(functionFragment: "setUp", data: BytesLike): Result;
|
|
71
|
-
decodeFunctionResult(functionFragment: "setVotingDelay", data: BytesLike): Result;
|
|
72
|
-
decodeFunctionResult(functionFragment: "setVotingPeriod", data: BytesLike): Result;
|
|
73
|
-
decodeFunctionResult(functionFragment: "state", data: BytesLike): Result;
|
|
74
|
-
decodeFunctionResult(functionFragment: "supportsInterface", data: BytesLike): Result;
|
|
75
|
-
decodeFunctionResult(functionFragment: "target", data: BytesLike): Result;
|
|
76
|
-
decodeFunctionResult(functionFragment: "token", data: BytesLike): Result;
|
|
77
|
-
decodeFunctionResult(functionFragment: "transferOwnership", data: BytesLike): Result;
|
|
78
|
-
decodeFunctionResult(functionFragment: "updateQuorumNumerator", data: BytesLike): Result;
|
|
79
|
-
decodeFunctionResult(functionFragment: "version", data: BytesLike): Result;
|
|
80
|
-
decodeFunctionResult(functionFragment: "votingDelay", data: BytesLike): Result;
|
|
81
|
-
decodeFunctionResult(functionFragment: "votingPeriod", data: BytesLike): Result;
|
|
82
|
-
}
|
|
83
|
-
export declare namespace LateQuorumVoteExtensionSetEvent {
|
|
84
|
-
type InputTuple = [
|
|
85
|
-
oldVoteExtension: BigNumberish,
|
|
86
|
-
newVoteExtension: BigNumberish
|
|
87
|
-
];
|
|
88
|
-
type OutputTuple = [
|
|
89
|
-
oldVoteExtension: bigint,
|
|
90
|
-
newVoteExtension: bigint
|
|
91
|
-
];
|
|
92
|
-
interface OutputObject {
|
|
93
|
-
oldVoteExtension: bigint;
|
|
94
|
-
newVoteExtension: bigint;
|
|
95
|
-
}
|
|
96
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
97
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
98
|
-
type Log = TypedEventLog<Event>;
|
|
99
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
100
|
-
}
|
|
101
|
-
export declare namespace MultisendSetEvent {
|
|
102
|
-
type InputTuple = [multisend: AddressLike];
|
|
103
|
-
type OutputTuple = [multisend: string];
|
|
104
|
-
interface OutputObject {
|
|
105
|
-
multisend: string;
|
|
106
|
-
}
|
|
107
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
108
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
109
|
-
type Log = TypedEventLog<Event>;
|
|
110
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
111
|
-
}
|
|
112
|
-
export declare namespace OZGovernorModuleSetUpEvent {
|
|
113
|
-
type InputTuple = [owner: AddressLike, target: AddressLike];
|
|
114
|
-
type OutputTuple = [owner: string, target: string];
|
|
115
|
-
interface OutputObject {
|
|
116
|
-
owner: string;
|
|
117
|
-
target: string;
|
|
118
|
-
}
|
|
119
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
120
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
121
|
-
type Log = TypedEventLog<Event>;
|
|
122
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
123
|
-
}
|
|
124
|
-
export declare namespace OwnershipTransferredEvent {
|
|
125
|
-
type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike];
|
|
126
|
-
type OutputTuple = [previousOwner: string, newOwner: string];
|
|
127
|
-
interface OutputObject {
|
|
128
|
-
previousOwner: string;
|
|
129
|
-
newOwner: string;
|
|
130
|
-
}
|
|
131
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
132
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
133
|
-
type Log = TypedEventLog<Event>;
|
|
134
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
135
|
-
}
|
|
136
|
-
export declare namespace ProposalCanceledEvent {
|
|
137
|
-
type InputTuple = [proposalId: BigNumberish];
|
|
138
|
-
type OutputTuple = [proposalId: bigint];
|
|
139
|
-
interface OutputObject {
|
|
140
|
-
proposalId: bigint;
|
|
141
|
-
}
|
|
142
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
143
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
144
|
-
type Log = TypedEventLog<Event>;
|
|
145
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
146
|
-
}
|
|
147
|
-
export declare namespace ProposalCreatedEvent {
|
|
148
|
-
type InputTuple = [
|
|
149
|
-
proposalId: BigNumberish,
|
|
150
|
-
proposer: AddressLike,
|
|
151
|
-
targets: AddressLike[],
|
|
152
|
-
values: BigNumberish[],
|
|
153
|
-
signatures: string[],
|
|
154
|
-
calldatas: BytesLike[],
|
|
155
|
-
startBlock: BigNumberish,
|
|
156
|
-
endBlock: BigNumberish,
|
|
157
|
-
description: string
|
|
158
|
-
];
|
|
159
|
-
type OutputTuple = [
|
|
160
|
-
proposalId: bigint,
|
|
161
|
-
proposer: string,
|
|
162
|
-
targets: string[],
|
|
163
|
-
values: bigint[],
|
|
164
|
-
signatures: string[],
|
|
165
|
-
calldatas: string[],
|
|
166
|
-
startBlock: bigint,
|
|
167
|
-
endBlock: bigint,
|
|
168
|
-
description: string
|
|
169
|
-
];
|
|
170
|
-
interface OutputObject {
|
|
171
|
-
proposalId: bigint;
|
|
172
|
-
proposer: string;
|
|
173
|
-
targets: string[];
|
|
174
|
-
values: bigint[];
|
|
175
|
-
signatures: string[];
|
|
176
|
-
calldatas: string[];
|
|
177
|
-
startBlock: bigint;
|
|
178
|
-
endBlock: bigint;
|
|
179
|
-
description: string;
|
|
180
|
-
}
|
|
181
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
182
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
183
|
-
type Log = TypedEventLog<Event>;
|
|
184
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
185
|
-
}
|
|
186
|
-
export declare namespace ProposalExecutedEvent {
|
|
187
|
-
type InputTuple = [proposalId: BigNumberish];
|
|
188
|
-
type OutputTuple = [proposalId: bigint];
|
|
189
|
-
interface OutputObject {
|
|
190
|
-
proposalId: bigint;
|
|
191
|
-
}
|
|
192
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
193
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
194
|
-
type Log = TypedEventLog<Event>;
|
|
195
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
196
|
-
}
|
|
197
|
-
export declare namespace ProposalExtendedEvent {
|
|
198
|
-
type InputTuple = [
|
|
199
|
-
proposalId: BigNumberish,
|
|
200
|
-
extendedDeadline: BigNumberish
|
|
201
|
-
];
|
|
202
|
-
type OutputTuple = [proposalId: bigint, extendedDeadline: bigint];
|
|
203
|
-
interface OutputObject {
|
|
204
|
-
proposalId: bigint;
|
|
205
|
-
extendedDeadline: bigint;
|
|
206
|
-
}
|
|
207
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
208
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
209
|
-
type Log = TypedEventLog<Event>;
|
|
210
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
211
|
-
}
|
|
212
|
-
export declare namespace ProposalThresholdSetEvent {
|
|
213
|
-
type InputTuple = [
|
|
214
|
-
oldProposalThreshold: BigNumberish,
|
|
215
|
-
newProposalThreshold: BigNumberish
|
|
216
|
-
];
|
|
217
|
-
type OutputTuple = [
|
|
218
|
-
oldProposalThreshold: bigint,
|
|
219
|
-
newProposalThreshold: bigint
|
|
220
|
-
];
|
|
221
|
-
interface OutputObject {
|
|
222
|
-
oldProposalThreshold: bigint;
|
|
223
|
-
newProposalThreshold: bigint;
|
|
224
|
-
}
|
|
225
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
226
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
227
|
-
type Log = TypedEventLog<Event>;
|
|
228
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
229
|
-
}
|
|
230
|
-
export declare namespace QuorumNumeratorUpdatedEvent {
|
|
231
|
-
type InputTuple = [
|
|
232
|
-
oldQuorumNumerator: BigNumberish,
|
|
233
|
-
newQuorumNumerator: BigNumberish
|
|
234
|
-
];
|
|
235
|
-
type OutputTuple = [
|
|
236
|
-
oldQuorumNumerator: bigint,
|
|
237
|
-
newQuorumNumerator: bigint
|
|
238
|
-
];
|
|
239
|
-
interface OutputObject {
|
|
240
|
-
oldQuorumNumerator: bigint;
|
|
241
|
-
newQuorumNumerator: bigint;
|
|
242
|
-
}
|
|
243
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
244
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
245
|
-
type Log = TypedEventLog<Event>;
|
|
246
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
247
|
-
}
|
|
248
|
-
export declare namespace TargetSetEvent {
|
|
249
|
-
type InputTuple = [
|
|
250
|
-
previousTarget: AddressLike,
|
|
251
|
-
newTarget: AddressLike
|
|
252
|
-
];
|
|
253
|
-
type OutputTuple = [previousTarget: string, newTarget: string];
|
|
254
|
-
interface OutputObject {
|
|
255
|
-
previousTarget: string;
|
|
256
|
-
newTarget: string;
|
|
257
|
-
}
|
|
258
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
259
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
260
|
-
type Log = TypedEventLog<Event>;
|
|
261
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
262
|
-
}
|
|
263
|
-
export declare namespace VoteCastEvent {
|
|
264
|
-
type InputTuple = [
|
|
265
|
-
voter: AddressLike,
|
|
266
|
-
proposalId: BigNumberish,
|
|
267
|
-
support: BigNumberish,
|
|
268
|
-
weight: BigNumberish,
|
|
269
|
-
reason: string
|
|
270
|
-
];
|
|
271
|
-
type OutputTuple = [
|
|
272
|
-
voter: string,
|
|
273
|
-
proposalId: bigint,
|
|
274
|
-
support: bigint,
|
|
275
|
-
weight: bigint,
|
|
276
|
-
reason: string
|
|
277
|
-
];
|
|
278
|
-
interface OutputObject {
|
|
279
|
-
voter: string;
|
|
280
|
-
proposalId: bigint;
|
|
281
|
-
support: bigint;
|
|
282
|
-
weight: bigint;
|
|
283
|
-
reason: string;
|
|
284
|
-
}
|
|
285
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
286
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
287
|
-
type Log = TypedEventLog<Event>;
|
|
288
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
289
|
-
}
|
|
290
|
-
export declare namespace VotingDelaySetEvent {
|
|
291
|
-
type InputTuple = [
|
|
292
|
-
oldVotingDelay: BigNumberish,
|
|
293
|
-
newVotingDelay: BigNumberish
|
|
294
|
-
];
|
|
295
|
-
type OutputTuple = [oldVotingDelay: bigint, newVotingDelay: bigint];
|
|
296
|
-
interface OutputObject {
|
|
297
|
-
oldVotingDelay: bigint;
|
|
298
|
-
newVotingDelay: bigint;
|
|
299
|
-
}
|
|
300
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
301
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
302
|
-
type Log = TypedEventLog<Event>;
|
|
303
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
304
|
-
}
|
|
305
|
-
export declare namespace VotingPeriodSetEvent {
|
|
306
|
-
type InputTuple = [
|
|
307
|
-
oldVotingPeriod: BigNumberish,
|
|
308
|
-
newVotingPeriod: BigNumberish
|
|
309
|
-
];
|
|
310
|
-
type OutputTuple = [oldVotingPeriod: bigint, newVotingPeriod: bigint];
|
|
311
|
-
interface OutputObject {
|
|
312
|
-
oldVotingPeriod: bigint;
|
|
313
|
-
newVotingPeriod: bigint;
|
|
314
|
-
}
|
|
315
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
316
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
317
|
-
type Log = TypedEventLog<Event>;
|
|
318
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
319
|
-
}
|
|
320
|
-
export interface OzGovernor extends BaseContract {
|
|
321
|
-
connect(runner?: ContractRunner | null): OzGovernor;
|
|
322
|
-
waitForDeployment(): Promise<this>;
|
|
323
|
-
interface: OzGovernorInterface;
|
|
324
|
-
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
325
|
-
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
326
|
-
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
327
|
-
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
328
|
-
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
329
|
-
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
330
|
-
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
|
331
|
-
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
332
|
-
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
333
|
-
BALLOT_TYPEHASH: TypedContractMethod<[], [string], "view">;
|
|
334
|
-
COUNTING_MODE: TypedContractMethod<[], [string], "view">;
|
|
335
|
-
castVote: TypedContractMethod<[
|
|
336
|
-
proposalId: BigNumberish,
|
|
337
|
-
support: BigNumberish
|
|
338
|
-
], [
|
|
339
|
-
bigint
|
|
340
|
-
], "nonpayable">;
|
|
341
|
-
castVoteBySig: TypedContractMethod<[
|
|
342
|
-
proposalId: BigNumberish,
|
|
343
|
-
support: BigNumberish,
|
|
344
|
-
v: BigNumberish,
|
|
345
|
-
r: BytesLike,
|
|
346
|
-
s: BytesLike
|
|
347
|
-
], [
|
|
348
|
-
bigint
|
|
349
|
-
], "nonpayable">;
|
|
350
|
-
castVoteWithReason: TypedContractMethod<[
|
|
351
|
-
proposalId: BigNumberish,
|
|
352
|
-
support: BigNumberish,
|
|
353
|
-
reason: string
|
|
354
|
-
], [
|
|
355
|
-
bigint
|
|
356
|
-
], "nonpayable">;
|
|
357
|
-
execute: TypedContractMethod<[
|
|
358
|
-
targets: AddressLike[],
|
|
359
|
-
values: BigNumberish[],
|
|
360
|
-
calldatas: BytesLike[],
|
|
361
|
-
descriptionHash: BytesLike
|
|
362
|
-
], [
|
|
363
|
-
bigint
|
|
364
|
-
], "payable">;
|
|
365
|
-
getVotes: TypedContractMethod<[
|
|
366
|
-
account: AddressLike,
|
|
367
|
-
blockNumber: BigNumberish
|
|
368
|
-
], [
|
|
369
|
-
bigint
|
|
370
|
-
], "view">;
|
|
371
|
-
hasVoted: TypedContractMethod<[
|
|
372
|
-
proposalId: BigNumberish,
|
|
373
|
-
account: AddressLike
|
|
374
|
-
], [
|
|
375
|
-
boolean
|
|
376
|
-
], "view">;
|
|
377
|
-
hashProposal: TypedContractMethod<[
|
|
378
|
-
targets: AddressLike[],
|
|
379
|
-
values: BigNumberish[],
|
|
380
|
-
calldatas: BytesLike[],
|
|
381
|
-
descriptionHash: BytesLike
|
|
382
|
-
], [
|
|
383
|
-
bigint
|
|
384
|
-
], "view">;
|
|
385
|
-
lateQuorumVoteExtension: TypedContractMethod<[], [bigint], "view">;
|
|
386
|
-
multisend: TypedContractMethod<[], [string], "view">;
|
|
387
|
-
name: TypedContractMethod<[], [string], "view">;
|
|
388
|
-
owner: TypedContractMethod<[], [string], "view">;
|
|
389
|
-
proposalDeadline: TypedContractMethod<[
|
|
390
|
-
proposalId: BigNumberish
|
|
391
|
-
], [
|
|
392
|
-
bigint
|
|
393
|
-
], "view">;
|
|
394
|
-
proposalSnapshot: TypedContractMethod<[
|
|
395
|
-
proposalId: BigNumberish
|
|
396
|
-
], [
|
|
397
|
-
bigint
|
|
398
|
-
], "view">;
|
|
399
|
-
proposalThreshold: TypedContractMethod<[], [bigint], "view">;
|
|
400
|
-
proposalVotes: TypedContractMethod<[
|
|
401
|
-
proposalId: BigNumberish
|
|
402
|
-
], [
|
|
403
|
-
[
|
|
404
|
-
bigint,
|
|
405
|
-
bigint,
|
|
406
|
-
bigint
|
|
407
|
-
] & {
|
|
408
|
-
againstVotes: bigint;
|
|
409
|
-
forVotes: bigint;
|
|
410
|
-
abstainVotes: bigint;
|
|
411
|
-
}
|
|
412
|
-
], "view">;
|
|
413
|
-
propose: TypedContractMethod<[
|
|
414
|
-
targets: AddressLike[],
|
|
415
|
-
values: BigNumberish[],
|
|
416
|
-
calldatas: BytesLike[],
|
|
417
|
-
description: string
|
|
418
|
-
], [
|
|
419
|
-
bigint
|
|
420
|
-
], "nonpayable">;
|
|
421
|
-
quorum: TypedContractMethod<[blockNumber: BigNumberish], [bigint], "view">;
|
|
422
|
-
quorumDenominator: TypedContractMethod<[], [bigint], "view">;
|
|
423
|
-
quorumNumerator: TypedContractMethod<[], [bigint], "view">;
|
|
424
|
-
relay: TypedContractMethod<[
|
|
425
|
-
target: AddressLike,
|
|
426
|
-
value: BigNumberish,
|
|
427
|
-
data: BytesLike
|
|
428
|
-
], [
|
|
429
|
-
void
|
|
430
|
-
], "nonpayable">;
|
|
431
|
-
setLateQuorumVoteExtension: TypedContractMethod<[
|
|
432
|
-
newVoteExtension: BigNumberish
|
|
433
|
-
], [
|
|
434
|
-
void
|
|
435
|
-
], "nonpayable">;
|
|
436
|
-
setMultisend: TypedContractMethod<[
|
|
437
|
-
_multisend: AddressLike
|
|
438
|
-
], [
|
|
439
|
-
void
|
|
440
|
-
], "nonpayable">;
|
|
441
|
-
setProposalThreshold: TypedContractMethod<[
|
|
442
|
-
newProposalThreshold: BigNumberish
|
|
443
|
-
], [
|
|
444
|
-
void
|
|
445
|
-
], "nonpayable">;
|
|
446
|
-
setTarget: TypedContractMethod<[_target: AddressLike], [void], "nonpayable">;
|
|
447
|
-
setUp: TypedContractMethod<[
|
|
448
|
-
initializeParams: BytesLike
|
|
449
|
-
], [
|
|
450
|
-
void
|
|
451
|
-
], "nonpayable">;
|
|
452
|
-
setVotingDelay: TypedContractMethod<[
|
|
453
|
-
newVotingDelay: BigNumberish
|
|
454
|
-
], [
|
|
455
|
-
void
|
|
456
|
-
], "nonpayable">;
|
|
457
|
-
setVotingPeriod: TypedContractMethod<[
|
|
458
|
-
newVotingPeriod: BigNumberish
|
|
459
|
-
], [
|
|
460
|
-
void
|
|
461
|
-
], "nonpayable">;
|
|
462
|
-
state: TypedContractMethod<[proposalId: BigNumberish], [bigint], "view">;
|
|
463
|
-
supportsInterface: TypedContractMethod<[
|
|
464
|
-
interfaceId: BytesLike
|
|
465
|
-
], [
|
|
466
|
-
boolean
|
|
467
|
-
], "view">;
|
|
468
|
-
token: TypedContractMethod<[], [string], "view">;
|
|
469
|
-
transferOwnership: TypedContractMethod<[
|
|
470
|
-
_owner: AddressLike
|
|
471
|
-
], [
|
|
472
|
-
void
|
|
473
|
-
], "nonpayable">;
|
|
474
|
-
updateQuorumNumerator: TypedContractMethod<[
|
|
475
|
-
newQuorumNumerator: BigNumberish
|
|
476
|
-
], [
|
|
477
|
-
void
|
|
478
|
-
], "nonpayable">;
|
|
479
|
-
version: TypedContractMethod<[], [string], "view">;
|
|
480
|
-
votingDelay: TypedContractMethod<[], [bigint], "view">;
|
|
481
|
-
votingPeriod: TypedContractMethod<[], [bigint], "view">;
|
|
482
|
-
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
483
|
-
getFunction(nameOrSignature: "BALLOT_TYPEHASH"): TypedContractMethod<[], [string], "view">;
|
|
484
|
-
getFunction(nameOrSignature: "COUNTING_MODE"): TypedContractMethod<[], [string], "view">;
|
|
485
|
-
getFunction(nameOrSignature: "castVote"): TypedContractMethod<[
|
|
486
|
-
proposalId: BigNumberish,
|
|
487
|
-
support: BigNumberish
|
|
488
|
-
], [
|
|
489
|
-
bigint
|
|
490
|
-
], "nonpayable">;
|
|
491
|
-
getFunction(nameOrSignature: "castVoteBySig"): TypedContractMethod<[
|
|
492
|
-
proposalId: BigNumberish,
|
|
493
|
-
support: BigNumberish,
|
|
494
|
-
v: BigNumberish,
|
|
495
|
-
r: BytesLike,
|
|
496
|
-
s: BytesLike
|
|
497
|
-
], [
|
|
498
|
-
bigint
|
|
499
|
-
], "nonpayable">;
|
|
500
|
-
getFunction(nameOrSignature: "castVoteWithReason"): TypedContractMethod<[
|
|
501
|
-
proposalId: BigNumberish,
|
|
502
|
-
support: BigNumberish,
|
|
503
|
-
reason: string
|
|
504
|
-
], [
|
|
505
|
-
bigint
|
|
506
|
-
], "nonpayable">;
|
|
507
|
-
getFunction(nameOrSignature: "execute"): TypedContractMethod<[
|
|
508
|
-
targets: AddressLike[],
|
|
509
|
-
values: BigNumberish[],
|
|
510
|
-
calldatas: BytesLike[],
|
|
511
|
-
descriptionHash: BytesLike
|
|
512
|
-
], [
|
|
513
|
-
bigint
|
|
514
|
-
], "payable">;
|
|
515
|
-
getFunction(nameOrSignature: "getVotes"): TypedContractMethod<[
|
|
516
|
-
account: AddressLike,
|
|
517
|
-
blockNumber: BigNumberish
|
|
518
|
-
], [
|
|
519
|
-
bigint
|
|
520
|
-
], "view">;
|
|
521
|
-
getFunction(nameOrSignature: "hasVoted"): TypedContractMethod<[
|
|
522
|
-
proposalId: BigNumberish,
|
|
523
|
-
account: AddressLike
|
|
524
|
-
], [
|
|
525
|
-
boolean
|
|
526
|
-
], "view">;
|
|
527
|
-
getFunction(nameOrSignature: "hashProposal"): TypedContractMethod<[
|
|
528
|
-
targets: AddressLike[],
|
|
529
|
-
values: BigNumberish[],
|
|
530
|
-
calldatas: BytesLike[],
|
|
531
|
-
descriptionHash: BytesLike
|
|
532
|
-
], [
|
|
533
|
-
bigint
|
|
534
|
-
], "view">;
|
|
535
|
-
getFunction(nameOrSignature: "lateQuorumVoteExtension"): TypedContractMethod<[], [bigint], "view">;
|
|
536
|
-
getFunction(nameOrSignature: "multisend"): TypedContractMethod<[], [string], "view">;
|
|
537
|
-
getFunction(nameOrSignature: "name"): TypedContractMethod<[], [string], "view">;
|
|
538
|
-
getFunction(nameOrSignature: "owner"): TypedContractMethod<[], [string], "view">;
|
|
539
|
-
getFunction(nameOrSignature: "proposalDeadline"): TypedContractMethod<[proposalId: BigNumberish], [bigint], "view">;
|
|
540
|
-
getFunction(nameOrSignature: "proposalSnapshot"): TypedContractMethod<[proposalId: BigNumberish], [bigint], "view">;
|
|
541
|
-
getFunction(nameOrSignature: "proposalThreshold"): TypedContractMethod<[], [bigint], "view">;
|
|
542
|
-
getFunction(nameOrSignature: "proposalVotes"): TypedContractMethod<[
|
|
543
|
-
proposalId: BigNumberish
|
|
544
|
-
], [
|
|
545
|
-
[
|
|
546
|
-
bigint,
|
|
547
|
-
bigint,
|
|
548
|
-
bigint
|
|
549
|
-
] & {
|
|
550
|
-
againstVotes: bigint;
|
|
551
|
-
forVotes: bigint;
|
|
552
|
-
abstainVotes: bigint;
|
|
553
|
-
}
|
|
554
|
-
], "view">;
|
|
555
|
-
getFunction(nameOrSignature: "propose"): TypedContractMethod<[
|
|
556
|
-
targets: AddressLike[],
|
|
557
|
-
values: BigNumberish[],
|
|
558
|
-
calldatas: BytesLike[],
|
|
559
|
-
description: string
|
|
560
|
-
], [
|
|
561
|
-
bigint
|
|
562
|
-
], "nonpayable">;
|
|
563
|
-
getFunction(nameOrSignature: "quorum"): TypedContractMethod<[blockNumber: BigNumberish], [bigint], "view">;
|
|
564
|
-
getFunction(nameOrSignature: "quorumDenominator"): TypedContractMethod<[], [bigint], "view">;
|
|
565
|
-
getFunction(nameOrSignature: "quorumNumerator"): TypedContractMethod<[], [bigint], "view">;
|
|
566
|
-
getFunction(nameOrSignature: "relay"): TypedContractMethod<[
|
|
567
|
-
target: AddressLike,
|
|
568
|
-
value: BigNumberish,
|
|
569
|
-
data: BytesLike
|
|
570
|
-
], [
|
|
571
|
-
void
|
|
572
|
-
], "nonpayable">;
|
|
573
|
-
getFunction(nameOrSignature: "setLateQuorumVoteExtension"): TypedContractMethod<[
|
|
574
|
-
newVoteExtension: BigNumberish
|
|
575
|
-
], [
|
|
576
|
-
void
|
|
577
|
-
], "nonpayable">;
|
|
578
|
-
getFunction(nameOrSignature: "setMultisend"): TypedContractMethod<[_multisend: AddressLike], [void], "nonpayable">;
|
|
579
|
-
getFunction(nameOrSignature: "setProposalThreshold"): TypedContractMethod<[
|
|
580
|
-
newProposalThreshold: BigNumberish
|
|
581
|
-
], [
|
|
582
|
-
void
|
|
583
|
-
], "nonpayable">;
|
|
584
|
-
getFunction(nameOrSignature: "setTarget"): TypedContractMethod<[_target: AddressLike], [void], "nonpayable">;
|
|
585
|
-
getFunction(nameOrSignature: "setUp"): TypedContractMethod<[initializeParams: BytesLike], [void], "nonpayable">;
|
|
586
|
-
getFunction(nameOrSignature: "setVotingDelay"): TypedContractMethod<[newVotingDelay: BigNumberish], [void], "nonpayable">;
|
|
587
|
-
getFunction(nameOrSignature: "setVotingPeriod"): TypedContractMethod<[newVotingPeriod: BigNumberish], [void], "nonpayable">;
|
|
588
|
-
getFunction(nameOrSignature: "state"): TypedContractMethod<[proposalId: BigNumberish], [bigint], "view">;
|
|
589
|
-
getFunction(nameOrSignature: "supportsInterface"): TypedContractMethod<[interfaceId: BytesLike], [boolean], "view">;
|
|
590
|
-
getFunction(nameOrSignature: "target"): TypedContractMethod<[], [string], "view">;
|
|
591
|
-
getFunction(nameOrSignature: "token"): TypedContractMethod<[], [string], "view">;
|
|
592
|
-
getFunction(nameOrSignature: "transferOwnership"): TypedContractMethod<[_owner: AddressLike], [void], "nonpayable">;
|
|
593
|
-
getFunction(nameOrSignature: "updateQuorumNumerator"): TypedContractMethod<[
|
|
594
|
-
newQuorumNumerator: BigNumberish
|
|
595
|
-
], [
|
|
596
|
-
void
|
|
597
|
-
], "nonpayable">;
|
|
598
|
-
getFunction(nameOrSignature: "version"): TypedContractMethod<[], [string], "view">;
|
|
599
|
-
getFunction(nameOrSignature: "votingDelay"): TypedContractMethod<[], [bigint], "view">;
|
|
600
|
-
getFunction(nameOrSignature: "votingPeriod"): TypedContractMethod<[], [bigint], "view">;
|
|
601
|
-
getEvent(key: "LateQuorumVoteExtensionSet"): TypedContractEvent<LateQuorumVoteExtensionSetEvent.InputTuple, LateQuorumVoteExtensionSetEvent.OutputTuple, LateQuorumVoteExtensionSetEvent.OutputObject>;
|
|
602
|
-
getEvent(key: "MultisendSet"): TypedContractEvent<MultisendSetEvent.InputTuple, MultisendSetEvent.OutputTuple, MultisendSetEvent.OutputObject>;
|
|
603
|
-
getEvent(key: "OZGovernorModuleSetUp"): TypedContractEvent<OZGovernorModuleSetUpEvent.InputTuple, OZGovernorModuleSetUpEvent.OutputTuple, OZGovernorModuleSetUpEvent.OutputObject>;
|
|
604
|
-
getEvent(key: "OwnershipTransferred"): TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
605
|
-
getEvent(key: "ProposalCanceled"): TypedContractEvent<ProposalCanceledEvent.InputTuple, ProposalCanceledEvent.OutputTuple, ProposalCanceledEvent.OutputObject>;
|
|
606
|
-
getEvent(key: "ProposalCreated"): TypedContractEvent<ProposalCreatedEvent.InputTuple, ProposalCreatedEvent.OutputTuple, ProposalCreatedEvent.OutputObject>;
|
|
607
|
-
getEvent(key: "ProposalExecuted"): TypedContractEvent<ProposalExecutedEvent.InputTuple, ProposalExecutedEvent.OutputTuple, ProposalExecutedEvent.OutputObject>;
|
|
608
|
-
getEvent(key: "ProposalExtended"): TypedContractEvent<ProposalExtendedEvent.InputTuple, ProposalExtendedEvent.OutputTuple, ProposalExtendedEvent.OutputObject>;
|
|
609
|
-
getEvent(key: "ProposalThresholdSet"): TypedContractEvent<ProposalThresholdSetEvent.InputTuple, ProposalThresholdSetEvent.OutputTuple, ProposalThresholdSetEvent.OutputObject>;
|
|
610
|
-
getEvent(key: "QuorumNumeratorUpdated"): TypedContractEvent<QuorumNumeratorUpdatedEvent.InputTuple, QuorumNumeratorUpdatedEvent.OutputTuple, QuorumNumeratorUpdatedEvent.OutputObject>;
|
|
611
|
-
getEvent(key: "TargetSet"): TypedContractEvent<TargetSetEvent.InputTuple, TargetSetEvent.OutputTuple, TargetSetEvent.OutputObject>;
|
|
612
|
-
getEvent(key: "VoteCast"): TypedContractEvent<VoteCastEvent.InputTuple, VoteCastEvent.OutputTuple, VoteCastEvent.OutputObject>;
|
|
613
|
-
getEvent(key: "VotingDelaySet"): TypedContractEvent<VotingDelaySetEvent.InputTuple, VotingDelaySetEvent.OutputTuple, VotingDelaySetEvent.OutputObject>;
|
|
614
|
-
getEvent(key: "VotingPeriodSet"): TypedContractEvent<VotingPeriodSetEvent.InputTuple, VotingPeriodSetEvent.OutputTuple, VotingPeriodSetEvent.OutputObject>;
|
|
615
|
-
filters: {
|
|
616
|
-
"LateQuorumVoteExtensionSet(uint64,uint64)": TypedContractEvent<LateQuorumVoteExtensionSetEvent.InputTuple, LateQuorumVoteExtensionSetEvent.OutputTuple, LateQuorumVoteExtensionSetEvent.OutputObject>;
|
|
617
|
-
LateQuorumVoteExtensionSet: TypedContractEvent<LateQuorumVoteExtensionSetEvent.InputTuple, LateQuorumVoteExtensionSetEvent.OutputTuple, LateQuorumVoteExtensionSetEvent.OutputObject>;
|
|
618
|
-
"MultisendSet(address)": TypedContractEvent<MultisendSetEvent.InputTuple, MultisendSetEvent.OutputTuple, MultisendSetEvent.OutputObject>;
|
|
619
|
-
MultisendSet: TypedContractEvent<MultisendSetEvent.InputTuple, MultisendSetEvent.OutputTuple, MultisendSetEvent.OutputObject>;
|
|
620
|
-
"OZGovernorModuleSetUp(address,address)": TypedContractEvent<OZGovernorModuleSetUpEvent.InputTuple, OZGovernorModuleSetUpEvent.OutputTuple, OZGovernorModuleSetUpEvent.OutputObject>;
|
|
621
|
-
OZGovernorModuleSetUp: TypedContractEvent<OZGovernorModuleSetUpEvent.InputTuple, OZGovernorModuleSetUpEvent.OutputTuple, OZGovernorModuleSetUpEvent.OutputObject>;
|
|
622
|
-
"OwnershipTransferred(address,address)": TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
623
|
-
OwnershipTransferred: TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
624
|
-
"ProposalCanceled(uint256)": TypedContractEvent<ProposalCanceledEvent.InputTuple, ProposalCanceledEvent.OutputTuple, ProposalCanceledEvent.OutputObject>;
|
|
625
|
-
ProposalCanceled: TypedContractEvent<ProposalCanceledEvent.InputTuple, ProposalCanceledEvent.OutputTuple, ProposalCanceledEvent.OutputObject>;
|
|
626
|
-
"ProposalCreated(uint256,address,address[],uint256[],string[],bytes[],uint256,uint256,string)": TypedContractEvent<ProposalCreatedEvent.InputTuple, ProposalCreatedEvent.OutputTuple, ProposalCreatedEvent.OutputObject>;
|
|
627
|
-
ProposalCreated: TypedContractEvent<ProposalCreatedEvent.InputTuple, ProposalCreatedEvent.OutputTuple, ProposalCreatedEvent.OutputObject>;
|
|
628
|
-
"ProposalExecuted(uint256)": TypedContractEvent<ProposalExecutedEvent.InputTuple, ProposalExecutedEvent.OutputTuple, ProposalExecutedEvent.OutputObject>;
|
|
629
|
-
ProposalExecuted: TypedContractEvent<ProposalExecutedEvent.InputTuple, ProposalExecutedEvent.OutputTuple, ProposalExecutedEvent.OutputObject>;
|
|
630
|
-
"ProposalExtended(uint256,uint64)": TypedContractEvent<ProposalExtendedEvent.InputTuple, ProposalExtendedEvent.OutputTuple, ProposalExtendedEvent.OutputObject>;
|
|
631
|
-
ProposalExtended: TypedContractEvent<ProposalExtendedEvent.InputTuple, ProposalExtendedEvent.OutputTuple, ProposalExtendedEvent.OutputObject>;
|
|
632
|
-
"ProposalThresholdSet(uint256,uint256)": TypedContractEvent<ProposalThresholdSetEvent.InputTuple, ProposalThresholdSetEvent.OutputTuple, ProposalThresholdSetEvent.OutputObject>;
|
|
633
|
-
ProposalThresholdSet: TypedContractEvent<ProposalThresholdSetEvent.InputTuple, ProposalThresholdSetEvent.OutputTuple, ProposalThresholdSetEvent.OutputObject>;
|
|
634
|
-
"QuorumNumeratorUpdated(uint256,uint256)": TypedContractEvent<QuorumNumeratorUpdatedEvent.InputTuple, QuorumNumeratorUpdatedEvent.OutputTuple, QuorumNumeratorUpdatedEvent.OutputObject>;
|
|
635
|
-
QuorumNumeratorUpdated: TypedContractEvent<QuorumNumeratorUpdatedEvent.InputTuple, QuorumNumeratorUpdatedEvent.OutputTuple, QuorumNumeratorUpdatedEvent.OutputObject>;
|
|
636
|
-
"TargetSet(address,address)": TypedContractEvent<TargetSetEvent.InputTuple, TargetSetEvent.OutputTuple, TargetSetEvent.OutputObject>;
|
|
637
|
-
TargetSet: TypedContractEvent<TargetSetEvent.InputTuple, TargetSetEvent.OutputTuple, TargetSetEvent.OutputObject>;
|
|
638
|
-
"VoteCast(address,uint256,uint8,uint256,string)": TypedContractEvent<VoteCastEvent.InputTuple, VoteCastEvent.OutputTuple, VoteCastEvent.OutputObject>;
|
|
639
|
-
VoteCast: TypedContractEvent<VoteCastEvent.InputTuple, VoteCastEvent.OutputTuple, VoteCastEvent.OutputObject>;
|
|
640
|
-
"VotingDelaySet(uint256,uint256)": TypedContractEvent<VotingDelaySetEvent.InputTuple, VotingDelaySetEvent.OutputTuple, VotingDelaySetEvent.OutputObject>;
|
|
641
|
-
VotingDelaySet: TypedContractEvent<VotingDelaySetEvent.InputTuple, VotingDelaySetEvent.OutputTuple, VotingDelaySetEvent.OutputObject>;
|
|
642
|
-
"VotingPeriodSet(uint256,uint256)": TypedContractEvent<VotingPeriodSetEvent.InputTuple, VotingPeriodSetEvent.OutputTuple, VotingPeriodSetEvent.OutputObject>;
|
|
643
|
-
VotingPeriodSet: TypedContractEvent<VotingPeriodSetEvent.InputTuple, VotingPeriodSetEvent.OutputTuple, VotingPeriodSetEvent.OutputObject>;
|
|
644
|
-
};
|
|
645
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|