VoteERC20
Methods
BALLOT_TYPEHASH
Returns
_0
bytes32
undefined
COUNTING_MODE
See {IGovernor-COUNTING_MODE}.
Returns
_0
string
undefined
EXTENDED_BALLOT_TYPEHASH
Returns
_0
bytes32
undefined
castVote
See {IGovernor-castVote}.
Parameters
proposalId
uint256
undefined
support
uint8
undefined
Returns
_0
uint256
undefined
castVoteBySig
See {IGovernor-castVoteBySig}.
Parameters
proposalId
uint256
undefined
support
uint8
undefined
v
uint8
undefined
r
bytes32
undefined
s
bytes32
undefined
Returns
_0
uint256
undefined
castVoteWithReason
See {IGovernor-castVoteWithReason}.
Parameters
proposalId
uint256
undefined
support
uint8
undefined
reason
string
undefined
Returns
_0
uint256
undefined
castVoteWithReasonAndParams
See {IGovernor-castVoteWithReasonAndParams}.
Parameters
proposalId
uint256
undefined
support
uint8
undefined
reason
string
undefined
params
bytes
undefined
Returns
_0
uint256
undefined
castVoteWithReasonAndParamsBySig
See {IGovernor-castVoteWithReasonAndParamsBySig}.
Parameters
proposalId
uint256
undefined
support
uint8
undefined
reason
string
undefined
params
bytes
undefined
v
uint8
undefined
r
bytes32
undefined
s
bytes32
undefined
Returns
_0
uint256
undefined
contractType
Returns the module type of the contract.
Returns
_0
bytes32
undefined
contractURI
Returns the metadata URI of the contract.
Returns
_0
string
undefined
contractVersion
Returns the version of the contract.
Returns
_0
uint8
undefined
execute
See {IGovernor-execute}.
Parameters
targets
address[]
undefined
values
uint256[]
undefined
calldatas
bytes[]
undefined
descriptionHash
bytes32
undefined
Returns
_0
uint256
undefined
getAllProposals
Returns all proposals made.
Returns
allProposals
VoteERC20.Proposal[]
undefined
getVotes
See {IGovernor-getVotes}.
Parameters
account
address
undefined
blockNumber
uint256
undefined
Returns
_0
uint256
undefined
getVotesWithParams
See {IGovernor-getVotesWithParams}.
Parameters
account
address
undefined
blockNumber
uint256
undefined
params
bytes
undefined
Returns
_0
uint256
undefined
hasVoted
See {IGovernor-hasVoted}.
Parameters
proposalId
uint256
undefined
account
address
undefined
Returns
_0
bool
undefined
hashProposal
See {IGovernor-hashProposal}. The proposal id is produced by hashing the ABI encoded targets
array, the values
array, the calldatas
array and the descriptionHash (bytes32 which itself is the keccak256 hash of the description string). This proposal id can be produced from the proposal data which is part of the {ProposalCreated} event. It can even be computed in advance, before the proposal is submitted. Note that the chainId and the governor address are not part of the proposal id computation. Consequently, the same proposal (with same operation and same description) will have the same id if submitted on multiple governors across multiple networks. This also means that in order to execute the same operation twice (on the same governor) the proposer will have to change the description in order to avoid proposal id conflicts.
Parameters
targets
address[]
undefined
values
uint256[]
undefined
calldatas
bytes[]
undefined
descriptionHash
bytes32
undefined
Returns
_0
uint256
undefined
initialize
Initiliazes the contract, like a constructor.
Parameters
_name
string
undefined
_contractURI
string
undefined
_trustedForwarders
address[]
undefined
_token
address
undefined
_initialVotingDelay
uint256
undefined
_initialVotingPeriod
uint256
undefined
_initialProposalThreshold
uint256
undefined
_initialVoteQuorumFraction
uint256
undefined
isTrustedForwarder
Parameters
forwarder
address
undefined
Returns
_0
bool
undefined
name
See {IGovernor-name}.
Returns
_0
string
undefined
onERC1155BatchReceived
See {IERC1155Receiver-onERC1155BatchReceived}.
Parameters
_0
address
undefined
_1
address
undefined
_2
uint256[]
undefined
_3
uint256[]
undefined
_4
bytes
undefined
Returns
_0
bytes4
undefined
onERC1155Received
See {IERC1155Receiver-onERC1155Received}.
Parameters
_0
address
undefined
_1
address
undefined
_2
uint256
undefined
_3
uint256
undefined
_4
bytes
undefined
Returns
_0
bytes4
undefined
onERC721Received
See {IERC721Receiver-onERC721Received}.
Parameters
_0
address
undefined
_1
address
undefined
_2
uint256
undefined
_3
bytes
undefined
Returns
_0
bytes4
undefined
proposalDeadline
See {IGovernor-proposalDeadline}.
Parameters
proposalId
uint256
undefined
Returns
_0
uint256
undefined
proposalIndex
Returns
_0
uint256
undefined
proposalSnapshot
See {IGovernor-proposalSnapshot}.
Parameters
proposalId
uint256
undefined
Returns
_0
uint256
undefined
proposalThreshold
Returns
_0
uint256
undefined
proposalVotes
Accessor to the internal vote counts.
Parameters
proposalId
uint256
undefined
Returns
againstVotes
uint256
undefined
forVotes
uint256
undefined
abstainVotes
uint256
undefined
proposals
proposal index => Proposal
Parameters
_0
uint256
undefined
Returns
proposalId
uint256
undefined
proposer
address
undefined
startBlock
uint256
undefined
endBlock
uint256
undefined
description
string
undefined
propose
See {IGovernor-propose}.
Parameters
targets
address[]
undefined
values
uint256[]
undefined
calldatas
bytes[]
undefined
description
string
undefined
Returns
proposalId
uint256
undefined
quorum
Returns the quorum for a block number, in terms of number of votes: supply * numerator / denominator
.
Parameters
blockNumber
uint256
undefined
Returns
_0
uint256
undefined
quorumDenominator
Returns the quorum denominator. Defaults to 100, but may be overridden.
Returns
_0
uint256
undefined
quorumNumerator
Returns the quorum numerator at a specific block number. See {quorumDenominator}.
Parameters
blockNumber
uint256
undefined
Returns
_0
uint256
undefined
quorumNumerator
Returns the current quorum numerator. See {quorumDenominator}.
Returns
_0
uint256
undefined
relay
Relays a transaction or function call to an arbitrary target. In cases where the governance executor is some contract other than the governor itself, like when using a timelock, this function can be invoked in a governance proposal to recover tokens or Ether that was sent to the governor contract by mistake. Note that if the executor is simply the governor itself, use of relay
is redundant.
Parameters
target
address
undefined
value
uint256
undefined
data
bytes
undefined
setContractURI
Parameters
uri
string
undefined
setProposalThreshold
Update the proposal threshold. This operation can only be performed through a governance proposal. Emits a {ProposalThresholdSet} event.
Parameters
newProposalThreshold
uint256
undefined
setVotingDelay
Update the voting delay. This operation can only be performed through a governance proposal. Emits a {VotingDelaySet} event.
Parameters
newVotingDelay
uint256
undefined
setVotingPeriod
Update the voting period. This operation can only be performed through a governance proposal. Emits a {VotingPeriodSet} event.
Parameters
newVotingPeriod
uint256
undefined
state
See {IGovernor-state}.
Parameters
proposalId
uint256
undefined
Returns
_0
enum IGovernorUpgradeable.ProposalState
undefined
supportsInterface
See {IERC165-supportsInterface}.
Parameters
interfaceId
bytes4
undefined
Returns
_0
bool
undefined
token
Returns
_0
contract IVotesUpgradeable
undefined
updateQuorumNumerator
Changes the quorum numerator. Emits a {QuorumNumeratorUpdated} event. Requirements: - Must be called through a governance proposal. - New numerator must be smaller or equal to the denominator.
Parameters
newQuorumNumerator
uint256
undefined
version
See {IGovernor-version}.
Returns
_0
string
undefined
votingDelay
See {IGovernor-votingDelay}.
Returns
_0
uint256
undefined
votingPeriod
See {IGovernor-votingPeriod}.
Returns
_0
uint256
undefined
Events
Initialized
Parameters
version
uint8
undefined
ProposalCanceled
Parameters
proposalId
uint256
undefined
ProposalCreated
Parameters
proposalId
uint256
undefined
proposer
address
undefined
targets
address[]
undefined
values
uint256[]
undefined
signatures
string[]
undefined
calldatas
bytes[]
undefined
startBlock
uint256
undefined
endBlock
uint256
undefined
description
string
undefined
ProposalExecuted
Parameters
proposalId
uint256
undefined
ProposalThresholdSet
Parameters
oldProposalThreshold
uint256
undefined
newProposalThreshold
uint256
undefined
QuorumNumeratorUpdated
Parameters
oldQuorumNumerator
uint256
undefined
newQuorumNumerator
uint256
undefined
VoteCast
Parameters
voter indexed
address
undefined
proposalId
uint256
undefined
support
uint8
undefined
weight
uint256
undefined
reason
string
undefined
VoteCastWithParams
Parameters
voter indexed
address
undefined
proposalId
uint256
undefined
support
uint8
undefined
weight
uint256
undefined
reason
string
undefined
params
bytes
undefined
VotingDelaySet
Parameters
oldVotingDelay
uint256
undefined
newVotingDelay
uint256
undefined
VotingPeriodSet
Parameters
oldVotingPeriod
uint256
undefined
newVotingPeriod
uint256
undefined
Errors
Empty
An operation (e.g. {front}) couldn't be completed due to the queue being empty.
Last updated