StandardGovernor
Verified contract
Active on
Ethereum with 411 txns
Slot
XX
32
30
28
26
24
22
20
18
16
14
12
10
8
6
4
2
0
Balances ($6,026.92)
Asset | Symbol | Type | Quantity | Price | Value |
---|---|---|---|---|---|
WETH | ERC-20 | 1.8 | $3,348.29 |
$6,026.92 |
Transactions
Txn hash | Method | Block | Age | From | To | Value (ETH) | Fee (ETH) |
---|---|---|---|---|---|---|---|
| 21260685 | 4 hours ago | | | 0 | 0.0049393209 | |
| 21259874 | 6 hours ago | | | 0 | 0.0053573034 | |
| 21259541 | 8 hours ago | | | 0 | 0.0055885231 | |
| 21259161 | 9 hours ago | | | 0 | 0.0064205867 | |
| 21258829 | 10 hours ago | | | 0 | 0.0052164065 | |
| 21258825 | 10 hours ago | | | 0 | 0.0051144122 | |
| 21258816 | 10 hours ago | | | 0 | 0.0056005458 | |
| 21258812 | 10 hours ago | | | 0 | 0.0056460448 | |
| 21258294 | 12 hours ago | | | 0 | 0.0047139727 | |
| 21257826 | 13 hours ago | | | 0 | 0.0075470613 |
ABI
ABI objects
Getter at block 21261806
BALLOTS_TYPEHASH() view returns (bytes32)
0x9a121fc10d6025acfc09275f9709796b68831733b5bbac0d510d13f85b1b730f
BALLOTS_WITH_REASON_TYPEHASH() view returns (bytes32)
0xa891f76027ef63a24501b9dd3b0c779b49ad26d2328e9d423640209d1ad4fcc4
BALLOT_TYPEHASH() view returns (bytes32)
0x150214d74d59b7d1e90c73fc22ef3d991dd0a76b046543d4d80ab92d2a50328f
BALLOT_WITH_REASON_TYPEHASH() view returns (bytes32)
0x7949bd92105c02f48ca245aa185f4a7a4d7185641d59b186ac64abeb44964f0c
CLOCK_MODE() pure returns (string)
mode=epoch&epochUnderlyingSource=blockTimestamp&epochStartingTimestamp=1713099600&epochPeriod=1296000
COUNTING_MODE() pure returns (string)
support=against,for&quorum=for&success=majority
DOMAIN_SEPARATOR() view returns (bytes32)
0x3b4f31285744c1c4f8315255017bc616861aaab35cbd1671c0a0be680418551e
cashToken() view returns (address)
0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
clock() view returns (uint48)
15
eip712Domain() view returns (bytes1 fields_, string name_, string version_, uint256 chainId_, address verifyingContract_, bytes32 salt_, uint256[] extensions_)
(fields_=0x0f, name_=StandardGovernor, version_=1, chainId_=1, verifyingContract_=0xb024ac5a7c6bc92fbacc8c3387e628a07e1da016, salt_=0x0000000000000000000000000000000000000000000000000000000000000000, extensions_=[])
emergencyGovernor() view returns (address)
0x886d405949f709bc3f4451491bdd07ff51cdf90a
maxTotalZeroRewardPerActiveEpoch() view returns (uint256)
5000000000000
name() view returns (string)
StandardGovernor
proposalFee() view returns (uint256)
200000000000000000
proposalThreshold() pure returns (uint256)
0
quorum() pure returns (uint256)
1
registrar() view returns (address)
0x119fbeedd4f4f4298fb59b720d5654442b81ae2c
token() view returns (address)
0x5983b89fa184f14917013b9c3062afd9434c5b03
vault() view returns (address)
0xd7298f620b0f752cf41bd818a16c756d9dcaa34f
voteToken() view returns (address)
0x5983b89fa184f14917013b9c3062afd9434c5b03
votingDelay() view returns (uint256)
2
votingPeriod() view returns (uint256)
0
zeroGovernor() view returns (address)
0xa0dafaeea4a1d44534e1b9227e19cae6358b80fe
zeroToken() view returns (address)
0x988567fe094570cce1ffda29d1f2d842b70492be
Read-only
getBallotDigest(uint256 proposalId_, uint8 support_) view returns (bytes32)
getBallotWithReasonDigest(uint256 proposalId_, uint8 support_, string reason_) view returns (bytes32)
getBallotsDigest(uint256[] proposalIds_, uint8[] supportList_) view returns (bytes32)
getBallotsWithReasonDigest(uint256[] proposalIds_, uint8[] supportList_, string[] reasonList_) view returns (bytes32)
getProposal(uint256 proposalId_) view returns (uint48 voteStart_, uint48 voteEnd_, uint8 state_, uint256 noVotes_, uint256 yesVotes_, address proposer_, uint256 quorum_)
getProposalFee(uint256 proposalId_) view returns (address cashToken_, uint256 fee_)
getVotes(address account_, uint256 timepoint_) view returns (uint256)
hasVoted(uint256 proposalId, address voter) view returns (bool hasVoted)
hasVotedOnAllProposals(address voter_, uint256 epoch_) view returns (bool)
hashProposal(address[], uint256[], bytes[] callDatas_, bytes32) view returns (uint256)
hashProposal(bytes callData_) view returns (uint256)
numberOfProposalsAt(uint256 epoch) view returns (uint256 count)
numberOfProposalsVotedOnAt(address voter, uint256 epoch) view returns (uint256 count)
proposalDeadline(uint256 proposalId_) view returns (uint256)
proposalProposer(uint256 proposalId_) view returns (address)
proposalSnapshot(uint256 proposalId_) view returns (uint256)
proposalVotes(uint256 proposalId_) view returns (uint256, uint256, uint256)
state(uint256 proposalId_) view returns (uint8)
State-modifying
Events addToList(bytes32 list_, address account_)
castVote(uint256 proposalId_, uint8 support_) returns (uint256 weight_)
castVoteBySig(address voter_, uint256 proposalId_, uint8 support_, bytes signature_) returns (uint256 weight_)
castVoteBySig(uint256 proposalId_, uint8 support_, uint8 v_, bytes32 r_, bytes32 s_) returns (uint256 weight_)
castVoteWithReason(uint256 proposalId_, uint8 support_, string reason_) returns (uint256 weight_)
castVoteWithReasonBySig(address voter_, uint256 proposalId_, uint8 support_, string reason_, bytes signature_) returns (uint256 weight_)
castVoteWithReasonBySig(uint256 proposalId_, uint8 support_, string reason_, uint8 v_, bytes32 r_, bytes32 s_) returns (uint256 weight_)
castVotes(uint256[] proposalIds_, uint8[] supportList_) returns (uint256 weight_)
castVotesBySig(address voter_, uint256[] proposalIds_, uint8[] supportList_, bytes signature_) returns (uint256 weight_)
castVotesBySig(uint256[] proposalIds_, uint8[] supportList_, uint8 v_, bytes32 r_, bytes32 s_) returns (uint256 weight_)
castVotesWithReason(uint256[] proposalIds_, uint8[] supportList_, string[] reasonList_) returns (uint256 weight_)
castVotesWithReasonBySig(address voter_, uint256[] proposalIds_, uint8[] supportList_, string[] reasonList_, bytes signature_) returns (uint256 weight_)
castVotesWithReasonBySig(uint256[] proposalIds_, uint8[] supportList_, string[] reasonList_, uint8 v_, bytes32 r_, bytes32 s_) returns (uint256 weight_)
execute(address[] targets_, uint256[] values_, bytes[] callDatas_, bytes32) payable returns (uint256 proposalId_)
propose(address[] targets_, uint256[] values_, bytes[] callDatas_, string description_) returns (uint256 proposalId_)
removeFromAndAddToList(bytes32 list_, address accountToRemove_, address accountToAdd_)
removeFromList(bytes32 list_, address account_)
sendProposalFeeToVault(uint256 proposalId_)
setCashToken(address newCashToken_, uint256 newProposalFee_)
setKey(bytes32 key_, bytes32 value_)
setProposalFee(uint256 newProposalFee_)
CashTokenSet(address indexed cashToken)
EIP712DomainChanged()
HasVotedOnAllProposals(address indexed voter, uint256 indexed currentEpoch)
ProposalCreated(uint256 proposalId, address proposer, address[] targets, uint256[] values, string[] signatures, bytes[] callDatas, uint256 voteStart, uint256 voteEnd, string description)
ProposalExecuted(uint256 proposalId)
ProposalFeeSentToVault(uint256 indexed proposalId, address indexed cashToken, uint256 amount)
ProposalFeeSet(uint256 proposalFee)
VoteCast(address indexed voter, uint256 proposalId, uint8 support, uint256 weight, string reason)
constructor(address voteToken_, address emergencyGovernor_, address zeroGovernor_, address cashToken_, address registrar_, address vault_, address zeroToken_, uint256 proposalFee_, uint256 maxTotalZeroRewardPerActiveEpoch_)
This contract contains no fallback and receive objects.
AlreadyVoted()
ArrayLengthMismatch(uint256 length1, uint256 length2)
EmptyProposalIdsArray()
ExecutionFailed(bytes data)
FeeNotDestinedForVault(uint8 state)
InvalidCallData()
InvalidCallDatasLength()
InvalidCashTokenAddress()
InvalidEmergencyGovernorAddress()
InvalidRegistrarAddress()
InvalidSignature()
InvalidSignatureLength()
InvalidSignatureS()
InvalidSignatureV()
InvalidTarget()
InvalidTargetsLength()
InvalidValue()
InvalidValuesLength()
InvalidVaultAddress()
InvalidVoteStart()
InvalidVoteTokenAddress()
InvalidZeroGovernorAddress()
InvalidZeroTokenAddress()
NoFeeToSend()
NotSelf()
NotSelfOrEmergencyGovernor()
NotZeroGovernor()
ProposalCannotBeExecuted()
ProposalDoesNotExist()
ProposalExists()
ProposalInactive(uint8 state)
SignatureExpired(uint256 deadline, uint256 timestamp)
SignerMismatch()
TransferFailed()
TransferFromFailed()
ZeroVotingPower()