televerse-dao-typechain-types 1.0.5 → 1.0.6-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +18 -6
- package/typechain-types/@openzeppelin/contracts/access/AccessControl.d.ts +159 -0
- package/typechain-types/@openzeppelin/contracts/access/IAccessControl.d.ts +147 -0
- package/typechain-types/@openzeppelin/contracts/access/Ownable.d.ts +54 -0
- package/typechain-types/@openzeppelin/contracts/access/index.d.ts +3 -0
- package/typechain-types/@openzeppelin/contracts/governance/Governor.d.ts +635 -0
- package/typechain-types/@openzeppelin/contracts/governance/IGovernor.d.ts +488 -0
- package/typechain-types/@openzeppelin/contracts/governance/TimelockController.d.ts +526 -0
- package/typechain-types/@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.d.ts +663 -0
- package/typechain-types/@openzeppelin/contracts/governance/extensions/GovernorSettings.d.ts +720 -0
- package/typechain-types/@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.d.ts +662 -0
- package/typechain-types/@openzeppelin/contracts/governance/extensions/GovernorVotes.d.ts +639 -0
- package/typechain-types/@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.d.ts +688 -0
- package/typechain-types/@openzeppelin/contracts/governance/extensions/index.d.ts +5 -0
- package/typechain-types/@openzeppelin/contracts/governance/index.d.ts +7 -0
- package/typechain-types/@openzeppelin/contracts/governance/utils/IVotes.d.ts +134 -0
- package/typechain-types/@openzeppelin/contracts/governance/utils/Votes.d.ts +201 -0
- package/typechain-types/@openzeppelin/contracts/governance/utils/index.d.ts +2 -0
- package/typechain-types/@openzeppelin/contracts/index.d.ts +10 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/IERC1271.d.ts +35 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/IERC3156FlashBorrower.d.ts +41 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/IERC3156FlashLender.d.ts +57 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/IERC4906.d.ts +231 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/IERC5267.d.ts +78 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/IERC5805.d.ts +142 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/IERC6372.d.ts +29 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +3 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +9 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC1155/ERC1155.d.ts +236 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC1155/IERC1155.d.ts +232 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.d.ts +75 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.d.ts +268 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Pausable.d.ts +268 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.d.ts +252 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.d.ts +236 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC1155/extensions/index.d.ts +4 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC1155/index.d.ts +7 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.d.ts +75 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC1155/utils/index.d.ts +1 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/ERC20.d.ts +141 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/IERC20.d.ts +129 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.d.ts +159 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20FlashMint.d.ts +177 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.d.ts +173 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.d.ts +236 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.d.ts +347 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.d.ts +141 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.d.ts +61 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +7 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/index.d.ts +6 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +1 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/ERC721.d.ts +211 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721.d.ts +199 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721Receiver.d.ts +39 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.d.ts +215 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.d.ts +233 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.d.ts +243 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.d.ts +243 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.d.ts +221 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.d.ts +211 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +6 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/index.d.ts +7 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.d.ts +39 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +1 -0
- package/typechain-types/@openzeppelin/contracts/token/index.d.ts +6 -0
- package/typechain-types/@openzeppelin/contracts/utils/Address.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/utils/Nonces.d.ts +25 -0
- package/typechain-types/@openzeppelin/contracts/utils/Pausable.d.ts +55 -0
- package/typechain-types/@openzeppelin/contracts/utils/ReentrancyGuard.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/utils/ShortStrings.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/utils/Strings.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/utils/cryptography/ECDSA.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/utils/cryptography/EIP712.d.ts +78 -0
- package/typechain-types/@openzeppelin/contracts/utils/cryptography/index.d.ts +2 -0
- package/typechain-types/@openzeppelin/contracts/utils/index.d.ts +14 -0
- package/typechain-types/@openzeppelin/contracts/utils/introspection/ERC165.d.ts +29 -0
- package/typechain-types/@openzeppelin/contracts/utils/introspection/IERC165.d.ts +29 -0
- package/typechain-types/@openzeppelin/contracts/utils/introspection/index.d.ts +2 -0
- package/typechain-types/@openzeppelin/contracts/utils/math/Math.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/utils/math/SafeCast.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts +2 -0
- package/typechain-types/@openzeppelin/contracts/utils/structs/Checkpoints.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/utils/structs/DoubleEndedQueue.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/utils/structs/index.d.ts +2 -0
- package/typechain-types/@openzeppelin/index.d.ts +2 -0
- package/typechain-types/common.d.ts +50 -0
- package/typechain-types/contracts/index.d.ts +6 -0
- package/typechain-types/contracts/mocks/MockToken20.d.ts +522 -0
- package/typechain-types/contracts/mocks/MockToken202.d.ts +522 -0
- package/typechain-types/contracts/mocks/index.d.ts +2 -0
- package/typechain-types/contracts/televerse/CommitteeElection.d.ts +308 -0
- package/typechain-types/contracts/televerse/ContractService.d.ts +592 -0
- package/typechain-types/contracts/televerse/DummyGovToken.d.ts +383 -0
- package/typechain-types/contracts/televerse/Governance.d.ts +1175 -0
- package/typechain-types/contracts/televerse/Location.d.ts +267 -0
- package/typechain-types/contracts/televerse/TeleverseDaoToken.sol/TeleverseDAOToken.d.ts +313 -0
- package/typechain-types/contracts/televerse/TeleverseDaoToken.sol/index.d.ts +1 -0
- package/typechain-types/contracts/televerse/TeleverseToken.d.ts +607 -0
- package/typechain-types/contracts/televerse/index.d.ts +8 -0
- package/typechain-types/contracts/tokens/GovernanceToken.d.ts +446 -0
- package/typechain-types/contracts/tokens/Token1155.d.ts +395 -0
- package/typechain-types/contracts/tokens/Token20.d.ts +522 -0
- package/typechain-types/contracts/tokens/Token721.d.ts +349 -0
- package/typechain-types/contracts/tokens/index.d.ts +4 -0
- package/typechain-types/factories/@openzeppelin/contracts/access/AccessControl__factory.d.ts +181 -0
- package/typechain-types/factories/@openzeppelin/contracts/access/IAccessControl__factory.d.ts +157 -0
- package/typechain-types/factories/@openzeppelin/contracts/access/Ownable__factory.d.ts +64 -0
- package/typechain-types/factories/@openzeppelin/contracts/access/index.d.ts +3 -0
- package/typechain-types/factories/@openzeppelin/contracts/governance/Governor__factory.d.ts +1023 -0
- package/typechain-types/factories/@openzeppelin/contracts/governance/IGovernor__factory.d.ts +795 -0
- package/typechain-types/factories/@openzeppelin/contracts/governance/TimelockController__factory.d.ts +791 -0
- package/typechain-types/factories/@openzeppelin/contracts/governance/extensions/GovernorCountingSimple__factory.d.ts +1045 -0
- package/typechain-types/factories/@openzeppelin/contracts/governance/extensions/GovernorSettings__factory.d.ts +1098 -0
- package/typechain-types/factories/@openzeppelin/contracts/governance/extensions/GovernorTimelockControl__factory.d.ts +1058 -0
- package/typechain-types/factories/@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction__factory.d.ts +1108 -0
- package/typechain-types/factories/@openzeppelin/contracts/governance/extensions/GovernorVotes__factory.d.ts +1033 -0
- package/typechain-types/factories/@openzeppelin/contracts/governance/extensions/index.d.ts +5 -0
- package/typechain-types/factories/@openzeppelin/contracts/governance/index.d.ts +5 -0
- package/typechain-types/factories/@openzeppelin/contracts/governance/utils/IVotes__factory.d.ts +155 -0
- package/typechain-types/factories/@openzeppelin/contracts/governance/utils/Votes__factory.d.ts +304 -0
- package/typechain-types/factories/@openzeppelin/contracts/governance/utils/index.d.ts +2 -0
- package/typechain-types/factories/@openzeppelin/contracts/index.d.ts +5 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1271__factory.d.ts +25 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC3156FlashBorrower__factory.d.ts +37 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC3156FlashLender__factory.d.ts +65 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC4906__factory.d.ts +252 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5267__factory.d.ts +46 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5805__factory.d.ts +175 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC6372__factory.d.ts +27 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors__factory.d.ts +83 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors__factory.d.ts +71 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors__factory.d.ts +83 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +3 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +8 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/ERC1155__factory.d.ts +326 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/IERC1155Receiver__factory.d.ts +81 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/IERC1155__factory.d.ts +236 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable__factory.d.ts +362 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Pausable__factory.d.ts +364 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply__factory.d.ts +364 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI__factory.d.ts +250 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/extensions/index.d.ts +4 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/index.d.ts +5 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder__factory.d.ts +81 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/utils/index.d.ts +1 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/ERC20__factory.d.ts +241 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.d.ts +147 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable__factory.d.ts +265 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20FlashMint__factory.d.ts +323 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable__factory.d.ts +279 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit__factory.d.ts +402 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes__factory.d.ts +591 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.d.ts +177 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit__factory.d.ts +65 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +7 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/index.d.ts +4 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +46 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +1 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/ERC721__factory.d.ts +337 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721Receiver__factory.d.ts +33 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721__factory.d.ts +227 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable__factory.d.ts +347 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable__factory.d.ts +395 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable__factory.d.ts +375 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage__factory.d.ts +362 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable__factory.d.ts +269 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata__factory.d.ts +261 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +6 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/index.d.ts +5 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder__factory.d.ts +33 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +1 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/index.d.ts +3 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +42 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/Nonces__factory.d.ts +33 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/Pausable__factory.d.ts +45 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/ReentrancyGuard__factory.d.ts +11 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +34 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +34 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +42 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/EIP712__factory.d.ts +58 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.d.ts +2 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts +10 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/introspection/ERC165__factory.d.ts +21 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.d.ts +21 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/introspection/index.d.ts +2 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/math/Math__factory.d.ts +26 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +62 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/math/index.d.ts +2 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/structs/Checkpoints__factory.d.ts +26 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/structs/DoubleEndedQueue__factory.d.ts +34 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/structs/index.d.ts +2 -0
- package/typechain-types/factories/@openzeppelin/index.d.ts +1 -0
- package/typechain-types/factories/contracts/index.d.ts +3 -0
- package/typechain-types/factories/contracts/mocks/MockToken202__factory.d.ts +921 -0
- package/typechain-types/factories/contracts/mocks/MockToken20__factory.d.ts +921 -0
- package/typechain-types/factories/contracts/mocks/index.d.ts +2 -0
- package/typechain-types/factories/contracts/televerse/CommitteeElection__factory.d.ts +407 -0
- package/typechain-types/factories/contracts/televerse/ContractService__factory.d.ts +896 -0
- package/typechain-types/factories/contracts/televerse/DummyGovToken__factory.d.ts +682 -0
- package/typechain-types/factories/contracts/televerse/Governance__factory.d.ts +1770 -0
- package/typechain-types/factories/contracts/televerse/Location__factory.d.ts +342 -0
- package/typechain-types/factories/contracts/televerse/TeleverseDaoToken.sol/TeleverseDAOToken__factory.d.ts +490 -0
- package/typechain-types/factories/contracts/televerse/TeleverseDaoToken.sol/index.d.ts +1 -0
- package/typechain-types/factories/contracts/televerse/TeleverseToken__factory.d.ts +889 -0
- package/typechain-types/factories/contracts/televerse/index.d.ts +7 -0
- package/typechain-types/factories/contracts/tokens/GovernanceToken__factory.d.ts +771 -0
- package/typechain-types/factories/contracts/tokens/Token1155__factory.d.ts +584 -0
- package/typechain-types/factories/contracts/tokens/Token20__factory.d.ts +913 -0
- package/typechain-types/factories/contracts/tokens/Token721__factory.d.ts +582 -0
- package/typechain-types/factories/contracts/tokens/index.d.ts +4 -0
- package/typechain-types/factories/index.d.ts +2 -0
- package/typechain-types/index.d.ts +161 -0
|
@@ -0,0 +1,1175 @@
|
|
|
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 declare namespace CommitteeElection {
|
|
4
|
+
type CandidateStruct = {
|
|
5
|
+
id: AddressLike;
|
|
6
|
+
votes: BigNumberish;
|
|
7
|
+
};
|
|
8
|
+
type CandidateStructOutput = [id: string, votes: bigint] & {
|
|
9
|
+
id: string;
|
|
10
|
+
votes: bigint;
|
|
11
|
+
};
|
|
12
|
+
type VoteStruct = {
|
|
13
|
+
candidates: AddressLike[];
|
|
14
|
+
weight: BigNumberish[];
|
|
15
|
+
};
|
|
16
|
+
type VoteStructOutput = [candidates: string[], weight: bigint[]] & {
|
|
17
|
+
candidates: string[];
|
|
18
|
+
weight: bigint[];
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
export interface GovernanceInterface extends Interface {
|
|
22
|
+
getFunction(nameOrSignature: "BALLOT_TYPEHASH" | "CLOCK_MODE" | "COUNTING_MODE" | "EXTENDED_BALLOT_TYPEHASH" | "ballotId" | "ballots" | "cancel" | "cancelLocation" | "castVote" | "castVoteBySig" | "castVoteWithReason" | "castVoteWithReasonAndParams" | "castVoteWithReasonAndParamsBySig" | "clock" | "committeeSize" | "createBallot" | "eip712Domain" | "elect" | "elected" | "execute" | "getCandidateAddresses" | "getCommittee" | "getElected" | "getVotes" | "getVotesWithParams" | "hasVoted" | "hashProposal" | "isCommitteeMember" | "locationContractAddress" | "name" | "nominate" | "nonces" | "onERC1155BatchReceived" | "onERC1155Received" | "onERC721Received" | "owner" | "proposalDeadline" | "proposalEta" | "proposalNeedsQueuing" | "proposalProposer" | "proposalSnapshot" | "proposalThreshold" | "proposalVotes" | "propose" | "proposeCommitteeVote" | "proposeLocation" | "queue" | "quorum" | "quorumDenominator" | "quorumNumerator(uint256)" | "quorumNumerator()" | "relay" | "renounceOwnership" | "setCommitteeSize" | "setLocationContractAddress" | "setProposalThreshold" | "setVotingDelay" | "setVotingPeriod" | "state" | "supportsInterface" | "televerseToken" | "ties" | "timelock" | "token" | "transferOwnership" | "updateQuorumNumerator" | "updateTimelock" | "version" | "vote" | "votingDelay" | "votingPeriod"): FunctionFragment;
|
|
23
|
+
getEvent(nameOrSignatureOrTopic: "BallotCreated" | "BallotFailed" | "BallotPassed" | "EIP712DomainChanged" | "OwnershipTransferred" | "ProposalCanceled" | "ProposalCreated" | "ProposalExecuted" | "ProposalQueued" | "ProposalThresholdSet" | "QuorumNumeratorUpdated" | "TimelockChange" | "VoteCast" | "VoteCastWithParams" | "VoteSubmitted" | "VotingDelaySet" | "VotingPeriodSet"): EventFragment;
|
|
24
|
+
encodeFunctionData(functionFragment: "BALLOT_TYPEHASH", values?: undefined): string;
|
|
25
|
+
encodeFunctionData(functionFragment: "CLOCK_MODE", values?: undefined): string;
|
|
26
|
+
encodeFunctionData(functionFragment: "COUNTING_MODE", values?: undefined): string;
|
|
27
|
+
encodeFunctionData(functionFragment: "EXTENDED_BALLOT_TYPEHASH", values?: undefined): string;
|
|
28
|
+
encodeFunctionData(functionFragment: "ballotId", values?: undefined): string;
|
|
29
|
+
encodeFunctionData(functionFragment: "ballots", values: [BigNumberish]): string;
|
|
30
|
+
encodeFunctionData(functionFragment: "cancel", values: [AddressLike[], BigNumberish[], BytesLike[], BytesLike]): string;
|
|
31
|
+
encodeFunctionData(functionFragment: "cancelLocation", values: [BytesLike, string]): string;
|
|
32
|
+
encodeFunctionData(functionFragment: "castVote", values: [BigNumberish, BigNumberish]): string;
|
|
33
|
+
encodeFunctionData(functionFragment: "castVoteBySig", values: [BigNumberish, BigNumberish, AddressLike, BytesLike]): string;
|
|
34
|
+
encodeFunctionData(functionFragment: "castVoteWithReason", values: [BigNumberish, BigNumberish, string]): string;
|
|
35
|
+
encodeFunctionData(functionFragment: "castVoteWithReasonAndParams", values: [BigNumberish, BigNumberish, string, BytesLike]): string;
|
|
36
|
+
encodeFunctionData(functionFragment: "castVoteWithReasonAndParamsBySig", values: [
|
|
37
|
+
BigNumberish,
|
|
38
|
+
BigNumberish,
|
|
39
|
+
AddressLike,
|
|
40
|
+
string,
|
|
41
|
+
BytesLike,
|
|
42
|
+
BytesLike
|
|
43
|
+
]): string;
|
|
44
|
+
encodeFunctionData(functionFragment: "clock", values?: undefined): string;
|
|
45
|
+
encodeFunctionData(functionFragment: "committeeSize", values?: undefined): string;
|
|
46
|
+
encodeFunctionData(functionFragment: "createBallot", values: [boolean, BigNumberish, BigNumberish]): string;
|
|
47
|
+
encodeFunctionData(functionFragment: "eip712Domain", values?: undefined): string;
|
|
48
|
+
encodeFunctionData(functionFragment: "elect", values?: undefined): string;
|
|
49
|
+
encodeFunctionData(functionFragment: "elected", values: [BigNumberish, BigNumberish]): string;
|
|
50
|
+
encodeFunctionData(functionFragment: "execute", values: [AddressLike[], BigNumberish[], BytesLike[], BytesLike]): string;
|
|
51
|
+
encodeFunctionData(functionFragment: "getCandidateAddresses", values?: undefined): string;
|
|
52
|
+
encodeFunctionData(functionFragment: "getCommittee", values?: undefined): string;
|
|
53
|
+
encodeFunctionData(functionFragment: "getElected", values: [BigNumberish]): string;
|
|
54
|
+
encodeFunctionData(functionFragment: "getVotes", values: [AddressLike, BigNumberish]): string;
|
|
55
|
+
encodeFunctionData(functionFragment: "getVotesWithParams", values: [AddressLike, BigNumberish, BytesLike]): string;
|
|
56
|
+
encodeFunctionData(functionFragment: "hasVoted", values: [BigNumberish, AddressLike]): string;
|
|
57
|
+
encodeFunctionData(functionFragment: "hashProposal", values: [AddressLike[], BigNumberish[], BytesLike[], BytesLike]): string;
|
|
58
|
+
encodeFunctionData(functionFragment: "isCommitteeMember", values: [AddressLike]): string;
|
|
59
|
+
encodeFunctionData(functionFragment: "locationContractAddress", values?: undefined): string;
|
|
60
|
+
encodeFunctionData(functionFragment: "name", values?: undefined): string;
|
|
61
|
+
encodeFunctionData(functionFragment: "nominate", values: [AddressLike]): string;
|
|
62
|
+
encodeFunctionData(functionFragment: "nonces", values: [AddressLike]): string;
|
|
63
|
+
encodeFunctionData(functionFragment: "onERC1155BatchReceived", values: [
|
|
64
|
+
AddressLike,
|
|
65
|
+
AddressLike,
|
|
66
|
+
BigNumberish[],
|
|
67
|
+
BigNumberish[],
|
|
68
|
+
BytesLike
|
|
69
|
+
]): string;
|
|
70
|
+
encodeFunctionData(functionFragment: "onERC1155Received", values: [AddressLike, AddressLike, BigNumberish, BigNumberish, BytesLike]): string;
|
|
71
|
+
encodeFunctionData(functionFragment: "onERC721Received", values: [AddressLike, AddressLike, BigNumberish, BytesLike]): string;
|
|
72
|
+
encodeFunctionData(functionFragment: "owner", values?: undefined): string;
|
|
73
|
+
encodeFunctionData(functionFragment: "proposalDeadline", values: [BigNumberish]): string;
|
|
74
|
+
encodeFunctionData(functionFragment: "proposalEta", values: [BigNumberish]): string;
|
|
75
|
+
encodeFunctionData(functionFragment: "proposalNeedsQueuing", values: [BigNumberish]): string;
|
|
76
|
+
encodeFunctionData(functionFragment: "proposalProposer", values: [BigNumberish]): string;
|
|
77
|
+
encodeFunctionData(functionFragment: "proposalSnapshot", values: [BigNumberish]): string;
|
|
78
|
+
encodeFunctionData(functionFragment: "proposalThreshold", values?: undefined): string;
|
|
79
|
+
encodeFunctionData(functionFragment: "proposalVotes", values: [BigNumberish]): string;
|
|
80
|
+
encodeFunctionData(functionFragment: "propose", values: [AddressLike[], BigNumberish[], BytesLike[], string]): string;
|
|
81
|
+
encodeFunctionData(functionFragment: "proposeCommitteeVote", values: [AddressLike[], BigNumberish[], BytesLike[], string]): string;
|
|
82
|
+
encodeFunctionData(functionFragment: "proposeLocation", values: [BytesLike, string]): string;
|
|
83
|
+
encodeFunctionData(functionFragment: "queue", values: [AddressLike[], BigNumberish[], BytesLike[], BytesLike]): string;
|
|
84
|
+
encodeFunctionData(functionFragment: "quorum", values: [BigNumberish]): string;
|
|
85
|
+
encodeFunctionData(functionFragment: "quorumDenominator", values?: undefined): string;
|
|
86
|
+
encodeFunctionData(functionFragment: "quorumNumerator(uint256)", values: [BigNumberish]): string;
|
|
87
|
+
encodeFunctionData(functionFragment: "quorumNumerator()", values?: undefined): string;
|
|
88
|
+
encodeFunctionData(functionFragment: "relay", values: [AddressLike, BigNumberish, BytesLike]): string;
|
|
89
|
+
encodeFunctionData(functionFragment: "renounceOwnership", values?: undefined): string;
|
|
90
|
+
encodeFunctionData(functionFragment: "setCommitteeSize", values: [BigNumberish]): string;
|
|
91
|
+
encodeFunctionData(functionFragment: "setLocationContractAddress", values: [AddressLike]): string;
|
|
92
|
+
encodeFunctionData(functionFragment: "setProposalThreshold", values: [BigNumberish]): string;
|
|
93
|
+
encodeFunctionData(functionFragment: "setVotingDelay", values: [BigNumberish]): string;
|
|
94
|
+
encodeFunctionData(functionFragment: "setVotingPeriod", values: [BigNumberish]): string;
|
|
95
|
+
encodeFunctionData(functionFragment: "state", values: [BigNumberish]): string;
|
|
96
|
+
encodeFunctionData(functionFragment: "supportsInterface", values: [BytesLike]): string;
|
|
97
|
+
encodeFunctionData(functionFragment: "televerseToken", values?: undefined): string;
|
|
98
|
+
encodeFunctionData(functionFragment: "ties", values: [BigNumberish, BigNumberish]): string;
|
|
99
|
+
encodeFunctionData(functionFragment: "timelock", values?: undefined): string;
|
|
100
|
+
encodeFunctionData(functionFragment: "token", values?: undefined): string;
|
|
101
|
+
encodeFunctionData(functionFragment: "transferOwnership", values: [AddressLike]): string;
|
|
102
|
+
encodeFunctionData(functionFragment: "updateQuorumNumerator", values: [BigNumberish]): string;
|
|
103
|
+
encodeFunctionData(functionFragment: "updateTimelock", values: [AddressLike]): string;
|
|
104
|
+
encodeFunctionData(functionFragment: "version", values?: undefined): string;
|
|
105
|
+
encodeFunctionData(functionFragment: "vote", values: [CommitteeElection.VoteStruct]): string;
|
|
106
|
+
encodeFunctionData(functionFragment: "votingDelay", values?: undefined): string;
|
|
107
|
+
encodeFunctionData(functionFragment: "votingPeriod", values?: undefined): string;
|
|
108
|
+
decodeFunctionResult(functionFragment: "BALLOT_TYPEHASH", data: BytesLike): Result;
|
|
109
|
+
decodeFunctionResult(functionFragment: "CLOCK_MODE", data: BytesLike): Result;
|
|
110
|
+
decodeFunctionResult(functionFragment: "COUNTING_MODE", data: BytesLike): Result;
|
|
111
|
+
decodeFunctionResult(functionFragment: "EXTENDED_BALLOT_TYPEHASH", data: BytesLike): Result;
|
|
112
|
+
decodeFunctionResult(functionFragment: "ballotId", data: BytesLike): Result;
|
|
113
|
+
decodeFunctionResult(functionFragment: "ballots", data: BytesLike): Result;
|
|
114
|
+
decodeFunctionResult(functionFragment: "cancel", data: BytesLike): Result;
|
|
115
|
+
decodeFunctionResult(functionFragment: "cancelLocation", data: BytesLike): Result;
|
|
116
|
+
decodeFunctionResult(functionFragment: "castVote", data: BytesLike): Result;
|
|
117
|
+
decodeFunctionResult(functionFragment: "castVoteBySig", data: BytesLike): Result;
|
|
118
|
+
decodeFunctionResult(functionFragment: "castVoteWithReason", data: BytesLike): Result;
|
|
119
|
+
decodeFunctionResult(functionFragment: "castVoteWithReasonAndParams", data: BytesLike): Result;
|
|
120
|
+
decodeFunctionResult(functionFragment: "castVoteWithReasonAndParamsBySig", data: BytesLike): Result;
|
|
121
|
+
decodeFunctionResult(functionFragment: "clock", data: BytesLike): Result;
|
|
122
|
+
decodeFunctionResult(functionFragment: "committeeSize", data: BytesLike): Result;
|
|
123
|
+
decodeFunctionResult(functionFragment: "createBallot", data: BytesLike): Result;
|
|
124
|
+
decodeFunctionResult(functionFragment: "eip712Domain", data: BytesLike): Result;
|
|
125
|
+
decodeFunctionResult(functionFragment: "elect", data: BytesLike): Result;
|
|
126
|
+
decodeFunctionResult(functionFragment: "elected", data: BytesLike): Result;
|
|
127
|
+
decodeFunctionResult(functionFragment: "execute", data: BytesLike): Result;
|
|
128
|
+
decodeFunctionResult(functionFragment: "getCandidateAddresses", data: BytesLike): Result;
|
|
129
|
+
decodeFunctionResult(functionFragment: "getCommittee", data: BytesLike): Result;
|
|
130
|
+
decodeFunctionResult(functionFragment: "getElected", data: BytesLike): Result;
|
|
131
|
+
decodeFunctionResult(functionFragment: "getVotes", data: BytesLike): Result;
|
|
132
|
+
decodeFunctionResult(functionFragment: "getVotesWithParams", data: BytesLike): Result;
|
|
133
|
+
decodeFunctionResult(functionFragment: "hasVoted", data: BytesLike): Result;
|
|
134
|
+
decodeFunctionResult(functionFragment: "hashProposal", data: BytesLike): Result;
|
|
135
|
+
decodeFunctionResult(functionFragment: "isCommitteeMember", data: BytesLike): Result;
|
|
136
|
+
decodeFunctionResult(functionFragment: "locationContractAddress", data: BytesLike): Result;
|
|
137
|
+
decodeFunctionResult(functionFragment: "name", data: BytesLike): Result;
|
|
138
|
+
decodeFunctionResult(functionFragment: "nominate", data: BytesLike): Result;
|
|
139
|
+
decodeFunctionResult(functionFragment: "nonces", data: BytesLike): Result;
|
|
140
|
+
decodeFunctionResult(functionFragment: "onERC1155BatchReceived", data: BytesLike): Result;
|
|
141
|
+
decodeFunctionResult(functionFragment: "onERC1155Received", data: BytesLike): Result;
|
|
142
|
+
decodeFunctionResult(functionFragment: "onERC721Received", data: BytesLike): Result;
|
|
143
|
+
decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result;
|
|
144
|
+
decodeFunctionResult(functionFragment: "proposalDeadline", data: BytesLike): Result;
|
|
145
|
+
decodeFunctionResult(functionFragment: "proposalEta", data: BytesLike): Result;
|
|
146
|
+
decodeFunctionResult(functionFragment: "proposalNeedsQueuing", data: BytesLike): Result;
|
|
147
|
+
decodeFunctionResult(functionFragment: "proposalProposer", data: BytesLike): Result;
|
|
148
|
+
decodeFunctionResult(functionFragment: "proposalSnapshot", data: BytesLike): Result;
|
|
149
|
+
decodeFunctionResult(functionFragment: "proposalThreshold", data: BytesLike): Result;
|
|
150
|
+
decodeFunctionResult(functionFragment: "proposalVotes", data: BytesLike): Result;
|
|
151
|
+
decodeFunctionResult(functionFragment: "propose", data: BytesLike): Result;
|
|
152
|
+
decodeFunctionResult(functionFragment: "proposeCommitteeVote", data: BytesLike): Result;
|
|
153
|
+
decodeFunctionResult(functionFragment: "proposeLocation", data: BytesLike): Result;
|
|
154
|
+
decodeFunctionResult(functionFragment: "queue", data: BytesLike): Result;
|
|
155
|
+
decodeFunctionResult(functionFragment: "quorum", data: BytesLike): Result;
|
|
156
|
+
decodeFunctionResult(functionFragment: "quorumDenominator", data: BytesLike): Result;
|
|
157
|
+
decodeFunctionResult(functionFragment: "quorumNumerator(uint256)", data: BytesLike): Result;
|
|
158
|
+
decodeFunctionResult(functionFragment: "quorumNumerator()", data: BytesLike): Result;
|
|
159
|
+
decodeFunctionResult(functionFragment: "relay", data: BytesLike): Result;
|
|
160
|
+
decodeFunctionResult(functionFragment: "renounceOwnership", data: BytesLike): Result;
|
|
161
|
+
decodeFunctionResult(functionFragment: "setCommitteeSize", data: BytesLike): Result;
|
|
162
|
+
decodeFunctionResult(functionFragment: "setLocationContractAddress", data: BytesLike): Result;
|
|
163
|
+
decodeFunctionResult(functionFragment: "setProposalThreshold", data: BytesLike): Result;
|
|
164
|
+
decodeFunctionResult(functionFragment: "setVotingDelay", data: BytesLike): Result;
|
|
165
|
+
decodeFunctionResult(functionFragment: "setVotingPeriod", data: BytesLike): Result;
|
|
166
|
+
decodeFunctionResult(functionFragment: "state", data: BytesLike): Result;
|
|
167
|
+
decodeFunctionResult(functionFragment: "supportsInterface", data: BytesLike): Result;
|
|
168
|
+
decodeFunctionResult(functionFragment: "televerseToken", data: BytesLike): Result;
|
|
169
|
+
decodeFunctionResult(functionFragment: "ties", data: BytesLike): Result;
|
|
170
|
+
decodeFunctionResult(functionFragment: "timelock", data: BytesLike): Result;
|
|
171
|
+
decodeFunctionResult(functionFragment: "token", data: BytesLike): Result;
|
|
172
|
+
decodeFunctionResult(functionFragment: "transferOwnership", data: BytesLike): Result;
|
|
173
|
+
decodeFunctionResult(functionFragment: "updateQuorumNumerator", data: BytesLike): Result;
|
|
174
|
+
decodeFunctionResult(functionFragment: "updateTimelock", data: BytesLike): Result;
|
|
175
|
+
decodeFunctionResult(functionFragment: "version", data: BytesLike): Result;
|
|
176
|
+
decodeFunctionResult(functionFragment: "vote", data: BytesLike): Result;
|
|
177
|
+
decodeFunctionResult(functionFragment: "votingDelay", data: BytesLike): Result;
|
|
178
|
+
decodeFunctionResult(functionFragment: "votingPeriod", data: BytesLike): Result;
|
|
179
|
+
}
|
|
180
|
+
export declare namespace BallotCreatedEvent {
|
|
181
|
+
type InputTuple = [
|
|
182
|
+
fullElection: boolean,
|
|
183
|
+
nominationPeriod: BigNumberish,
|
|
184
|
+
votePeriod: BigNumberish
|
|
185
|
+
];
|
|
186
|
+
type OutputTuple = [
|
|
187
|
+
fullElection: boolean,
|
|
188
|
+
nominationPeriod: bigint,
|
|
189
|
+
votePeriod: bigint
|
|
190
|
+
];
|
|
191
|
+
interface OutputObject {
|
|
192
|
+
fullElection: boolean;
|
|
193
|
+
nominationPeriod: bigint;
|
|
194
|
+
votePeriod: bigint;
|
|
195
|
+
}
|
|
196
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
197
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
198
|
+
type Log = TypedEventLog<Event>;
|
|
199
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
200
|
+
}
|
|
201
|
+
export declare namespace BallotFailedEvent {
|
|
202
|
+
type InputTuple = [ballotId: BigNumberish];
|
|
203
|
+
type OutputTuple = [ballotId: bigint];
|
|
204
|
+
interface OutputObject {
|
|
205
|
+
ballotId: 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 BallotPassedEvent {
|
|
213
|
+
type InputTuple = [ballotId: BigNumberish];
|
|
214
|
+
type OutputTuple = [ballotId: bigint];
|
|
215
|
+
interface OutputObject {
|
|
216
|
+
ballotId: bigint;
|
|
217
|
+
}
|
|
218
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
219
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
220
|
+
type Log = TypedEventLog<Event>;
|
|
221
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
222
|
+
}
|
|
223
|
+
export declare namespace EIP712DomainChangedEvent {
|
|
224
|
+
type InputTuple = [];
|
|
225
|
+
type OutputTuple = [];
|
|
226
|
+
interface OutputObject {
|
|
227
|
+
}
|
|
228
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
229
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
230
|
+
type Log = TypedEventLog<Event>;
|
|
231
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
232
|
+
}
|
|
233
|
+
export declare namespace OwnershipTransferredEvent {
|
|
234
|
+
type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike];
|
|
235
|
+
type OutputTuple = [previousOwner: string, newOwner: string];
|
|
236
|
+
interface OutputObject {
|
|
237
|
+
previousOwner: string;
|
|
238
|
+
newOwner: string;
|
|
239
|
+
}
|
|
240
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
241
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
242
|
+
type Log = TypedEventLog<Event>;
|
|
243
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
244
|
+
}
|
|
245
|
+
export declare namespace ProposalCanceledEvent {
|
|
246
|
+
type InputTuple = [proposalId: BigNumberish];
|
|
247
|
+
type OutputTuple = [proposalId: bigint];
|
|
248
|
+
interface OutputObject {
|
|
249
|
+
proposalId: bigint;
|
|
250
|
+
}
|
|
251
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
252
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
253
|
+
type Log = TypedEventLog<Event>;
|
|
254
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
255
|
+
}
|
|
256
|
+
export declare namespace ProposalCreatedEvent {
|
|
257
|
+
type InputTuple = [
|
|
258
|
+
proposalId: BigNumberish,
|
|
259
|
+
proposer: AddressLike,
|
|
260
|
+
targets: AddressLike[],
|
|
261
|
+
values: BigNumberish[],
|
|
262
|
+
signatures: string[],
|
|
263
|
+
calldatas: BytesLike[],
|
|
264
|
+
voteStart: BigNumberish,
|
|
265
|
+
voteEnd: BigNumberish,
|
|
266
|
+
description: string
|
|
267
|
+
];
|
|
268
|
+
type OutputTuple = [
|
|
269
|
+
proposalId: bigint,
|
|
270
|
+
proposer: string,
|
|
271
|
+
targets: string[],
|
|
272
|
+
values: bigint[],
|
|
273
|
+
signatures: string[],
|
|
274
|
+
calldatas: string[],
|
|
275
|
+
voteStart: bigint,
|
|
276
|
+
voteEnd: bigint,
|
|
277
|
+
description: string
|
|
278
|
+
];
|
|
279
|
+
interface OutputObject {
|
|
280
|
+
proposalId: bigint;
|
|
281
|
+
proposer: string;
|
|
282
|
+
targets: string[];
|
|
283
|
+
values: bigint[];
|
|
284
|
+
signatures: string[];
|
|
285
|
+
calldatas: string[];
|
|
286
|
+
voteStart: bigint;
|
|
287
|
+
voteEnd: bigint;
|
|
288
|
+
description: string;
|
|
289
|
+
}
|
|
290
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
291
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
292
|
+
type Log = TypedEventLog<Event>;
|
|
293
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
294
|
+
}
|
|
295
|
+
export declare namespace ProposalExecutedEvent {
|
|
296
|
+
type InputTuple = [proposalId: BigNumberish];
|
|
297
|
+
type OutputTuple = [proposalId: bigint];
|
|
298
|
+
interface OutputObject {
|
|
299
|
+
proposalId: bigint;
|
|
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 ProposalQueuedEvent {
|
|
307
|
+
type InputTuple = [proposalId: BigNumberish, etaSeconds: BigNumberish];
|
|
308
|
+
type OutputTuple = [proposalId: bigint, etaSeconds: bigint];
|
|
309
|
+
interface OutputObject {
|
|
310
|
+
proposalId: bigint;
|
|
311
|
+
etaSeconds: bigint;
|
|
312
|
+
}
|
|
313
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
314
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
315
|
+
type Log = TypedEventLog<Event>;
|
|
316
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
317
|
+
}
|
|
318
|
+
export declare namespace ProposalThresholdSetEvent {
|
|
319
|
+
type InputTuple = [
|
|
320
|
+
oldProposalThreshold: BigNumberish,
|
|
321
|
+
newProposalThreshold: BigNumberish
|
|
322
|
+
];
|
|
323
|
+
type OutputTuple = [
|
|
324
|
+
oldProposalThreshold: bigint,
|
|
325
|
+
newProposalThreshold: bigint
|
|
326
|
+
];
|
|
327
|
+
interface OutputObject {
|
|
328
|
+
oldProposalThreshold: bigint;
|
|
329
|
+
newProposalThreshold: bigint;
|
|
330
|
+
}
|
|
331
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
332
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
333
|
+
type Log = TypedEventLog<Event>;
|
|
334
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
335
|
+
}
|
|
336
|
+
export declare namespace QuorumNumeratorUpdatedEvent {
|
|
337
|
+
type InputTuple = [
|
|
338
|
+
oldQuorumNumerator: BigNumberish,
|
|
339
|
+
newQuorumNumerator: BigNumberish
|
|
340
|
+
];
|
|
341
|
+
type OutputTuple = [
|
|
342
|
+
oldQuorumNumerator: bigint,
|
|
343
|
+
newQuorumNumerator: bigint
|
|
344
|
+
];
|
|
345
|
+
interface OutputObject {
|
|
346
|
+
oldQuorumNumerator: bigint;
|
|
347
|
+
newQuorumNumerator: bigint;
|
|
348
|
+
}
|
|
349
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
350
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
351
|
+
type Log = TypedEventLog<Event>;
|
|
352
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
353
|
+
}
|
|
354
|
+
export declare namespace TimelockChangeEvent {
|
|
355
|
+
type InputTuple = [oldTimelock: AddressLike, newTimelock: AddressLike];
|
|
356
|
+
type OutputTuple = [oldTimelock: string, newTimelock: string];
|
|
357
|
+
interface OutputObject {
|
|
358
|
+
oldTimelock: string;
|
|
359
|
+
newTimelock: string;
|
|
360
|
+
}
|
|
361
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
362
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
363
|
+
type Log = TypedEventLog<Event>;
|
|
364
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
365
|
+
}
|
|
366
|
+
export declare namespace VoteCastEvent {
|
|
367
|
+
type InputTuple = [
|
|
368
|
+
voter: AddressLike,
|
|
369
|
+
proposalId: BigNumberish,
|
|
370
|
+
support: BigNumberish,
|
|
371
|
+
weight: BigNumberish,
|
|
372
|
+
reason: string
|
|
373
|
+
];
|
|
374
|
+
type OutputTuple = [
|
|
375
|
+
voter: string,
|
|
376
|
+
proposalId: bigint,
|
|
377
|
+
support: bigint,
|
|
378
|
+
weight: bigint,
|
|
379
|
+
reason: string
|
|
380
|
+
];
|
|
381
|
+
interface OutputObject {
|
|
382
|
+
voter: string;
|
|
383
|
+
proposalId: bigint;
|
|
384
|
+
support: bigint;
|
|
385
|
+
weight: bigint;
|
|
386
|
+
reason: string;
|
|
387
|
+
}
|
|
388
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
389
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
390
|
+
type Log = TypedEventLog<Event>;
|
|
391
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
392
|
+
}
|
|
393
|
+
export declare namespace VoteCastWithParamsEvent {
|
|
394
|
+
type InputTuple = [
|
|
395
|
+
voter: AddressLike,
|
|
396
|
+
proposalId: BigNumberish,
|
|
397
|
+
support: BigNumberish,
|
|
398
|
+
weight: BigNumberish,
|
|
399
|
+
reason: string,
|
|
400
|
+
params: BytesLike
|
|
401
|
+
];
|
|
402
|
+
type OutputTuple = [
|
|
403
|
+
voter: string,
|
|
404
|
+
proposalId: bigint,
|
|
405
|
+
support: bigint,
|
|
406
|
+
weight: bigint,
|
|
407
|
+
reason: string,
|
|
408
|
+
params: string
|
|
409
|
+
];
|
|
410
|
+
interface OutputObject {
|
|
411
|
+
voter: string;
|
|
412
|
+
proposalId: bigint;
|
|
413
|
+
support: bigint;
|
|
414
|
+
weight: bigint;
|
|
415
|
+
reason: string;
|
|
416
|
+
params: string;
|
|
417
|
+
}
|
|
418
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
419
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
420
|
+
type Log = TypedEventLog<Event>;
|
|
421
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
422
|
+
}
|
|
423
|
+
export declare namespace VoteSubmittedEvent {
|
|
424
|
+
type InputTuple = [
|
|
425
|
+
voter: AddressLike,
|
|
426
|
+
candidates: AddressLike[],
|
|
427
|
+
weight: BigNumberish[]
|
|
428
|
+
];
|
|
429
|
+
type OutputTuple = [
|
|
430
|
+
voter: string,
|
|
431
|
+
candidates: string[],
|
|
432
|
+
weight: bigint[]
|
|
433
|
+
];
|
|
434
|
+
interface OutputObject {
|
|
435
|
+
voter: string;
|
|
436
|
+
candidates: string[];
|
|
437
|
+
weight: bigint[];
|
|
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 VotingDelaySetEvent {
|
|
445
|
+
type InputTuple = [
|
|
446
|
+
oldVotingDelay: BigNumberish,
|
|
447
|
+
newVotingDelay: BigNumberish
|
|
448
|
+
];
|
|
449
|
+
type OutputTuple = [oldVotingDelay: bigint, newVotingDelay: bigint];
|
|
450
|
+
interface OutputObject {
|
|
451
|
+
oldVotingDelay: bigint;
|
|
452
|
+
newVotingDelay: bigint;
|
|
453
|
+
}
|
|
454
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
455
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
456
|
+
type Log = TypedEventLog<Event>;
|
|
457
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
458
|
+
}
|
|
459
|
+
export declare namespace VotingPeriodSetEvent {
|
|
460
|
+
type InputTuple = [
|
|
461
|
+
oldVotingPeriod: BigNumberish,
|
|
462
|
+
newVotingPeriod: BigNumberish
|
|
463
|
+
];
|
|
464
|
+
type OutputTuple = [oldVotingPeriod: bigint, newVotingPeriod: bigint];
|
|
465
|
+
interface OutputObject {
|
|
466
|
+
oldVotingPeriod: bigint;
|
|
467
|
+
newVotingPeriod: bigint;
|
|
468
|
+
}
|
|
469
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
470
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
|
471
|
+
type Log = TypedEventLog<Event>;
|
|
472
|
+
type LogDescription = TypedLogDescription<Event>;
|
|
473
|
+
}
|
|
474
|
+
export interface Governance extends BaseContract {
|
|
475
|
+
connect(runner?: ContractRunner | null): Governance;
|
|
476
|
+
waitForDeployment(): Promise<this>;
|
|
477
|
+
interface: GovernanceInterface;
|
|
478
|
+
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
479
|
+
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
480
|
+
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
481
|
+
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
482
|
+
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
|
483
|
+
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
|
484
|
+
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
|
485
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
486
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
|
487
|
+
BALLOT_TYPEHASH: TypedContractMethod<[], [string], "view">;
|
|
488
|
+
CLOCK_MODE: TypedContractMethod<[], [string], "view">;
|
|
489
|
+
COUNTING_MODE: TypedContractMethod<[], [string], "view">;
|
|
490
|
+
EXTENDED_BALLOT_TYPEHASH: TypedContractMethod<[], [string], "view">;
|
|
491
|
+
ballotId: TypedContractMethod<[], [bigint], "view">;
|
|
492
|
+
ballots: TypedContractMethod<[
|
|
493
|
+
arg0: BigNumberish
|
|
494
|
+
], [
|
|
495
|
+
[
|
|
496
|
+
boolean,
|
|
497
|
+
bigint,
|
|
498
|
+
bigint,
|
|
499
|
+
bigint,
|
|
500
|
+
bigint
|
|
501
|
+
] & {
|
|
502
|
+
fullElection: boolean;
|
|
503
|
+
nominationPeriod: bigint;
|
|
504
|
+
votePeriod: bigint;
|
|
505
|
+
startTime: bigint;
|
|
506
|
+
status: bigint;
|
|
507
|
+
}
|
|
508
|
+
], "view">;
|
|
509
|
+
cancel: TypedContractMethod<[
|
|
510
|
+
targets: AddressLike[],
|
|
511
|
+
values: BigNumberish[],
|
|
512
|
+
calldatas: BytesLike[],
|
|
513
|
+
descriptionHash: BytesLike
|
|
514
|
+
], [
|
|
515
|
+
bigint
|
|
516
|
+
], "nonpayable">;
|
|
517
|
+
cancelLocation: TypedContractMethod<[
|
|
518
|
+
singleCalldata: BytesLike,
|
|
519
|
+
description: string
|
|
520
|
+
], [
|
|
521
|
+
bigint
|
|
522
|
+
], "nonpayable">;
|
|
523
|
+
castVote: TypedContractMethod<[
|
|
524
|
+
proposalId: BigNumberish,
|
|
525
|
+
support: BigNumberish
|
|
526
|
+
], [
|
|
527
|
+
bigint
|
|
528
|
+
], "nonpayable">;
|
|
529
|
+
castVoteBySig: TypedContractMethod<[
|
|
530
|
+
proposalId: BigNumberish,
|
|
531
|
+
support: BigNumberish,
|
|
532
|
+
voter: AddressLike,
|
|
533
|
+
signature: BytesLike
|
|
534
|
+
], [
|
|
535
|
+
bigint
|
|
536
|
+
], "nonpayable">;
|
|
537
|
+
castVoteWithReason: TypedContractMethod<[
|
|
538
|
+
proposalId: BigNumberish,
|
|
539
|
+
support: BigNumberish,
|
|
540
|
+
reason: string
|
|
541
|
+
], [
|
|
542
|
+
bigint
|
|
543
|
+
], "nonpayable">;
|
|
544
|
+
castVoteWithReasonAndParams: TypedContractMethod<[
|
|
545
|
+
proposalId: BigNumberish,
|
|
546
|
+
support: BigNumberish,
|
|
547
|
+
reason: string,
|
|
548
|
+
params: BytesLike
|
|
549
|
+
], [
|
|
550
|
+
bigint
|
|
551
|
+
], "nonpayable">;
|
|
552
|
+
castVoteWithReasonAndParamsBySig: TypedContractMethod<[
|
|
553
|
+
proposalId: BigNumberish,
|
|
554
|
+
support: BigNumberish,
|
|
555
|
+
voter: AddressLike,
|
|
556
|
+
reason: string,
|
|
557
|
+
params: BytesLike,
|
|
558
|
+
signature: BytesLike
|
|
559
|
+
], [
|
|
560
|
+
bigint
|
|
561
|
+
], "nonpayable">;
|
|
562
|
+
clock: TypedContractMethod<[], [bigint], "view">;
|
|
563
|
+
committeeSize: TypedContractMethod<[], [bigint], "view">;
|
|
564
|
+
createBallot: TypedContractMethod<[
|
|
565
|
+
fullElection: boolean,
|
|
566
|
+
nominationPeriod: BigNumberish,
|
|
567
|
+
votePeriod: BigNumberish
|
|
568
|
+
], [
|
|
569
|
+
void
|
|
570
|
+
], "nonpayable">;
|
|
571
|
+
eip712Domain: TypedContractMethod<[
|
|
572
|
+
], [
|
|
573
|
+
[
|
|
574
|
+
string,
|
|
575
|
+
string,
|
|
576
|
+
string,
|
|
577
|
+
bigint,
|
|
578
|
+
string,
|
|
579
|
+
string,
|
|
580
|
+
bigint[]
|
|
581
|
+
] & {
|
|
582
|
+
fields: string;
|
|
583
|
+
name: string;
|
|
584
|
+
version: string;
|
|
585
|
+
chainId: bigint;
|
|
586
|
+
verifyingContract: string;
|
|
587
|
+
salt: string;
|
|
588
|
+
extensions: bigint[];
|
|
589
|
+
}
|
|
590
|
+
], "view">;
|
|
591
|
+
elect: TypedContractMethod<[], [void], "nonpayable">;
|
|
592
|
+
elected: TypedContractMethod<[
|
|
593
|
+
arg0: BigNumberish,
|
|
594
|
+
arg1: BigNumberish
|
|
595
|
+
], [
|
|
596
|
+
[string, bigint] & {
|
|
597
|
+
id: string;
|
|
598
|
+
votes: bigint;
|
|
599
|
+
}
|
|
600
|
+
], "view">;
|
|
601
|
+
execute: TypedContractMethod<[
|
|
602
|
+
targets: AddressLike[],
|
|
603
|
+
values: BigNumberish[],
|
|
604
|
+
calldatas: BytesLike[],
|
|
605
|
+
descriptionHash: BytesLike
|
|
606
|
+
], [
|
|
607
|
+
bigint
|
|
608
|
+
], "payable">;
|
|
609
|
+
getCandidateAddresses: TypedContractMethod<[], [string[]], "view">;
|
|
610
|
+
getCommittee: TypedContractMethod<[], [string[]], "view">;
|
|
611
|
+
getElected: TypedContractMethod<[
|
|
612
|
+
_ballotId: BigNumberish
|
|
613
|
+
], [
|
|
614
|
+
CommitteeElection.CandidateStructOutput[]
|
|
615
|
+
], "view">;
|
|
616
|
+
getVotes: TypedContractMethod<[
|
|
617
|
+
account: AddressLike,
|
|
618
|
+
timepoint: BigNumberish
|
|
619
|
+
], [
|
|
620
|
+
bigint
|
|
621
|
+
], "view">;
|
|
622
|
+
getVotesWithParams: TypedContractMethod<[
|
|
623
|
+
account: AddressLike,
|
|
624
|
+
timepoint: BigNumberish,
|
|
625
|
+
params: BytesLike
|
|
626
|
+
], [
|
|
627
|
+
bigint
|
|
628
|
+
], "view">;
|
|
629
|
+
hasVoted: TypedContractMethod<[
|
|
630
|
+
proposalId: BigNumberish,
|
|
631
|
+
account: AddressLike
|
|
632
|
+
], [
|
|
633
|
+
boolean
|
|
634
|
+
], "view">;
|
|
635
|
+
hashProposal: TypedContractMethod<[
|
|
636
|
+
targets: AddressLike[],
|
|
637
|
+
values: BigNumberish[],
|
|
638
|
+
calldatas: BytesLike[],
|
|
639
|
+
descriptionHash: BytesLike
|
|
640
|
+
], [
|
|
641
|
+
bigint
|
|
642
|
+
], "view">;
|
|
643
|
+
isCommitteeMember: TypedContractMethod<[
|
|
644
|
+
account: AddressLike
|
|
645
|
+
], [
|
|
646
|
+
boolean
|
|
647
|
+
], "view">;
|
|
648
|
+
locationContractAddress: TypedContractMethod<[], [string], "view">;
|
|
649
|
+
name: TypedContractMethod<[], [string], "view">;
|
|
650
|
+
nominate: TypedContractMethod<[nominee: AddressLike], [void], "nonpayable">;
|
|
651
|
+
nonces: TypedContractMethod<[owner: AddressLike], [bigint], "view">;
|
|
652
|
+
onERC1155BatchReceived: TypedContractMethod<[
|
|
653
|
+
arg0: AddressLike,
|
|
654
|
+
arg1: AddressLike,
|
|
655
|
+
arg2: BigNumberish[],
|
|
656
|
+
arg3: BigNumberish[],
|
|
657
|
+
arg4: BytesLike
|
|
658
|
+
], [
|
|
659
|
+
string
|
|
660
|
+
], "nonpayable">;
|
|
661
|
+
onERC1155Received: TypedContractMethod<[
|
|
662
|
+
arg0: AddressLike,
|
|
663
|
+
arg1: AddressLike,
|
|
664
|
+
arg2: BigNumberish,
|
|
665
|
+
arg3: BigNumberish,
|
|
666
|
+
arg4: BytesLike
|
|
667
|
+
], [
|
|
668
|
+
string
|
|
669
|
+
], "nonpayable">;
|
|
670
|
+
onERC721Received: TypedContractMethod<[
|
|
671
|
+
arg0: AddressLike,
|
|
672
|
+
arg1: AddressLike,
|
|
673
|
+
arg2: BigNumberish,
|
|
674
|
+
arg3: BytesLike
|
|
675
|
+
], [
|
|
676
|
+
string
|
|
677
|
+
], "nonpayable">;
|
|
678
|
+
owner: TypedContractMethod<[], [string], "view">;
|
|
679
|
+
proposalDeadline: TypedContractMethod<[
|
|
680
|
+
proposalId: BigNumberish
|
|
681
|
+
], [
|
|
682
|
+
bigint
|
|
683
|
+
], "view">;
|
|
684
|
+
proposalEta: TypedContractMethod<[
|
|
685
|
+
proposalId: BigNumberish
|
|
686
|
+
], [
|
|
687
|
+
bigint
|
|
688
|
+
], "view">;
|
|
689
|
+
proposalNeedsQueuing: TypedContractMethod<[
|
|
690
|
+
proposalId: BigNumberish
|
|
691
|
+
], [
|
|
692
|
+
boolean
|
|
693
|
+
], "view">;
|
|
694
|
+
proposalProposer: TypedContractMethod<[
|
|
695
|
+
proposalId: BigNumberish
|
|
696
|
+
], [
|
|
697
|
+
string
|
|
698
|
+
], "view">;
|
|
699
|
+
proposalSnapshot: TypedContractMethod<[
|
|
700
|
+
proposalId: BigNumberish
|
|
701
|
+
], [
|
|
702
|
+
bigint
|
|
703
|
+
], "view">;
|
|
704
|
+
proposalThreshold: TypedContractMethod<[], [bigint], "view">;
|
|
705
|
+
proposalVotes: TypedContractMethod<[
|
|
706
|
+
proposalId: BigNumberish
|
|
707
|
+
], [
|
|
708
|
+
[
|
|
709
|
+
bigint,
|
|
710
|
+
bigint,
|
|
711
|
+
bigint
|
|
712
|
+
] & {
|
|
713
|
+
againstVotes: bigint;
|
|
714
|
+
forVotes: bigint;
|
|
715
|
+
abstainVotes: bigint;
|
|
716
|
+
}
|
|
717
|
+
], "view">;
|
|
718
|
+
propose: TypedContractMethod<[
|
|
719
|
+
arg0: AddressLike[],
|
|
720
|
+
arg1: BigNumberish[],
|
|
721
|
+
arg2: BytesLike[],
|
|
722
|
+
arg3: string
|
|
723
|
+
], [
|
|
724
|
+
bigint
|
|
725
|
+
], "nonpayable">;
|
|
726
|
+
proposeCommitteeVote: TypedContractMethod<[
|
|
727
|
+
targets: AddressLike[],
|
|
728
|
+
values: BigNumberish[],
|
|
729
|
+
calldatas: BytesLike[],
|
|
730
|
+
description: string
|
|
731
|
+
], [
|
|
732
|
+
bigint
|
|
733
|
+
], "nonpayable">;
|
|
734
|
+
proposeLocation: TypedContractMethod<[
|
|
735
|
+
singleCalldata: BytesLike,
|
|
736
|
+
description: string
|
|
737
|
+
], [
|
|
738
|
+
bigint
|
|
739
|
+
], "nonpayable">;
|
|
740
|
+
queue: TypedContractMethod<[
|
|
741
|
+
targets: AddressLike[],
|
|
742
|
+
values: BigNumberish[],
|
|
743
|
+
calldatas: BytesLike[],
|
|
744
|
+
descriptionHash: BytesLike
|
|
745
|
+
], [
|
|
746
|
+
bigint
|
|
747
|
+
], "nonpayable">;
|
|
748
|
+
quorum: TypedContractMethod<[blockNumber: BigNumberish], [bigint], "view">;
|
|
749
|
+
quorumDenominator: TypedContractMethod<[], [bigint], "view">;
|
|
750
|
+
"quorumNumerator(uint256)": TypedContractMethod<[
|
|
751
|
+
timepoint: BigNumberish
|
|
752
|
+
], [
|
|
753
|
+
bigint
|
|
754
|
+
], "view">;
|
|
755
|
+
"quorumNumerator()": TypedContractMethod<[], [bigint], "view">;
|
|
756
|
+
relay: TypedContractMethod<[
|
|
757
|
+
target: AddressLike,
|
|
758
|
+
value: BigNumberish,
|
|
759
|
+
data: BytesLike
|
|
760
|
+
], [
|
|
761
|
+
void
|
|
762
|
+
], "payable">;
|
|
763
|
+
renounceOwnership: TypedContractMethod<[], [void], "nonpayable">;
|
|
764
|
+
setCommitteeSize: TypedContractMethod<[
|
|
765
|
+
_committeeSize: BigNumberish
|
|
766
|
+
], [
|
|
767
|
+
void
|
|
768
|
+
], "nonpayable">;
|
|
769
|
+
setLocationContractAddress: TypedContractMethod<[
|
|
770
|
+
_locationContractAddress: AddressLike
|
|
771
|
+
], [
|
|
772
|
+
void
|
|
773
|
+
], "nonpayable">;
|
|
774
|
+
setProposalThreshold: TypedContractMethod<[
|
|
775
|
+
newProposalThreshold: BigNumberish
|
|
776
|
+
], [
|
|
777
|
+
void
|
|
778
|
+
], "nonpayable">;
|
|
779
|
+
setVotingDelay: TypedContractMethod<[
|
|
780
|
+
newVotingDelay: BigNumberish
|
|
781
|
+
], [
|
|
782
|
+
void
|
|
783
|
+
], "nonpayable">;
|
|
784
|
+
setVotingPeriod: TypedContractMethod<[
|
|
785
|
+
newVotingPeriod: BigNumberish
|
|
786
|
+
], [
|
|
787
|
+
void
|
|
788
|
+
], "nonpayable">;
|
|
789
|
+
state: TypedContractMethod<[proposalId: BigNumberish], [bigint], "view">;
|
|
790
|
+
supportsInterface: TypedContractMethod<[
|
|
791
|
+
interfaceId: BytesLike
|
|
792
|
+
], [
|
|
793
|
+
boolean
|
|
794
|
+
], "view">;
|
|
795
|
+
televerseToken: TypedContractMethod<[], [string], "view">;
|
|
796
|
+
ties: TypedContractMethod<[
|
|
797
|
+
arg0: BigNumberish,
|
|
798
|
+
arg1: BigNumberish
|
|
799
|
+
], [
|
|
800
|
+
[string, bigint] & {
|
|
801
|
+
id: string;
|
|
802
|
+
votes: bigint;
|
|
803
|
+
}
|
|
804
|
+
], "view">;
|
|
805
|
+
timelock: TypedContractMethod<[], [string], "view">;
|
|
806
|
+
token: TypedContractMethod<[], [string], "view">;
|
|
807
|
+
transferOwnership: TypedContractMethod<[
|
|
808
|
+
newOwner: AddressLike
|
|
809
|
+
], [
|
|
810
|
+
void
|
|
811
|
+
], "nonpayable">;
|
|
812
|
+
updateQuorumNumerator: TypedContractMethod<[
|
|
813
|
+
newQuorumNumerator: BigNumberish
|
|
814
|
+
], [
|
|
815
|
+
void
|
|
816
|
+
], "nonpayable">;
|
|
817
|
+
updateTimelock: TypedContractMethod<[
|
|
818
|
+
newTimelock: AddressLike
|
|
819
|
+
], [
|
|
820
|
+
void
|
|
821
|
+
], "nonpayable">;
|
|
822
|
+
version: TypedContractMethod<[], [string], "view">;
|
|
823
|
+
vote: TypedContractMethod<[
|
|
824
|
+
_vote: CommitteeElection.VoteStruct
|
|
825
|
+
], [
|
|
826
|
+
void
|
|
827
|
+
], "nonpayable">;
|
|
828
|
+
votingDelay: TypedContractMethod<[], [bigint], "view">;
|
|
829
|
+
votingPeriod: TypedContractMethod<[], [bigint], "view">;
|
|
830
|
+
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
|
831
|
+
getFunction(nameOrSignature: "BALLOT_TYPEHASH"): TypedContractMethod<[], [string], "view">;
|
|
832
|
+
getFunction(nameOrSignature: "CLOCK_MODE"): TypedContractMethod<[], [string], "view">;
|
|
833
|
+
getFunction(nameOrSignature: "COUNTING_MODE"): TypedContractMethod<[], [string], "view">;
|
|
834
|
+
getFunction(nameOrSignature: "EXTENDED_BALLOT_TYPEHASH"): TypedContractMethod<[], [string], "view">;
|
|
835
|
+
getFunction(nameOrSignature: "ballotId"): TypedContractMethod<[], [bigint], "view">;
|
|
836
|
+
getFunction(nameOrSignature: "ballots"): TypedContractMethod<[
|
|
837
|
+
arg0: BigNumberish
|
|
838
|
+
], [
|
|
839
|
+
[
|
|
840
|
+
boolean,
|
|
841
|
+
bigint,
|
|
842
|
+
bigint,
|
|
843
|
+
bigint,
|
|
844
|
+
bigint
|
|
845
|
+
] & {
|
|
846
|
+
fullElection: boolean;
|
|
847
|
+
nominationPeriod: bigint;
|
|
848
|
+
votePeriod: bigint;
|
|
849
|
+
startTime: bigint;
|
|
850
|
+
status: bigint;
|
|
851
|
+
}
|
|
852
|
+
], "view">;
|
|
853
|
+
getFunction(nameOrSignature: "cancel"): TypedContractMethod<[
|
|
854
|
+
targets: AddressLike[],
|
|
855
|
+
values: BigNumberish[],
|
|
856
|
+
calldatas: BytesLike[],
|
|
857
|
+
descriptionHash: BytesLike
|
|
858
|
+
], [
|
|
859
|
+
bigint
|
|
860
|
+
], "nonpayable">;
|
|
861
|
+
getFunction(nameOrSignature: "cancelLocation"): TypedContractMethod<[
|
|
862
|
+
singleCalldata: BytesLike,
|
|
863
|
+
description: string
|
|
864
|
+
], [
|
|
865
|
+
bigint
|
|
866
|
+
], "nonpayable">;
|
|
867
|
+
getFunction(nameOrSignature: "castVote"): TypedContractMethod<[
|
|
868
|
+
proposalId: BigNumberish,
|
|
869
|
+
support: BigNumberish
|
|
870
|
+
], [
|
|
871
|
+
bigint
|
|
872
|
+
], "nonpayable">;
|
|
873
|
+
getFunction(nameOrSignature: "castVoteBySig"): TypedContractMethod<[
|
|
874
|
+
proposalId: BigNumberish,
|
|
875
|
+
support: BigNumberish,
|
|
876
|
+
voter: AddressLike,
|
|
877
|
+
signature: BytesLike
|
|
878
|
+
], [
|
|
879
|
+
bigint
|
|
880
|
+
], "nonpayable">;
|
|
881
|
+
getFunction(nameOrSignature: "castVoteWithReason"): TypedContractMethod<[
|
|
882
|
+
proposalId: BigNumberish,
|
|
883
|
+
support: BigNumberish,
|
|
884
|
+
reason: string
|
|
885
|
+
], [
|
|
886
|
+
bigint
|
|
887
|
+
], "nonpayable">;
|
|
888
|
+
getFunction(nameOrSignature: "castVoteWithReasonAndParams"): TypedContractMethod<[
|
|
889
|
+
proposalId: BigNumberish,
|
|
890
|
+
support: BigNumberish,
|
|
891
|
+
reason: string,
|
|
892
|
+
params: BytesLike
|
|
893
|
+
], [
|
|
894
|
+
bigint
|
|
895
|
+
], "nonpayable">;
|
|
896
|
+
getFunction(nameOrSignature: "castVoteWithReasonAndParamsBySig"): TypedContractMethod<[
|
|
897
|
+
proposalId: BigNumberish,
|
|
898
|
+
support: BigNumberish,
|
|
899
|
+
voter: AddressLike,
|
|
900
|
+
reason: string,
|
|
901
|
+
params: BytesLike,
|
|
902
|
+
signature: BytesLike
|
|
903
|
+
], [
|
|
904
|
+
bigint
|
|
905
|
+
], "nonpayable">;
|
|
906
|
+
getFunction(nameOrSignature: "clock"): TypedContractMethod<[], [bigint], "view">;
|
|
907
|
+
getFunction(nameOrSignature: "committeeSize"): TypedContractMethod<[], [bigint], "view">;
|
|
908
|
+
getFunction(nameOrSignature: "createBallot"): TypedContractMethod<[
|
|
909
|
+
fullElection: boolean,
|
|
910
|
+
nominationPeriod: BigNumberish,
|
|
911
|
+
votePeriod: BigNumberish
|
|
912
|
+
], [
|
|
913
|
+
void
|
|
914
|
+
], "nonpayable">;
|
|
915
|
+
getFunction(nameOrSignature: "eip712Domain"): TypedContractMethod<[
|
|
916
|
+
], [
|
|
917
|
+
[
|
|
918
|
+
string,
|
|
919
|
+
string,
|
|
920
|
+
string,
|
|
921
|
+
bigint,
|
|
922
|
+
string,
|
|
923
|
+
string,
|
|
924
|
+
bigint[]
|
|
925
|
+
] & {
|
|
926
|
+
fields: string;
|
|
927
|
+
name: string;
|
|
928
|
+
version: string;
|
|
929
|
+
chainId: bigint;
|
|
930
|
+
verifyingContract: string;
|
|
931
|
+
salt: string;
|
|
932
|
+
extensions: bigint[];
|
|
933
|
+
}
|
|
934
|
+
], "view">;
|
|
935
|
+
getFunction(nameOrSignature: "elect"): TypedContractMethod<[], [void], "nonpayable">;
|
|
936
|
+
getFunction(nameOrSignature: "elected"): TypedContractMethod<[
|
|
937
|
+
arg0: BigNumberish,
|
|
938
|
+
arg1: BigNumberish
|
|
939
|
+
], [
|
|
940
|
+
[string, bigint] & {
|
|
941
|
+
id: string;
|
|
942
|
+
votes: bigint;
|
|
943
|
+
}
|
|
944
|
+
], "view">;
|
|
945
|
+
getFunction(nameOrSignature: "execute"): TypedContractMethod<[
|
|
946
|
+
targets: AddressLike[],
|
|
947
|
+
values: BigNumberish[],
|
|
948
|
+
calldatas: BytesLike[],
|
|
949
|
+
descriptionHash: BytesLike
|
|
950
|
+
], [
|
|
951
|
+
bigint
|
|
952
|
+
], "payable">;
|
|
953
|
+
getFunction(nameOrSignature: "getCandidateAddresses"): TypedContractMethod<[], [string[]], "view">;
|
|
954
|
+
getFunction(nameOrSignature: "getCommittee"): TypedContractMethod<[], [string[]], "view">;
|
|
955
|
+
getFunction(nameOrSignature: "getElected"): TypedContractMethod<[
|
|
956
|
+
_ballotId: BigNumberish
|
|
957
|
+
], [
|
|
958
|
+
CommitteeElection.CandidateStructOutput[]
|
|
959
|
+
], "view">;
|
|
960
|
+
getFunction(nameOrSignature: "getVotes"): TypedContractMethod<[
|
|
961
|
+
account: AddressLike,
|
|
962
|
+
timepoint: BigNumberish
|
|
963
|
+
], [
|
|
964
|
+
bigint
|
|
965
|
+
], "view">;
|
|
966
|
+
getFunction(nameOrSignature: "getVotesWithParams"): TypedContractMethod<[
|
|
967
|
+
account: AddressLike,
|
|
968
|
+
timepoint: BigNumberish,
|
|
969
|
+
params: BytesLike
|
|
970
|
+
], [
|
|
971
|
+
bigint
|
|
972
|
+
], "view">;
|
|
973
|
+
getFunction(nameOrSignature: "hasVoted"): TypedContractMethod<[
|
|
974
|
+
proposalId: BigNumberish,
|
|
975
|
+
account: AddressLike
|
|
976
|
+
], [
|
|
977
|
+
boolean
|
|
978
|
+
], "view">;
|
|
979
|
+
getFunction(nameOrSignature: "hashProposal"): TypedContractMethod<[
|
|
980
|
+
targets: AddressLike[],
|
|
981
|
+
values: BigNumberish[],
|
|
982
|
+
calldatas: BytesLike[],
|
|
983
|
+
descriptionHash: BytesLike
|
|
984
|
+
], [
|
|
985
|
+
bigint
|
|
986
|
+
], "view">;
|
|
987
|
+
getFunction(nameOrSignature: "isCommitteeMember"): TypedContractMethod<[account: AddressLike], [boolean], "view">;
|
|
988
|
+
getFunction(nameOrSignature: "locationContractAddress"): TypedContractMethod<[], [string], "view">;
|
|
989
|
+
getFunction(nameOrSignature: "name"): TypedContractMethod<[], [string], "view">;
|
|
990
|
+
getFunction(nameOrSignature: "nominate"): TypedContractMethod<[nominee: AddressLike], [void], "nonpayable">;
|
|
991
|
+
getFunction(nameOrSignature: "nonces"): TypedContractMethod<[owner: AddressLike], [bigint], "view">;
|
|
992
|
+
getFunction(nameOrSignature: "onERC1155BatchReceived"): TypedContractMethod<[
|
|
993
|
+
arg0: AddressLike,
|
|
994
|
+
arg1: AddressLike,
|
|
995
|
+
arg2: BigNumberish[],
|
|
996
|
+
arg3: BigNumberish[],
|
|
997
|
+
arg4: BytesLike
|
|
998
|
+
], [
|
|
999
|
+
string
|
|
1000
|
+
], "nonpayable">;
|
|
1001
|
+
getFunction(nameOrSignature: "onERC1155Received"): TypedContractMethod<[
|
|
1002
|
+
arg0: AddressLike,
|
|
1003
|
+
arg1: AddressLike,
|
|
1004
|
+
arg2: BigNumberish,
|
|
1005
|
+
arg3: BigNumberish,
|
|
1006
|
+
arg4: BytesLike
|
|
1007
|
+
], [
|
|
1008
|
+
string
|
|
1009
|
+
], "nonpayable">;
|
|
1010
|
+
getFunction(nameOrSignature: "onERC721Received"): TypedContractMethod<[
|
|
1011
|
+
arg0: AddressLike,
|
|
1012
|
+
arg1: AddressLike,
|
|
1013
|
+
arg2: BigNumberish,
|
|
1014
|
+
arg3: BytesLike
|
|
1015
|
+
], [
|
|
1016
|
+
string
|
|
1017
|
+
], "nonpayable">;
|
|
1018
|
+
getFunction(nameOrSignature: "owner"): TypedContractMethod<[], [string], "view">;
|
|
1019
|
+
getFunction(nameOrSignature: "proposalDeadline"): TypedContractMethod<[proposalId: BigNumberish], [bigint], "view">;
|
|
1020
|
+
getFunction(nameOrSignature: "proposalEta"): TypedContractMethod<[proposalId: BigNumberish], [bigint], "view">;
|
|
1021
|
+
getFunction(nameOrSignature: "proposalNeedsQueuing"): TypedContractMethod<[proposalId: BigNumberish], [boolean], "view">;
|
|
1022
|
+
getFunction(nameOrSignature: "proposalProposer"): TypedContractMethod<[proposalId: BigNumberish], [string], "view">;
|
|
1023
|
+
getFunction(nameOrSignature: "proposalSnapshot"): TypedContractMethod<[proposalId: BigNumberish], [bigint], "view">;
|
|
1024
|
+
getFunction(nameOrSignature: "proposalThreshold"): TypedContractMethod<[], [bigint], "view">;
|
|
1025
|
+
getFunction(nameOrSignature: "proposalVotes"): TypedContractMethod<[
|
|
1026
|
+
proposalId: BigNumberish
|
|
1027
|
+
], [
|
|
1028
|
+
[
|
|
1029
|
+
bigint,
|
|
1030
|
+
bigint,
|
|
1031
|
+
bigint
|
|
1032
|
+
] & {
|
|
1033
|
+
againstVotes: bigint;
|
|
1034
|
+
forVotes: bigint;
|
|
1035
|
+
abstainVotes: bigint;
|
|
1036
|
+
}
|
|
1037
|
+
], "view">;
|
|
1038
|
+
getFunction(nameOrSignature: "propose"): TypedContractMethod<[
|
|
1039
|
+
arg0: AddressLike[],
|
|
1040
|
+
arg1: BigNumberish[],
|
|
1041
|
+
arg2: BytesLike[],
|
|
1042
|
+
arg3: string
|
|
1043
|
+
], [
|
|
1044
|
+
bigint
|
|
1045
|
+
], "nonpayable">;
|
|
1046
|
+
getFunction(nameOrSignature: "proposeCommitteeVote"): TypedContractMethod<[
|
|
1047
|
+
targets: AddressLike[],
|
|
1048
|
+
values: BigNumberish[],
|
|
1049
|
+
calldatas: BytesLike[],
|
|
1050
|
+
description: string
|
|
1051
|
+
], [
|
|
1052
|
+
bigint
|
|
1053
|
+
], "nonpayable">;
|
|
1054
|
+
getFunction(nameOrSignature: "proposeLocation"): TypedContractMethod<[
|
|
1055
|
+
singleCalldata: BytesLike,
|
|
1056
|
+
description: string
|
|
1057
|
+
], [
|
|
1058
|
+
bigint
|
|
1059
|
+
], "nonpayable">;
|
|
1060
|
+
getFunction(nameOrSignature: "queue"): TypedContractMethod<[
|
|
1061
|
+
targets: AddressLike[],
|
|
1062
|
+
values: BigNumberish[],
|
|
1063
|
+
calldatas: BytesLike[],
|
|
1064
|
+
descriptionHash: BytesLike
|
|
1065
|
+
], [
|
|
1066
|
+
bigint
|
|
1067
|
+
], "nonpayable">;
|
|
1068
|
+
getFunction(nameOrSignature: "quorum"): TypedContractMethod<[blockNumber: BigNumberish], [bigint], "view">;
|
|
1069
|
+
getFunction(nameOrSignature: "quorumDenominator"): TypedContractMethod<[], [bigint], "view">;
|
|
1070
|
+
getFunction(nameOrSignature: "quorumNumerator(uint256)"): TypedContractMethod<[timepoint: BigNumberish], [bigint], "view">;
|
|
1071
|
+
getFunction(nameOrSignature: "quorumNumerator()"): TypedContractMethod<[], [bigint], "view">;
|
|
1072
|
+
getFunction(nameOrSignature: "relay"): TypedContractMethod<[
|
|
1073
|
+
target: AddressLike,
|
|
1074
|
+
value: BigNumberish,
|
|
1075
|
+
data: BytesLike
|
|
1076
|
+
], [
|
|
1077
|
+
void
|
|
1078
|
+
], "payable">;
|
|
1079
|
+
getFunction(nameOrSignature: "renounceOwnership"): TypedContractMethod<[], [void], "nonpayable">;
|
|
1080
|
+
getFunction(nameOrSignature: "setCommitteeSize"): TypedContractMethod<[_committeeSize: BigNumberish], [void], "nonpayable">;
|
|
1081
|
+
getFunction(nameOrSignature: "setLocationContractAddress"): TypedContractMethod<[
|
|
1082
|
+
_locationContractAddress: AddressLike
|
|
1083
|
+
], [
|
|
1084
|
+
void
|
|
1085
|
+
], "nonpayable">;
|
|
1086
|
+
getFunction(nameOrSignature: "setProposalThreshold"): TypedContractMethod<[
|
|
1087
|
+
newProposalThreshold: BigNumberish
|
|
1088
|
+
], [
|
|
1089
|
+
void
|
|
1090
|
+
], "nonpayable">;
|
|
1091
|
+
getFunction(nameOrSignature: "setVotingDelay"): TypedContractMethod<[newVotingDelay: BigNumberish], [void], "nonpayable">;
|
|
1092
|
+
getFunction(nameOrSignature: "setVotingPeriod"): TypedContractMethod<[newVotingPeriod: BigNumberish], [void], "nonpayable">;
|
|
1093
|
+
getFunction(nameOrSignature: "state"): TypedContractMethod<[proposalId: BigNumberish], [bigint], "view">;
|
|
1094
|
+
getFunction(nameOrSignature: "supportsInterface"): TypedContractMethod<[interfaceId: BytesLike], [boolean], "view">;
|
|
1095
|
+
getFunction(nameOrSignature: "televerseToken"): TypedContractMethod<[], [string], "view">;
|
|
1096
|
+
getFunction(nameOrSignature: "ties"): TypedContractMethod<[
|
|
1097
|
+
arg0: BigNumberish,
|
|
1098
|
+
arg1: BigNumberish
|
|
1099
|
+
], [
|
|
1100
|
+
[string, bigint] & {
|
|
1101
|
+
id: string;
|
|
1102
|
+
votes: bigint;
|
|
1103
|
+
}
|
|
1104
|
+
], "view">;
|
|
1105
|
+
getFunction(nameOrSignature: "timelock"): TypedContractMethod<[], [string], "view">;
|
|
1106
|
+
getFunction(nameOrSignature: "token"): TypedContractMethod<[], [string], "view">;
|
|
1107
|
+
getFunction(nameOrSignature: "transferOwnership"): TypedContractMethod<[newOwner: AddressLike], [void], "nonpayable">;
|
|
1108
|
+
getFunction(nameOrSignature: "updateQuorumNumerator"): TypedContractMethod<[
|
|
1109
|
+
newQuorumNumerator: BigNumberish
|
|
1110
|
+
], [
|
|
1111
|
+
void
|
|
1112
|
+
], "nonpayable">;
|
|
1113
|
+
getFunction(nameOrSignature: "updateTimelock"): TypedContractMethod<[newTimelock: AddressLike], [void], "nonpayable">;
|
|
1114
|
+
getFunction(nameOrSignature: "version"): TypedContractMethod<[], [string], "view">;
|
|
1115
|
+
getFunction(nameOrSignature: "vote"): TypedContractMethod<[
|
|
1116
|
+
_vote: CommitteeElection.VoteStruct
|
|
1117
|
+
], [
|
|
1118
|
+
void
|
|
1119
|
+
], "nonpayable">;
|
|
1120
|
+
getFunction(nameOrSignature: "votingDelay"): TypedContractMethod<[], [bigint], "view">;
|
|
1121
|
+
getFunction(nameOrSignature: "votingPeriod"): TypedContractMethod<[], [bigint], "view">;
|
|
1122
|
+
getEvent(key: "BallotCreated"): TypedContractEvent<BallotCreatedEvent.InputTuple, BallotCreatedEvent.OutputTuple, BallotCreatedEvent.OutputObject>;
|
|
1123
|
+
getEvent(key: "BallotFailed"): TypedContractEvent<BallotFailedEvent.InputTuple, BallotFailedEvent.OutputTuple, BallotFailedEvent.OutputObject>;
|
|
1124
|
+
getEvent(key: "BallotPassed"): TypedContractEvent<BallotPassedEvent.InputTuple, BallotPassedEvent.OutputTuple, BallotPassedEvent.OutputObject>;
|
|
1125
|
+
getEvent(key: "EIP712DomainChanged"): TypedContractEvent<EIP712DomainChangedEvent.InputTuple, EIP712DomainChangedEvent.OutputTuple, EIP712DomainChangedEvent.OutputObject>;
|
|
1126
|
+
getEvent(key: "OwnershipTransferred"): TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
1127
|
+
getEvent(key: "ProposalCanceled"): TypedContractEvent<ProposalCanceledEvent.InputTuple, ProposalCanceledEvent.OutputTuple, ProposalCanceledEvent.OutputObject>;
|
|
1128
|
+
getEvent(key: "ProposalCreated"): TypedContractEvent<ProposalCreatedEvent.InputTuple, ProposalCreatedEvent.OutputTuple, ProposalCreatedEvent.OutputObject>;
|
|
1129
|
+
getEvent(key: "ProposalExecuted"): TypedContractEvent<ProposalExecutedEvent.InputTuple, ProposalExecutedEvent.OutputTuple, ProposalExecutedEvent.OutputObject>;
|
|
1130
|
+
getEvent(key: "ProposalQueued"): TypedContractEvent<ProposalQueuedEvent.InputTuple, ProposalQueuedEvent.OutputTuple, ProposalQueuedEvent.OutputObject>;
|
|
1131
|
+
getEvent(key: "ProposalThresholdSet"): TypedContractEvent<ProposalThresholdSetEvent.InputTuple, ProposalThresholdSetEvent.OutputTuple, ProposalThresholdSetEvent.OutputObject>;
|
|
1132
|
+
getEvent(key: "QuorumNumeratorUpdated"): TypedContractEvent<QuorumNumeratorUpdatedEvent.InputTuple, QuorumNumeratorUpdatedEvent.OutputTuple, QuorumNumeratorUpdatedEvent.OutputObject>;
|
|
1133
|
+
getEvent(key: "TimelockChange"): TypedContractEvent<TimelockChangeEvent.InputTuple, TimelockChangeEvent.OutputTuple, TimelockChangeEvent.OutputObject>;
|
|
1134
|
+
getEvent(key: "VoteCast"): TypedContractEvent<VoteCastEvent.InputTuple, VoteCastEvent.OutputTuple, VoteCastEvent.OutputObject>;
|
|
1135
|
+
getEvent(key: "VoteCastWithParams"): TypedContractEvent<VoteCastWithParamsEvent.InputTuple, VoteCastWithParamsEvent.OutputTuple, VoteCastWithParamsEvent.OutputObject>;
|
|
1136
|
+
getEvent(key: "VoteSubmitted"): TypedContractEvent<VoteSubmittedEvent.InputTuple, VoteSubmittedEvent.OutputTuple, VoteSubmittedEvent.OutputObject>;
|
|
1137
|
+
getEvent(key: "VotingDelaySet"): TypedContractEvent<VotingDelaySetEvent.InputTuple, VotingDelaySetEvent.OutputTuple, VotingDelaySetEvent.OutputObject>;
|
|
1138
|
+
getEvent(key: "VotingPeriodSet"): TypedContractEvent<VotingPeriodSetEvent.InputTuple, VotingPeriodSetEvent.OutputTuple, VotingPeriodSetEvent.OutputObject>;
|
|
1139
|
+
filters: {
|
|
1140
|
+
"BallotCreated(bool,uint256,uint256)": TypedContractEvent<BallotCreatedEvent.InputTuple, BallotCreatedEvent.OutputTuple, BallotCreatedEvent.OutputObject>;
|
|
1141
|
+
BallotCreated: TypedContractEvent<BallotCreatedEvent.InputTuple, BallotCreatedEvent.OutputTuple, BallotCreatedEvent.OutputObject>;
|
|
1142
|
+
"BallotFailed(uint256)": TypedContractEvent<BallotFailedEvent.InputTuple, BallotFailedEvent.OutputTuple, BallotFailedEvent.OutputObject>;
|
|
1143
|
+
BallotFailed: TypedContractEvent<BallotFailedEvent.InputTuple, BallotFailedEvent.OutputTuple, BallotFailedEvent.OutputObject>;
|
|
1144
|
+
"BallotPassed(uint256)": TypedContractEvent<BallotPassedEvent.InputTuple, BallotPassedEvent.OutputTuple, BallotPassedEvent.OutputObject>;
|
|
1145
|
+
BallotPassed: TypedContractEvent<BallotPassedEvent.InputTuple, BallotPassedEvent.OutputTuple, BallotPassedEvent.OutputObject>;
|
|
1146
|
+
"EIP712DomainChanged()": TypedContractEvent<EIP712DomainChangedEvent.InputTuple, EIP712DomainChangedEvent.OutputTuple, EIP712DomainChangedEvent.OutputObject>;
|
|
1147
|
+
EIP712DomainChanged: TypedContractEvent<EIP712DomainChangedEvent.InputTuple, EIP712DomainChangedEvent.OutputTuple, EIP712DomainChangedEvent.OutputObject>;
|
|
1148
|
+
"OwnershipTransferred(address,address)": TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
1149
|
+
OwnershipTransferred: TypedContractEvent<OwnershipTransferredEvent.InputTuple, OwnershipTransferredEvent.OutputTuple, OwnershipTransferredEvent.OutputObject>;
|
|
1150
|
+
"ProposalCanceled(uint256)": TypedContractEvent<ProposalCanceledEvent.InputTuple, ProposalCanceledEvent.OutputTuple, ProposalCanceledEvent.OutputObject>;
|
|
1151
|
+
ProposalCanceled: TypedContractEvent<ProposalCanceledEvent.InputTuple, ProposalCanceledEvent.OutputTuple, ProposalCanceledEvent.OutputObject>;
|
|
1152
|
+
"ProposalCreated(uint256,address,address[],uint256[],string[],bytes[],uint256,uint256,string)": TypedContractEvent<ProposalCreatedEvent.InputTuple, ProposalCreatedEvent.OutputTuple, ProposalCreatedEvent.OutputObject>;
|
|
1153
|
+
ProposalCreated: TypedContractEvent<ProposalCreatedEvent.InputTuple, ProposalCreatedEvent.OutputTuple, ProposalCreatedEvent.OutputObject>;
|
|
1154
|
+
"ProposalExecuted(uint256)": TypedContractEvent<ProposalExecutedEvent.InputTuple, ProposalExecutedEvent.OutputTuple, ProposalExecutedEvent.OutputObject>;
|
|
1155
|
+
ProposalExecuted: TypedContractEvent<ProposalExecutedEvent.InputTuple, ProposalExecutedEvent.OutputTuple, ProposalExecutedEvent.OutputObject>;
|
|
1156
|
+
"ProposalQueued(uint256,uint256)": TypedContractEvent<ProposalQueuedEvent.InputTuple, ProposalQueuedEvent.OutputTuple, ProposalQueuedEvent.OutputObject>;
|
|
1157
|
+
ProposalQueued: TypedContractEvent<ProposalQueuedEvent.InputTuple, ProposalQueuedEvent.OutputTuple, ProposalQueuedEvent.OutputObject>;
|
|
1158
|
+
"ProposalThresholdSet(uint256,uint256)": TypedContractEvent<ProposalThresholdSetEvent.InputTuple, ProposalThresholdSetEvent.OutputTuple, ProposalThresholdSetEvent.OutputObject>;
|
|
1159
|
+
ProposalThresholdSet: TypedContractEvent<ProposalThresholdSetEvent.InputTuple, ProposalThresholdSetEvent.OutputTuple, ProposalThresholdSetEvent.OutputObject>;
|
|
1160
|
+
"QuorumNumeratorUpdated(uint256,uint256)": TypedContractEvent<QuorumNumeratorUpdatedEvent.InputTuple, QuorumNumeratorUpdatedEvent.OutputTuple, QuorumNumeratorUpdatedEvent.OutputObject>;
|
|
1161
|
+
QuorumNumeratorUpdated: TypedContractEvent<QuorumNumeratorUpdatedEvent.InputTuple, QuorumNumeratorUpdatedEvent.OutputTuple, QuorumNumeratorUpdatedEvent.OutputObject>;
|
|
1162
|
+
"TimelockChange(address,address)": TypedContractEvent<TimelockChangeEvent.InputTuple, TimelockChangeEvent.OutputTuple, TimelockChangeEvent.OutputObject>;
|
|
1163
|
+
TimelockChange: TypedContractEvent<TimelockChangeEvent.InputTuple, TimelockChangeEvent.OutputTuple, TimelockChangeEvent.OutputObject>;
|
|
1164
|
+
"VoteCast(address,uint256,uint8,uint256,string)": TypedContractEvent<VoteCastEvent.InputTuple, VoteCastEvent.OutputTuple, VoteCastEvent.OutputObject>;
|
|
1165
|
+
VoteCast: TypedContractEvent<VoteCastEvent.InputTuple, VoteCastEvent.OutputTuple, VoteCastEvent.OutputObject>;
|
|
1166
|
+
"VoteCastWithParams(address,uint256,uint8,uint256,string,bytes)": TypedContractEvent<VoteCastWithParamsEvent.InputTuple, VoteCastWithParamsEvent.OutputTuple, VoteCastWithParamsEvent.OutputObject>;
|
|
1167
|
+
VoteCastWithParams: TypedContractEvent<VoteCastWithParamsEvent.InputTuple, VoteCastWithParamsEvent.OutputTuple, VoteCastWithParamsEvent.OutputObject>;
|
|
1168
|
+
"VoteSubmitted(address,address[],uint256[])": TypedContractEvent<VoteSubmittedEvent.InputTuple, VoteSubmittedEvent.OutputTuple, VoteSubmittedEvent.OutputObject>;
|
|
1169
|
+
VoteSubmitted: TypedContractEvent<VoteSubmittedEvent.InputTuple, VoteSubmittedEvent.OutputTuple, VoteSubmittedEvent.OutputObject>;
|
|
1170
|
+
"VotingDelaySet(uint256,uint256)": TypedContractEvent<VotingDelaySetEvent.InputTuple, VotingDelaySetEvent.OutputTuple, VotingDelaySetEvent.OutputObject>;
|
|
1171
|
+
VotingDelaySet: TypedContractEvent<VotingDelaySetEvent.InputTuple, VotingDelaySetEvent.OutputTuple, VotingDelaySetEvent.OutputObject>;
|
|
1172
|
+
"VotingPeriodSet(uint256,uint256)": TypedContractEvent<VotingPeriodSetEvent.InputTuple, VotingPeriodSetEvent.OutputTuple, VotingPeriodSetEvent.OutputObject>;
|
|
1173
|
+
VotingPeriodSet: TypedContractEvent<VotingPeriodSetEvent.InputTuple, VotingPeriodSetEvent.OutputTuple, VotingPeriodSetEvent.OutputObject>;
|
|
1174
|
+
};
|
|
1175
|
+
}
|