ERC1967Proxy
Verified contract
Proxy
Active on
Ethereum with 458 txns
Unified storage
Map
Table
Raw
Constants and immutables
2
Slot
XX
32
30
28
26
24
22
20
18
16
14
12
10
8
6
4
2
0
-
variable spans 2 additional slots
Balances ($0.00)
No balances found for "ERC1967Proxy"
Transactions
Txn hash | Method | Block | Age | From | To | Value (ETH) | Fee (ETH) |
---|---|---|---|---|---|---|---|
| 21213850 | a day ago | | | 0 | 0.00083947553 | |
| 21197097 | 3 days ago | | | 0 | 0.0010251939 | |
| 21195219 | 4 days ago | | | 0 | 0.0012910054 | |
| 21195208 | 4 days ago | | | 0 | 0.0012778287 | |
| 21194709 | 4 days ago | | | 0 | 0.0018431960 | |
| 21194693 | 4 days ago | | | 0 | 0.0018210399 | |
| 21193985 | 4 days ago | | | 0 | 0.0022322777 | |
| 21189972 | 4 days ago | | | 0 | 0.0011819909 | |
| 21168104 | 7 days ago | | | 0 | 0.0048130933 | |
| 20131172 | 5 months ago | | | 0 | 0.0015811426 |
ABI
ABI objects
Getter at block 21220583 proxiableUUID() view returns (bytes32)
DOMAIN_SEPARATOR() view returns (bytes32)
0x3a12c6851980ff17cafac6a6f53198f9a04c36a6000b56a1a23c2cd1a730ccc5
MAX_PROPOSAL_THRESHOLD_BPS() view returns (uint256)
1000
MAX_QUORUM_THRESHOLD_BPS() view returns (uint256)
2000
MAX_VOTING_DELAY() view returns (uint256)
14515200
MAX_VOTING_PERIOD() view returns (uint256)
14515200
MIN_PROPOSAL_THRESHOLD_BPS() view returns (uint256)
1
MIN_QUORUM_THRESHOLD_BPS() view returns (uint256)
200
MIN_VOTING_DELAY() view returns (uint256)
1
MIN_VOTING_PERIOD() view returns (uint256)
600
VOTE_TYPEHASH() view returns (bytes32)
0x4b87515bde17bd1a40e570a7c028fa4b7e66dd1ed9dc7c0cd8fd78d67ca34f28
contractVersion() pure returns (string)
1.2.0
owner() view returns (address)
0x673d37b930397c0defb51237e6fc42fed87b722f
pendingOwner() view returns (address)
0x0000000000000000000000000000000000000000
proposalThreshold() view returns (uint256)
1
proposalThresholdBps() view returns (uint256)
50
quorum() view returns (uint256)
31
quorumThresholdBps() view returns (uint256)
1000
token() view returns (address)
0x96e396e66087b2b9dcad36fd473e1b049df18998
treasury() view returns (address)
0x673d37b930397c0defb51237e6fc42fed87b722f
vetoer() view returns (address)
0x589ffbbda0eacd5a9c2ba208b379c886b2630503
votingDelay() view returns (uint256)
172800
votingPeriod() view returns (uint256)
172800
Read-only
getProposal(bytes32 _proposalId) view returns (struct GovernorTypesV1Proposal)
getVotes(address _account, uint256 _timestamp) view returns (uint256)
hashProposal(address[] _targets, uint256[] _values, bytes[] _calldatas, bytes32 _descriptionHash, address _proposer) pure returns (bytes32)
nonce(address _account) view returns (uint256)
proposalDeadline(bytes32 _proposalId) view returns (uint256)
proposalEta(bytes32 _proposalId) view returns (uint256)
proposalSnapshot(bytes32 _proposalId) view returns (uint256)
proposalVotes(bytes32 _proposalId) view returns (uint256, uint256, uint256)
state(bytes32 _proposalId) view returns (uint8)
State-modifying
Events acceptOwnership()
burnVetoer()
cancel(bytes32 _proposalId)
cancelOwnershipTransfer()
castVote(bytes32 _proposalId, uint256 _support) returns (uint256)
castVoteBySig(address _voter, bytes32 _proposalId, uint256 _support, uint256 _deadline, uint8 _v, bytes32 _r, bytes32 _s) returns (uint256)
castVoteWithReason(bytes32 _proposalId, uint256 _support, string _reason) returns (uint256)
execute(address[] _targets, uint256[] _values, bytes[] _calldatas, bytes32 _descriptionHash, address _proposer) payable returns (bytes32)
initialize(address _treasury, address _token, address _vetoer, uint256 _votingDelay, uint256 _votingPeriod, uint256 _proposalThresholdBps, uint256 _quorumThresholdBps)
propose(address[] _targets, uint256[] _values, bytes[] _calldatas, string _description) returns (bytes32)
queue(bytes32 _proposalId) returns (uint256 eta)
safeTransferOwnership(address _newOwner)
transferOwnership(address _newOwner)
updateProposalThresholdBps(uint256 _newProposalThresholdBps)
updateQuorumThresholdBps(uint256 _newQuorumVotesBps)
updateVetoer(address _newVetoer)
updateVotingDelay(uint256 _newVotingDelay)
updateVotingPeriod(uint256 _newVotingPeriod)
upgradeTo(address _newImpl)
upgradeToAndCall(address _newImpl, bytes _data) payable
veto(bytes32 _proposalId)
Upgraded(address impl)
Initialized(uint256 version)
OwnerCanceled(address indexed owner, address indexed canceledOwner)
OwnerPending(address indexed owner, address indexed pendingOwner)
OwnerUpdated(address indexed prevOwner, address indexed newOwner)
ProposalCanceled(bytes32 proposalId)
ProposalCreated(bytes32 proposalId, address[] targets, uint256[] values, bytes[] calldatas, string description, bytes32 descriptionHash, struct GovernorTypesV1Proposal proposal)
ProposalExecuted(bytes32 proposalId)
ProposalQueued(bytes32 proposalId, uint256 eta)
ProposalThresholdBpsUpdated(uint256 prevBps, uint256 newBps)
ProposalVetoed(bytes32 proposalId)
QuorumVotesBpsUpdated(uint256 prevBps, uint256 newBps)
Upgraded(address impl)
VetoerUpdated(address prevVetoer, address newVetoer)
VoteCast(address voter, bytes32 proposalId, uint256 support, uint256 weight, string reason)
VotingDelayUpdated(uint256 prevVotingDelay, uint256 newVotingDelay)
VotingPeriodUpdated(uint256 prevVotingPeriod, uint256 newVotingPeriod)
constructor(address _logic, bytes _data)
fallback()
receive()
DELEGATE_CALL_FAILED()
INVALID_TARGET()
INVALID_UPGRADE(address impl)
ONLY_UUPS()
UNSUPPORTED_UUID()
ADDRESS_ZERO()
ALREADY_INITIALIZED()
ALREADY_VOTED()
BELOW_PROPOSAL_THRESHOLD()
DELEGATE_CALL_FAILED()
EXPIRED_SIGNATURE()
INITIALIZING()
INVALID_CANCEL()
INVALID_PROPOSAL_THRESHOLD_BPS()
INVALID_QUORUM_THRESHOLD_BPS()
INVALID_SIGNATURE()
INVALID_TARGET()
INVALID_UPGRADE(address impl)
INVALID_VOTE()
INVALID_VOTING_DELAY()
INVALID_VOTING_PERIOD()
NOT_INITIALIZING()
ONLY_CALL()
ONLY_DELEGATECALL()
ONLY_MANAGER()
ONLY_OWNER()
ONLY_PENDING_OWNER()
ONLY_PROXY()
ONLY_UUPS()
ONLY_VETOER()
PROPOSAL_ALREADY_EXECUTED()
PROPOSAL_DOES_NOT_EXIST()
PROPOSAL_EXISTS(bytes32 proposalId)
PROPOSAL_LENGTH_MISMATCH()
PROPOSAL_NOT_QUEUED(bytes32 proposalId)
PROPOSAL_TARGET_MISSING()
PROPOSAL_UNSUCCESSFUL()
UNSAFE_CAST()
UNSUPPORTED_UUID()
VOTING_NOT_STARTED()