ProposalGovernor
Last updated
Last updated
Inherits: ContextUpgradeable, MezzGovernor, MezzEIP712, NoncesUpgradeable, IProposalGovernor
Author: Daniel Yamagata
A base class that provides functionality for on-chain proposals and voting. This contract does not implement the execution of proposals
This contract is heavily inspired by .
Sets a new quourm percentage
Only callable via governance itself
Parameters
newQuorumPercentage
uint256
The new quorum percentage
Sets a new proposal threshold percentage
Only callable via governance itself
Parameters
newProposalThresholdPercentage
uint256
The new proposal threshold percentage
Sets a new voting delay
Only callable via governance itself
Parameters
newVotingDelay
uint256
The new voting delay
Sets a new voting period
Only callable via governance itself
Parameters
newVotingPeriod
uint256
The new voting period
Casts the caller's votes towards the proposal associated with 'proposalId' There are three different vote types defined by the following enum:
0: Against
1: For
2: Abstain
A voter can only vote once and cannot revoke or change their vote. Votes are calculated from the proposal's snapshot and the counting of votes is bespoke and must be implemented by the inheritor
Parameters
proposalId
uint256
The ID of the proposal to cast the vote for
support
uint8
The vote type
Returns
<none>
uint256
The number of votes of the caller
Casts the caller's votes with a 'reason' towards the proposal associated with 'proposalId'
The 'reason' is not stored on-chain but, rather, emitted in an event
Parameters
proposalId
uint256
The ID of the proposal to cast the vote for
support
uint8
The vote type
reason
string
The reason for the vote
Returns
<none>
uint256
The number of votes of the caller
Casts the caller's votes with a 'reason' and 'params' towards the proposal associated with 'proposalId'
'params' are bespoke, abi-encoded arguments that could be used for casting a vote
Parameters
proposalId
uint256
The ID of the proposal to cast the vote for
support
uint8
The vote type
reason
string
The reason for the vote
params
bytes
The abi-encoded parameters for the vote
Returns
<none>
uint256
The number of votes of the caller
Casts the votes of 'voter' towards the proposal associated with 'proposalId' via an EIP-712 signature
Reference: https://eips.ethereum.org/EIPS/eip-712
Parameters
proposalId
uint256
The ID of the proposal to cast the vote for
support
uint8
The vote type
voter
address
The address of the voter
signature
bytes
The EIP-712 signature of the voter
Returns
<none>
uint256
The number of votes of the voter
Casts the votes of 'voter' towards the proposal associated with 'proposalId' via an EIP-712 signature
Reference: https://eips.ethereum.org/EIPS/eip-712
'params' are bespoke, abi-encoded arguments that could be used for casting a vote
Parameters
proposalId
uint256
The ID of the proposal to cast the vote for
support
uint8
The vote type
voter
address
The address of the voter
reason
string
The reason for the vote
params
bytes
The abi-encoded parameters for the vote
signature
bytes
The EIP-712 signature of the voter
Returns
<none>
uint256
The number of votes of the voter
Overridden by inheriting contracts. Inheritors should query votes and count them towards a proposal
Returns the state of a proposal associated with 'proposalId' as a ProposalState enum
Returns true if 'account' has voted on a proposal with 'proposalId', false otherwise
Returns
<none>
bool
True if the account has voted, false otherwise
Returns the voting receipt of 'account' for the proposal with 'proposalId'
Returns
<none>
DataTypes.Receipt
The receipt of the account as a DataTypes.Receipt struct
Returns the total votes for the proposal with 'proposalId'
Returns
<none>
DataTypes.ProposalVotes
The total votes for the proposal as a DataTypes.ProposalVotes struct
Returns the voting delay in seconds
Returns
<none>
uint256
The voting delay in seconds
Returns the voting period
Returns
<none>
uint256
The voting period in seconds
Returns the quorum percentage
Returns
<none>
uint256
The quorum percentage multiplied by the precision factor
Returns the proposal threshold percentage
Returns
<none>
uint256
The proposal threshold percentage multiplied by the precision factor
Returns the ballot transaction hash, which is used in casting votes by signature
The returned transaction hash should be signed by the voter to create a valid signature Reference: https://eips.ethereum.org/EIPS/eip-712
Return the ballot struct hash
Reference: https://eips.ethereum.org/EIPS/eip-712
Returns the extended ballot transaction hash, which is used in casting votes with reasons and params by signature
The returned transaction hash should be signed by the voter to create a valid signature Reference: https://eips.ethereum.org/EIPS/eip-712
Returns the extended ballot struct hash
Reference: https://eips.ethereum.org/EIPS/eip-712
Returns the coreId of the implementation as a bytes32
The core ID is the keccak256 hash of the contract name followed by a version under the following syntax: "mezzanine.coreId.ContractName.vX" For example, the core ID of the 2nd version of the Treasury would be the following: keccak256(abi.encodePacked("mezzanine.coreId.Treasury.v2"))
Returns the version of the implementation as a uint256
EIP-6372 support
EIP-6372 support
Counts a vote for a given proposal. Sets the receipt in storage Assumes that the weight has already been calculated
Returns whether or not the vote succeeded for a given proposal
Returns
<none>
bool
True if the for votes are greater than the against votes, false otherwise
EIP-165 support. Reference: https://eips.ethereum.org/EIPS/eip-165