OpenZeppelin Governor
Compatibility considerations when implementing OpenZeppelin governor
Event signatures
event ProposalCreated(
uint256 proposalId,
address proposer,
address[] targets,
uint256[] values,
string[] signatures,
bytes[] calldatas,
uint256 startBlock,
uint256 endBlock,
string description
);
event ProposalQueued(uint256 proposalId, uint256 etaSeconds);
event ProposalCanceled(uint256 proposalId);
event ProposalExecuted(uint256 proposalId);
event VoteCast(
address indexed voter,
uint256 proposalId,
uint8 support,
uint256 weight,
string reason
);Function signatures
Quorum
Voting Delay
Voting Period
Proposal state lifecycle
Governor Parameter Changes
Quorum Extension
Clock Mode
Last updated
Was this helpful?

