Sweepers Governance
Verified contract
Proxy
Active on
Ethereum with 277 txns
Unified storage
Map
Table
Raw
Constants and immutables
0
Slot
XX
32
30
28
26
24
22
20
18
16
14
12
10
8
6
4
2
0
0x8110…a23d
0xc95e…b45b
Balances ($0.00)
No balances found for "Sweepers Governance"
Transactions
Txn hash | Method | Block | Age | From | To | Value (ETH) | Fee (ETH) |
---|---|---|---|---|---|---|---|
| 16529270 | 2 years ago | | | 0 | 0.0012157969 | |
| 16500671 | 2 years ago | | | 0 | 0.00058783431 | |
| 16419756 | 2 years ago | | | 0 | 0.0018715503 | |
| 16411918 | 2 years ago | | | 0 | 0.0018265159 | |
| 16389442 | 2 years ago | | | 0 | 0.0010992996 | |
| 16388239 | 2 years ago | | | 0 | 0.0013572015 | |
| 16387944 | 2 years ago | | | 0 | 0.0017427294 | |
| 16386390 | 2 years ago | | | 0 | 0.0019982268 | |
| 16386073 | 2 years ago | | | 0 | 0.010890848 | |
| 16300449 | 2 years ago | | | 0 | 0.0013683376 |
ABI
ABI objects
Getter at block 21213697
admin() view returns (address)
0x9d0717faddb61c48e3fce46abc2b2dcaa43d1255
implementation() view returns (address)
0x3a61f1e8f28b24f64a10fb560e2d58c29da67815
pendingAdmin() view returns (address)
0x0000000000000000000000000000000000000000
BALLOT_TYPEHASH() view returns (bytes32)
0x150214d74d59b7d1e90c73fc22ef3d991dd0a76b046543d4d80ab92d2a50328f
DOMAIN_TYPEHASH() view returns (bytes32)
0x8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866
MAX_PROPOSAL_THRESHOLD_BPS() view returns (uint256)
1000
MAX_QUORUM_VOTES_BPS() view returns (uint256)
2000
MAX_VOTING_DELAY() view returns (uint256)
40320
MAX_VOTING_PERIOD() view returns (uint256)
80640
MIN_PROPOSAL_THRESHOLD_BPS() view returns (uint256)
1
MIN_QUORUM_VOTES_BPS() view returns (uint256)
200
MIN_VOTING_DELAY() view returns (uint256)
1
MIN_VOTING_PERIOD() view returns (uint256)
100
admin() view returns (address)
0x9d0717faddb61c48e3fce46abc2b2dcaa43d1255
implementation() view returns (address)
0x3a61f1e8f28b24f64a10fb560e2d58c29da67815
name() view returns (string)
Sweepers Governance
pendingAdmin() view returns (address)
0x0000000000000000000000000000000000000000
proposalCount() view returns (uint256)
34
proposalMaxOperations() view returns (uint256)
10
proposalThreshold() view returns (uint256)
4
proposalThresholdBPS() view returns (uint256)
200
proposalThresholdStrict() view returns (uint256)
4
quorumVotes() view returns (uint256)
60
quorumVotesBPS() view returns (uint256)
1000
sweepers() view returns (address)
0xc95efc5203ce255db12193119c73d13bcbc0b45b
targetsRestricted() view returns (bool)
true
timelock() view returns (address)
0x811074e281d86f862dc84e7df80ed38aa22aa23d
useProposalThresholdBPS() view returns (bool)
false
vetoer() view returns (address)
0x9d0717faddb61c48e3fce46abc2b2dcaa43d1255
votingDelay() view returns (uint256)
298
votingPeriod() view returns (uint256)
14300
Read-only
allowedTargets(address) view returns (bool)
getActions(uint256 proposalId) view returns (address[] targets, uint256[] values, string[] signatures, bytes[] calldatas)
getReceipt(uint256 proposalId, address voter) view returns (struct SweepersGovernanceStorageV1Receipt)
latestProposalIds(address) view returns (uint256)
proposals(uint256) view returns (uint256 id, address proposer, uint256 proposalThreshold, uint256 quorumVotes, uint256 eta, string openseaSlug, address project, uint256 startBlock, uint256 endBlock, uint256 forVotes, uint256 againstVotes, uint256 abstainVotes, bool canceled, bool vetoed, bool executed)
state(uint256 proposalId) view returns (uint8)
State-modifying
Events _setImplementation(address implementation_)
_acceptAdmin()
_burnVetoPower()
_setAllowedTarget(address _target, bool _allowed)
_setPendingAdmin(address newPendingAdmin)
_setProposalThresholdBPS(uint256 newProposalThresholdBPS)
_setProposalThresholdStrict(uint256 newProposalThresholdStrict)
_setQuorumVotesBPS(uint256 newQuorumVotesBPS)
_setTargetsRestricted(bool _targetsRestricted)
_setUseProposalThresholdBPS(bool _useProposalThresholdBPS)
_setVetoer(address newVetoer)
_setVotingDelay(uint256 newVotingDelay)
_setVotingPeriod(uint256 newVotingPeriod)
cancel(uint256 proposalId)
castVote(uint256 proposalId, uint8 support)
castVoteBySig(uint256 proposalId, uint8 support, uint8 v, bytes32 r, bytes32 s)
castVoteWithReason(uint256 proposalId, uint8 support, string reason)
execute(uint256 proposalId)
initialize(address timelock_, address sweepers_, address vetoer_, uint256 votingPeriod_, uint256 votingDelay_, uint256 proposalThresholdBPS_, uint256 quorumVotesBPS_)
propose(address[] targets, uint256[] values, string[] signatures, bytes[] calldatas, string description, string openseaSlug, address project) returns (uint256)
queue(uint256 proposalId)
veto(uint256 proposalId)
NewAdmin(address oldAdmin, address newAdmin)
NewImplementation(address oldImplementation, address newImplementation)
NewPendingAdmin(address oldPendingAdmin, address newPendingAdmin)
NewVetoer(address oldVetoer, address newVetoer)
ProposalCanceled(uint256 id)
ProposalCreated(uint256 id, address proposer, address[] targets, uint256[] values, string[] signatures, bytes[] calldatas, uint256 startBlock, uint256 endBlock, string description, string openseaSlug, address project)
ProposalCreatedWithRequirements(uint256 id, address proposer, address[] targets, uint256[] values, string[] signatures, bytes[] calldatas, uint256 startBlock, uint256 endBlock, uint256 proposalThreshold, uint256 quorumVotes, string description, string openseaSlug, address project)
ProposalExecuted(uint256 id)
ProposalQueued(uint256 id, uint256 eta)
ProposalThresholdBPSSet(uint256 oldProposalThresholdBPS, uint256 newProposalThresholdBPS)
ProposalThresholdStrictSet(uint256 oldProposalThresholdStrict, uint256 newProposalThresholdStrict)
ProposalVetoed(uint256 id)
QuorumVotesBPSSet(uint256 oldQuorumVotesBPS, uint256 newQuorumVotesBPS)
VoteCast(address indexed voter, uint256 proposalId, uint8 support, uint256 votes, string reason)
VotingDelaySet(uint256 oldVotingDelay, uint256 newVotingDelay)
VotingPeriodSet(uint256 oldVotingPeriod, uint256 newVotingPeriod)
NewAdmin(address oldAdmin, address newAdmin)
NewImplementation(address oldImplementation, address newImplementation)
NewPendingAdmin(address oldPendingAdmin, address newPendingAdmin)
NewVetoer(address oldVetoer, address newVetoer)
ProposalCanceled(uint256 id)
ProposalCreated(uint256 id, address proposer, address[] targets, uint256[] values, string[] signatures, bytes[] calldatas, uint256 startBlock, uint256 endBlock, string description, string openseaSlug, address project)
ProposalCreatedWithRequirements(uint256 id, address proposer, address[] targets, uint256[] values, string[] signatures, bytes[] calldatas, uint256 startBlock, uint256 endBlock, uint256 proposalThreshold, uint256 quorumVotes, string description, string openseaSlug, address project)
ProposalExecuted(uint256 id)
ProposalQueued(uint256 id, uint256 eta)
ProposalThresholdBPSSet(uint256 oldProposalThresholdBPS, uint256 newProposalThresholdBPS)
ProposalThresholdStrictSet(uint256 oldProposalThresholdStrict, uint256 newProposalThresholdStrict)
ProposalVetoed(uint256 id)
QuorumVotesBPSSet(uint256 oldQuorumVotesBPS, uint256 newQuorumVotesBPS)
VoteCast(address indexed voter, uint256 proposalId, uint8 support, uint256 votes, string reason)
VotingDelaySet(uint256 oldVotingDelay, uint256 newVotingDelay)
VotingPeriodSet(uint256 oldVotingPeriod, uint256 newVotingPeriod)
constructor(address timelock_, address sweepers_, address vetoer_, address admin_, address implementation_, uint256 votingPeriod_, uint256 votingDelay_, uint256 proposalThresholdBPS_, uint256 quorumVotesBPS_)
fallback()
receive()
This contract contains no error objects.