Source Code
Latest 25 from a total of 38 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Stake | 23981971 | 3 days ago | IN | 0 ETH | 0.00002622 | ||||
| Stake | 23975126 | 4 days ago | IN | 0 ETH | 0.00022344 | ||||
| Stake | 23459481 | 76 days ago | IN | 0 ETH | 0.00001562 | ||||
| Unstake | 23405526 | 83 days ago | IN | 0 ETH | 0.00001954 | ||||
| Unstake | 23276073 | 101 days ago | IN | 0 ETH | 0.00006076 | ||||
| Stake | 23170460 | 116 days ago | IN | 0 ETH | 0.00003338 | ||||
| Stake | 23147199 | 119 days ago | IN | 0 ETH | 0.0003677 | ||||
| Unstake | 23147074 | 119 days ago | IN | 0 ETH | 0.0001664 | ||||
| Stake | 23119245 | 123 days ago | IN | 0 ETH | 0.00008672 | ||||
| Stake | 22572598 | 200 days ago | IN | 0 ETH | 0.00011752 | ||||
| Stake | 22017356 | 277 days ago | IN | 0 ETH | 0.00037332 | ||||
| Unstake | 21983224 | 282 days ago | IN | 0 ETH | 0.0000314 | ||||
| Unstake | 21983222 | 282 days ago | IN | 0 ETH | 0.00007705 | ||||
| Stake | 21912787 | 292 days ago | IN | 0 ETH | 0.00011393 | ||||
| Stake | 21847209 | 301 days ago | IN | 0 ETH | 0.00009552 | ||||
| Stake | 21585708 | 338 days ago | IN | 0 ETH | 0.00051241 | ||||
| Unstake | 21585539 | 338 days ago | IN | 0 ETH | 0.00040455 | ||||
| Stake | 21309454 | 376 days ago | IN | 0 ETH | 0.00152902 | ||||
| Stake | 19943354 | 567 days ago | IN | 0 ETH | 0.00039738 | ||||
| Stake | 19820677 | 584 days ago | IN | 0 ETH | 0.00053521 | ||||
| Unstake | 19811246 | 585 days ago | IN | 0 ETH | 0.0005671 | ||||
| Unstake | 19706964 | 600 days ago | IN | 0 ETH | 0.00029818 | ||||
| Unstake | 19621441 | 612 days ago | IN | 0 ETH | 0.00133548 | ||||
| Stake | 19474754 | 633 days ago | IN | 0 ETH | 0.00170121 | ||||
| Unstake | 19474169 | 633 days ago | IN | 0 ETH | 0.0017898 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
BancorGovernance
Compiler Version
v0.6.12+commit.27d51765
Optimization Enabled:
Yes with 200 runs
Other Settings:
istanbul EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
/*
____ __ __ __ _
/ __/__ __ ___ / /_ / / ___ / /_ (_)__ __
_\ \ / // // _ \/ __// _ \/ -_)/ __// / \ \ /
/___/ \_, //_//_/\__//_//_/\__/ \__//_/ /_\_\
/___/
* Synthetix: YFIRewards.sol
*
* Docs: https://docs.synthetix.io/
*
*
* MIT License
* ===========
*
* Copyright (c) 2020 Synthetix
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
*/
pragma solidity 0.6.12;
import "@bancor/contracts-solidity/solidity/contracts/utility/Owned.sol";
import "@openzeppelin/contracts/math/Math.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import "./interfaces/IExecutor.sol";
/**
* @title The Bancor Governance Contract
*
* Big thanks to synthetix / yearn.finance for the initial version!
*/
contract BancorGovernance is Owned {
using SafeMath for uint256;
using SafeERC20 for IERC20;
uint32 internal constant PPM_RESOLUTION = 1000000;
struct Proposal {
uint256 id;
mapping(address => uint256) votesFor;
mapping(address => uint256) votesAgainst;
uint256 totalVotesFor;
uint256 totalVotesAgainst;
uint256 start; // start timestmp;
uint256 end; // start + voteDuration
uint256 totalAvailableVotes;
uint256 quorum;
uint256 quorumRequired;
bool open;
bool executed;
address proposer;
address executor;
string hash;
}
/**
* @notice triggered when a new proposal is created
*
* @param _id proposal id
* @param _start voting start timestamp
* @param _duration voting duration
* @param _proposer proposal creator
* @param _executor contract that will exeecute the proposal once it passes
*/
event NewProposal(
uint256 indexed _id,
uint256 _start,
uint256 _duration,
address _proposer,
address _executor
);
/**
* @notice triggered when voting on a proposal has ended
*
* @param _id proposal id
* @param _for number of votes for the proposal
* @param _against number of votes against the proposal
* @param _quorumReached true if quorum was reached, false otherwise
*/
event ProposalFinished(
uint256 indexed _id,
uint256 _for,
uint256 _against,
bool _quorumReached
);
/**
* @notice triggered when a proposal was successfully executed
*
* @param _id proposal id
* @param _executor contract that will execute the proposal once it passes
*/
event ProposalExecuted(uint256 indexed _id, address indexed _executor);
/**
* @notice triggered when a stake has been added to the contract
*
* @param _user staker address
* @param _amount staked amount
*/
event Staked(address indexed _user, uint256 _amount);
/**
* @notice triggered when a stake has been removed from the contract
*
* @param _user staker address
* @param _amount unstaked amount
*/
event Unstaked(address indexed _user, uint256 _amount);
/**
* @notice triggered when a user votes on a proposal
*
* @param _id proposal id
* @param _voter voter addrerss
* @param _vote true if the vote is for the proposal, false otherwise
* @param _weight number of votes
*/
event Vote(uint256 indexed _id, address indexed _voter, bool _vote, uint256 _weight);
/**
* @notice triggered when the quorum is updated
*
* @param _quorum new quorum
*/
event QuorumUpdated(uint256 _quorum);
/**
* @notice triggered when the minimum stake required to create a new proposal is updated
*
* @param _minimum new minimum
*/
event NewProposalMinimumUpdated(uint256 _minimum);
/**
* @notice triggered when the vote duration is updated
*
* @param _voteDuration new vote duration
*/
event VoteDurationUpdated(uint256 _voteDuration);
/**
* @notice triggered when the vote lock duration is updated
*
* @param _duration new vote lock duration
*/
event VoteLockDurationUpdated(uint256 _duration);
// PROPOSALS
// voting duration in seconds
uint256 public voteDuration = 3 days;
// vote lock in seconds
uint256 public voteLockDuration = 3 days;
// the fraction of vote lock used to lock voter to avoid rapid unstaking
uint256 public constant voteLockFraction = 10;
// minimum stake required to propose
uint256 public newProposalMinimum = 1e18;
// quorum needed for a proposal to pass, default = 20%
uint256 public quorum = 200000;
// sum of current total votes
uint256 public totalVotes;
// number of proposals
uint256 public proposalCount;
// proposals by id
mapping(uint256 => Proposal) public proposals;
// VOTES
// governance token used for votes
IERC20 public immutable govToken;
// lock duration for each voter stake by voter address
mapping(address => uint256) public voteLocks;
// number of votes for each user
mapping(address => uint256) private votes;
/**
* @notice used to initialize a new BancorGovernance contract
*
* @param _govToken token used to represents votes
*/
constructor(IERC20 _govToken) public {
require(address(_govToken) != address(0), "ERR_NO_TOKEN");
govToken = _govToken;
}
/**
* @notice allows execution by staker only
*/
modifier onlyStaker() {
require(votes[msg.sender] > 0, "ERR_NOT_STAKER");
_;
}
/**
* @notice allows execution only when the proposal exists
*
* @param _id proposal id
*/
modifier proposalExists(uint256 _id) {
Proposal memory proposal = proposals[_id];
require(proposal.start > 0 && proposal.start < block.timestamp, "ERR_INVALID_ID");
_;
}
/**
* @notice allows execution only when the proposal is still open
*
* @param _id proposal id
*/
modifier proposalOpen(uint256 _id) {
Proposal memory proposal = proposals[_id];
require(proposal.open, "ERR_NOT_OPEN");
_;
}
/**
* @notice allows execution only when the proposal with given id is open
*
* @param _id proposal id
*/
modifier proposalNotEnded(uint256 _id) {
Proposal memory proposal = proposals[_id];
require(proposal.end >= block.timestamp, "ERR_ENDED");
_;
}
/**
* @notice allows execution only when the proposal with given id has ended
*
* @param _id proposal id
*/
modifier proposalEnded(uint256 _id) {
Proposal memory proposal = proposals[_id];
require(proposal.end <= block.timestamp, "ERR_NOT_ENDED");
_;
}
/**
* @notice verifies that a value is greater than zero
*
* @param _value value to check for zero
*/
modifier greaterThanZero(uint256 _value) {
require(_value > 0, "ERR_ZERO_VALUE");
_;
}
/**
* @notice Updates the vote lock on the sender
*
* @param _proposalEnd proposal end time
*/
function updateVoteLock(uint256 _proposalEnd) private onlyStaker {
voteLocks[msg.sender] = Math.max(
voteLocks[msg.sender],
Math.max(_proposalEnd, voteLockDuration.add(block.timestamp))
);
}
/**
* @notice does the common vote finalization
*
* @param _id the id of the proposal to vote
* @param _for is this vote for or against the proposal
*/
function vote(uint256 _id, bool _for)
private
onlyStaker
proposalExists(_id)
proposalOpen(_id)
proposalNotEnded(_id)
{
Proposal storage proposal = proposals[_id];
if (_for) {
uint256 votesAgainst = proposal.votesAgainst[msg.sender];
// do we have against votes for this sender?
if (votesAgainst > 0) {
// yes, remove the against votes first
proposal.totalVotesAgainst = proposal.totalVotesAgainst.sub(votesAgainst);
proposal.votesAgainst[msg.sender] = 0;
}
} else {
// get against votes for this sender
uint256 votesFor = proposal.votesFor[msg.sender];
// do we have for votes for this sender?
if (votesFor > 0) {
proposal.totalVotesFor = proposal.totalVotesFor.sub(votesFor);
proposal.votesFor[msg.sender] = 0;
}
}
// calculate voting power in case voting against twice
uint256 voteAmount = votesOf(msg.sender).sub(
_for ? proposal.votesFor[msg.sender] : proposal.votesAgainst[msg.sender]
);
if (_for) {
// increase total for votes of the proposal
proposal.totalVotesFor = proposal.totalVotesFor.add(voteAmount);
// set for votes to the votes of the sender
proposal.votesFor[msg.sender] = votesOf(msg.sender);
} else {
// increase total against votes of the proposal
proposal.totalVotesAgainst = proposal.totalVotesAgainst.add(voteAmount);
// set against votes to the votes of the sender
proposal.votesAgainst[msg.sender] = votesOf(msg.sender);
}
// update total votes available on the proposal
proposal.totalAvailableVotes = totalVotes;
// recalculate quorum based on overall votes
proposal.quorum = calculateQuorumRatio(proposal);
// update vote lock
updateVoteLock(proposal.end);
// emit vote event
emit Vote(proposal.id, msg.sender, _for, voteAmount);
}
/**
* @notice returns the quorum ratio of a proposal
*
* @param _proposal proposal
* @return quorum ratio
*/
function calculateQuorumRatio(Proposal memory _proposal) internal view returns (uint256) {
// calculate overall votes
uint256 totalProposalVotes = _proposal.totalVotesFor.add(_proposal.totalVotesAgainst);
return totalProposalVotes.mul(PPM_RESOLUTION).div(totalVotes);
}
/**
* @notice removes the caller's entire stake
*/
function exit() external {
unstake(votesOf(msg.sender));
}
/**
* @notice returns the voting stats of a proposal
*
* @param _id proposal id
* @return votes for ratio
* @return votes against ratio
* @return quorum ratio
*/
function proposalStats(uint256 _id)
public
view
returns (
uint256,
uint256,
uint256
)
{
Proposal memory proposal = proposals[_id];
uint256 forRatio = proposal.totalVotesFor;
uint256 againstRatio = proposal.totalVotesAgainst;
// calculate overall total votes
uint256 totalProposalVotes = forRatio.add(againstRatio);
// calculate for votes ratio
forRatio = forRatio.mul(PPM_RESOLUTION).div(totalProposalVotes);
// calculate against votes ratio
againstRatio = againstRatio.mul(PPM_RESOLUTION).div(totalProposalVotes);
// calculate quorum ratio
uint256 quorumRatio = totalProposalVotes.mul(PPM_RESOLUTION).div(
proposal.totalAvailableVotes
);
return (forRatio, againstRatio, quorumRatio);
}
/**
* @notice returns the voting power of a given address
*
* @param _voter voter address
* @return votes of given address
*/
function votesOf(address _voter) public view returns (uint256) {
return votes[_voter];
}
/**
* @notice returns the voting power of a given address against a given proposal
*
* @param _voter voter address
* @param _id proposal id
* @return votes of given address against given proposal
*/
function votesAgainstOf(address _voter, uint256 _id) public view returns (uint256) {
return proposals[_id].votesAgainst[_voter];
}
/**
* @notice returns the voting power of a given address for a given proposal
*
* @param _voter voter address
* @param _id proposal id
* @return votes of given address for given proposal
*/
function votesForOf(address _voter, uint256 _id) public view returns (uint256) {
return proposals[_id].votesFor[_voter];
}
/**
* @notice updates the quorum needed for proposals to pass
*
* @param _quorum required quorum
*/
function setQuorum(uint256 _quorum) public ownerOnly greaterThanZero(_quorum) {
// check quorum for not being above 100
require(_quorum <= PPM_RESOLUTION, "ERR_QUORUM_TOO_HIGH");
quorum = _quorum;
emit QuorumUpdated(_quorum);
}
/**
* @notice updates the minimum stake required to create a new proposal
*
* @param _minimum minimum stake
*/
function setNewProposalMinimum(uint256 _minimum) public ownerOnly greaterThanZero(_minimum) {
require(_minimum <= govToken.totalSupply(), "ERR_EXCEEDS_TOTAL_SUPPLY");
newProposalMinimum = _minimum;
emit NewProposalMinimumUpdated(_minimum);
}
/**
* @notice updates the proposals voting duration
*
* @param _voteDuration vote duration
*/
function setVoteDuration(uint256 _voteDuration)
public
ownerOnly
greaterThanZero(_voteDuration)
{
voteDuration = _voteDuration;
emit VoteDurationUpdated(_voteDuration);
}
/**
* @notice updates the post vote lock duration
*
* @param _duration new vote lock duration
*/
function setVoteLockDuration(uint256 _duration) public ownerOnly greaterThanZero(_duration) {
voteLockDuration = _duration;
emit VoteLockDurationUpdated(_duration);
}
/**
* @notice creates a new proposal
*
* @param _executor the address of the contract that will execute the proposal after it passes
* @param _hash ipfs hash of the proposal description
*/
function propose(address _executor, string memory _hash) public {
require(votesOf(msg.sender) >= newProposalMinimum, "ERR_INSUFFICIENT_STAKE");
uint256 id = proposalCount;
// increment proposal count so next proposal gets the next higher id
proposalCount = proposalCount.add(1);
// create new proposal
Proposal memory proposal = Proposal({
id: id,
proposer: msg.sender,
totalVotesFor: 0,
totalVotesAgainst: 0,
start: block.timestamp,
end: voteDuration.add(block.timestamp),
executor: _executor,
hash: _hash,
totalAvailableVotes: totalVotes,
quorum: 0,
quorumRequired: quorum,
open: true,
executed: false
});
proposals[id] = proposal;
// lock proposer
updateVoteLock(proposal.end);
// emit proposal event
emit NewProposal(id, proposal.start, voteDuration, proposal.proposer, proposal.executor);
}
/**
* @notice executes a proposal
*
* @param _id id of the proposal to execute
*/
function execute(uint256 _id) public proposalExists(_id) proposalEnded(_id) {
// check for executed status
require(!proposals[_id].executed, "ERR_ALREADY_EXECUTED");
// get voting info of proposal
(uint256 forRatio, uint256 againstRatio, uint256 quorumRatio) = proposalStats(_id);
// check proposal state
require(quorumRatio >= proposals[_id].quorumRequired, "ERR_NO_QUORUM");
// if the proposal is still open
if (proposals[_id].open) {
// tally votes
tallyVotes(_id);
}
// set executed
proposals[_id].executed = true;
// do execution on the contract to be executed
// note that this is a safe call as it was part of the proposal that was voted on
IExecutor(proposals[_id].executor).execute(_id, forRatio, againstRatio, quorumRatio);
// emit proposal executed event
emit ProposalExecuted(_id, proposals[_id].executor);
}
/**
* @notice tallies votes of proposal with given id
*
* @param _id id of the proposal to tally votes for
*/
function tallyVotes(uint256 _id)
public
proposalExists(_id)
proposalOpen(_id)
proposalEnded(_id)
{
// get voting info of proposal
(uint256 forRatio, uint256 againstRatio, ) = proposalStats(_id);
// do we have a quorum?
bool quorumReached = proposals[_id].quorum >= proposals[_id].quorumRequired;
// close proposal
proposals[_id].open = false;
// emit proposal finished event
emit ProposalFinished(_id, forRatio, againstRatio, quorumReached);
}
/**
* @notice stakes vote tokens
*
* @param _amount amount of vote tokens to stake
*/
function stake(uint256 _amount) public greaterThanZero(_amount) {
// increase vote power
votes[msg.sender] = votesOf(msg.sender).add(_amount);
// increase total votes
totalVotes = totalVotes.add(_amount);
// transfer tokens to this contract
govToken.safeTransferFrom(msg.sender, address(this), _amount);
// lock staker to avoid flashloans messing around with total votes
voteLocks[msg.sender] = Math.max(
voteLocks[msg.sender],
Math.max(voteLockDuration.div(voteLockFraction), 10 minutes).add(block.timestamp)
);
// emit staked event
emit Staked(msg.sender, _amount);
}
/**
* @notice unstakes vote tokens
*
* @param _amount amount of vote tokens to unstake
*/
function unstake(uint256 _amount) public greaterThanZero(_amount) {
require(voteLocks[msg.sender] < block.timestamp, "ERR_LOCKED");
// reduce votes for user
votes[msg.sender] = votesOf(msg.sender).sub(_amount);
// reduce total votes
totalVotes = totalVotes.sub(_amount);
// transfer tokens back
govToken.safeTransfer(msg.sender, _amount);
// emit unstaked event
emit Unstaked(msg.sender, _amount);
}
/**
* @notice votes for a proposal
*
* @param _id id of the proposal to vote for
*/
function voteFor(uint256 _id) public {
vote(_id, true);
}
/**
* @notice votes against a proposal
*
* @param _id id of the proposal to vote against
*/
function voteAgainst(uint256 _id) public {
vote(_id, false);
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2 <0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
// solhint-disable-next-line no-inline-assembly
assembly { size := extcodesize(account) }
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(bool success, ) = recipient.call{ value: amount }("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain`call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: value }(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.staticcall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.delegatecall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "./IERC20.sol";
import "../../math/SafeMath.sol";
import "../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using SafeMath for uint256;
using Address for address;
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(IERC20 token, address spender, uint256 value) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
// solhint-disable-next-line max-line-length
require((value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).add(value);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) { // Return data is optional
// solhint-disable-next-line max-line-length
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (b > a) return (false, 0);
return (true, a - b);
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (b == 0) return (false, 0);
return (true, a / b);
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (b == 0) return (false, 0);
return (true, a % b);
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
require(b <= a, "SafeMath: subtraction overflow");
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) return 0;
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
require(b > 0, "SafeMath: division by zero");
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
require(b > 0, "SafeMath: modulo by zero");
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
return a - b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryDiv}.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
return a % b;
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a >= b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow, so we distribute
return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
}
}// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.6.12;
/*
Owned contract interface
*/
interface IOwned {
// this function isn't since the compiler emits automatically generated getter functions as external
function owner() external view returns (address);
function transferOwnership(address _newOwner) external;
function acceptOwnership() external;
}// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity 0.6.12;
import "./interfaces/IOwned.sol";
/**
* @dev Provides support and utilities for contract ownership
*/
contract Owned is IOwned {
address public override owner;
address public newOwner;
/**
* @dev triggered when the owner is updated
*
* @param _prevOwner previous owner
* @param _newOwner new owner
*/
event OwnerUpdate(address indexed _prevOwner, address indexed _newOwner);
/**
* @dev initializes a new Owned instance
*/
constructor() public {
owner = msg.sender;
}
// allows execution by the owner only
modifier ownerOnly {
_ownerOnly();
_;
}
// error message binary size optimization
function _ownerOnly() internal view {
require(msg.sender == owner, "ERR_ACCESS_DENIED");
}
/**
* @dev allows transferring the contract ownership
* the new owner still needs to accept the transfer
* can only be called by the contract owner
*
* @param _newOwner new contract owner
*/
function transferOwnership(address _newOwner) public override ownerOnly {
require(_newOwner != owner, "ERR_SAME_OWNER");
newOwner = _newOwner;
}
/**
* @dev used by a new owner to accept an ownership transfer
*/
function acceptOwnership() override public {
require(msg.sender == newOwner, "ERR_ACCESS_DENIED");
emit OwnerUpdate(owner, newOwner);
owner = newOwner;
newOwner = address(0);
}
}// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;
interface IExecutor {
function execute(
uint256 _id,
uint256 _for,
uint256 _against,
uint256 _quorum
) external;
}{
"remappings": [],
"optimizer": {
"enabled": true,
"runs": 200
},
"evmVersion": "istanbul",
"libraries": {},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract IERC20","name":"_govToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_start","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_duration","type":"uint256"},{"indexed":false,"internalType":"address","name":"_proposer","type":"address"},{"indexed":false,"internalType":"address","name":"_executor","type":"address"}],"name":"NewProposal","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_minimum","type":"uint256"}],"name":"NewProposalMinimumUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_prevOwner","type":"address"},{"indexed":true,"internalType":"address","name":"_newOwner","type":"address"}],"name":"OwnerUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"},{"indexed":true,"internalType":"address","name":"_executor","type":"address"}],"name":"ProposalExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_for","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_against","type":"uint256"},{"indexed":false,"internalType":"bool","name":"_quorumReached","type":"bool"}],"name":"ProposalFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_quorum","type":"uint256"}],"name":"QuorumUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Unstaked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"},{"indexed":true,"internalType":"address","name":"_voter","type":"address"},{"indexed":false,"internalType":"bool","name":"_vote","type":"bool"},{"indexed":false,"internalType":"uint256","name":"_weight","type":"uint256"}],"name":"Vote","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_voteDuration","type":"uint256"}],"name":"VoteDurationUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_duration","type":"uint256"}],"name":"VoteLockDurationUpdated","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"exit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"govToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"newOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"newProposalMinimum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proposalCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"proposalStats","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"proposals","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"totalVotesFor","type":"uint256"},{"internalType":"uint256","name":"totalVotesAgainst","type":"uint256"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"},{"internalType":"uint256","name":"totalAvailableVotes","type":"uint256"},{"internalType":"uint256","name":"quorum","type":"uint256"},{"internalType":"uint256","name":"quorumRequired","type":"uint256"},{"internalType":"bool","name":"open","type":"bool"},{"internalType":"bool","name":"executed","type":"bool"},{"internalType":"address","name":"proposer","type":"address"},{"internalType":"address","name":"executor","type":"address"},{"internalType":"string","name":"hash","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_executor","type":"address"},{"internalType":"string","name":"_hash","type":"string"}],"name":"propose","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"quorum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minimum","type":"uint256"}],"name":"setNewProposalMinimum","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quorum","type":"uint256"}],"name":"setQuorum","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_voteDuration","type":"uint256"}],"name":"setVoteDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_duration","type":"uint256"}],"name":"setVoteLockDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tallyVotes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"voteAgainst","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"voteDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"voteFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"voteLockDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"voteLockFraction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"voteLocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_voter","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"votesAgainstOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_voter","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"votesForOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_voter","type":"address"}],"name":"votesOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]Contract Creation Code
60a06040526203f4806002556203f480600355670de0b6b3a764000060045562030d4060055534801561003157600080fd5b50604051612f4d380380612f4d8339818101604052602081101561005457600080fd5b5051600080546001600160a01b031916331790556001600160a01b0381166100b2576040805162461bcd60e51b815260206004820152600c60248201526b22a9292fa727afaa27a5a2a760a11b604482015290519081900360640190fd5b606081901b6001600160601b0319166080526001600160a01b0316612e5a6100f36000398061078b5280610a58528061131652806117bc5250612e5a6000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806386a5053511610104578063c1ba4e59116100a2578063e981014311610071578063e9810143146105e3578063e9fad8ee14610600578063f2fde38b14610608578063fe0d94c11461062e576101da565b8063c1ba4e5914610500578063d4ee1d901461051d578063d6f0948c14610525578063da35c664146105db576101da565b8063a1bf8824116100de578063a1bf882414610489578063a1e9204e14610491578063a694fc3a146104bd578063ab4f440f146104da576101da565b806386a50535146104475780638da5cb5b146104645780639449a6551461046c576101da565b80634d318b0e1161017c578063750e443a1161014b578063750e443a146103df57806379ba5097146103fc57806379ec5d3a1461040457806382d5f1531461042a576101da565b80634d318b0e14610386578063536af3cf146103a357806356364499146103ab57806373f4596a146103b3576101da565b80630d15fd77116101b85780630d15fd771461031c5780631703a018146103245780631d25b7881461032c5780632e17de7814610367576101da565b8063013cf08b146101df57806305268cff146102de57806308cbfb5814610302575b600080fd5b6101fc600480360360208110156101f557600080fd5b503561064b565b604051808e81526020018d81526020018c81526020018b81526020018a815260200189815260200188815260200187815260200186151581526020018515158152602001846001600160a01b03168152602001836001600160a01b0316815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561029757818101518382015260200161027f565b50505050905090810190601f1680156102c45780820380516001836020036101000a031916815260200191505b509e50505050505050505050505050505060405180910390f35b6102e6610789565b604080516001600160a01b039092168252519081900360200190f35b61030a6107ad565b60408051918252519081900360200190f35b61030a6107b2565b61030a6107b8565b6103496004803603602081101561034257600080fd5b50356107be565b60408051938452602084019290925282820152519081900360600190f35b6103846004803603602081101561037d57600080fd5b5035610981565b005b6103846004803603602081101561039c57600080fd5b5035610ab9565b61030a611015565b61030a61101b565b61030a600480360360408110156103c957600080fd5b506001600160a01b038135169060200135611021565b610384600480360360208110156103f557600080fd5b503561104e565b61038461105c565b61030a6004803603602081101561041a57600080fd5b50356001600160a01b0316611113565b6103846004803603602081101561044057600080fd5b503561112e565b6103846004803603602081101561045d57600080fd5b50356111b9565b6102e66111c4565b6103846004803603602081101561048257600080fd5b50356111d3565b61030a61125e565b61030a600480360360408110156104a757600080fd5b506001600160a01b038135169060200135611264565b610384600480360360208110156104d357600080fd5b503561128f565b61030a600480360360208110156104f057600080fd5b50356001600160a01b03166113c5565b6103846004803603602081101561051657600080fd5b50356113d7565b6102e66114b0565b6103846004803603604081101561053b57600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561056657600080fd5b82018360208201111561057857600080fd5b8035906020019184600183028401116401000000008311171561059a57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506114bf945050505050565b61030a611765565b610384600480360360208110156105f957600080fd5b503561176b565b6103846118cf565b6103846004803603602081101561061e57600080fd5b50356001600160a01b03166118e2565b6103846004803603602081101561064457600080fd5b5035611960565b600860205280600052604060002060009150905080600001549080600301549080600401549080600501549080600601549080600701549080600801549080600901549080600a0160009054906101000a900460ff169080600a0160019054906101000a900460ff169080600a0160029054906101000a90046001600160a01b03169080600b0160009054906101000a90046001600160a01b03169080600c018054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561077f5780601f106107545761010080835404028352916020019161077f565b820191906000526020600020905b81548152906001019060200180831161076257829003601f168201915b505050505090508d565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a81565b60065481565b60055481565b60008060006107cb612ca2565b60008581526008602081815260409283902083516101a081018552815481526003820154818401526004820154818601526005820154606082015260068201546080820152600782015460a08201529281015460c0840152600981015460e0840152600a81015460ff8082161515610100808701919091528083049091161515610120860152620100009091046001600160a01b03908116610140860152600b83015416610160850152600c820180548651600260018316159094026000190190911692909204601f810185900485028301850190965285825293949193610180860193919290918301828280156109045780601f106108d957610100808354040283529160200191610904565b820191906000526020600020905b8154815290600101906020018083116108e757829003601f168201915b50505091909252505050602081015160408201519192509060006109288383611e72565b90506109418161093b85620f4240611ed3565b90611f2c565b92506109548161093b84620f4240611ed3565b60a08501519092506000906109709061093b84620f4240611ed3565b939992985092965090945050505050565b80600081116109c8576040805162461bcd60e51b815260206004820152600e60248201526d4552525f5a45524f5f56414c554560901b604482015290519081900360640190fd5b336000908152600960205260409020544211610a18576040805162461bcd60e51b815260206004820152600a60248201526911549497d313d0d2d15160b21b604482015290519081900360640190fd5b610a2b82610a2533611113565b90611f93565b336000908152600a6020526040902055600654610a489083611f93565b600655610a7f6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163384611ff0565b60408051838152905133917f0f5bb82176feb1b5e747e28471aa92156a04d9f3ab9f45f28e2d704232b93f75919081900360200190a25050565b80610ac2612ca2565b60008281526008602081815260409283902083516101a081018552815481526003820154818401526004820154818601526005820154606082015260068201546080820152600782015460a08201529281015460c0840152600981015460e0840152600a81015460ff8082161515610100808701919091528083049091161515610120860152620100009091046001600160a01b03908116610140860152600b83015416610160850152600c820180548651600260018316159094026000190190911692909204601f81018590048502830185019096528582529394919361018086019391929091830182828015610bfb5780601f10610bd057610100808354040283529160200191610bfb565b820191906000526020600020905b815481529060010190602001808311610bde57829003601f168201915b505050505081525050905060008160600151118015610c1d5750428160600151105b610c5f576040805162461bcd60e51b815260206004820152600e60248201526d11549497d253959053125117d25160921b604482015290519081900360640190fd5b82610c68612ca2565b60008281526008602081815260409283902083516101a081018552815481526003820154818401526004820154818601526005820154606082015260068201546080820152600782015460a08201529281015460c0840152600981015460e0840152600a81015460ff8082161515610100808701919091528083049091161515610120860152620100009091046001600160a01b03908116610140860152600b83015416610160850152600c820180548651600260018316159094026000190190911692909204601f81018590048502830185019096528582529394919361018086019391929091830182828015610da15780601f10610d7657610100808354040283529160200191610da1565b820191906000526020600020905b815481529060010190602001808311610d8457829003601f168201915b5050505050815250509050806101000151610df2576040805162461bcd60e51b815260206004820152600c60248201526b22a9292fa727aa2fa7a822a760a11b604482015290519081900360640190fd5b84610dfb612ca2565b60008281526008602081815260409283902083516101a081018552815481526003820154818401526004820154818601526005820154606082015260068201546080820152600782015460a08201529281015460c0840152600981015460e0840152600a81015460ff8082161515610100808701919091528083049091161515610120860152620100009091046001600160a01b03908116610140860152600b83015416610160850152600c820180548651600260018316159094026000190190911692909204601f81018590048502830185019096528582529394919361018086019391929091830182828015610f345780601f10610f0957610100808354040283529160200191610f34565b820191906000526020600020905b815481529060010190602001808311610f1757829003601f168201915b50505050508152505090504281608001511115610f88576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d153911151609a1b604482015290519081900360640190fd5b600080610f94896107be565b5060008b815260086020818152604092839020600981015492810154600a909101805460ff19169055835186815291820185905291909110158183018190529151939550919350918b917f66ab4d2a1f6db1c01d1d46ab61a9c333b5a4de5e75cc7a68e1495b4badbd009b919081900360600190a250505050505050505050565b60045481565b60025481565b60008181526008602090815260408083206001600160a01b03861684526001019091529020545b92915050565b611059816000612047565b50565b6001546001600160a01b031633146110af576040805162461bcd60e51b815260206004820152601160248201527011549497d050d0d154d4d7d11153925151607a1b604482015290519081900360640190fd5b600154600080546040516001600160a01b0393841693909116917f343765429aea5a34b3ff6a3785a98a5abb2597aca87bfbb58632c173d585373a91a360018054600080546001600160a01b03199081166001600160a01b03841617909155169055565b6001600160a01b03166000908152600a602052604090205490565b61113661284a565b806000811161117d576040805162461bcd60e51b815260206004820152600e60248201526d4552525f5a45524f5f56414c554560901b604482015290519081900360640190fd5b60038290556040805183815290517f3973ac49c733d8f25fcd4f7b2a739ec8269c65a63103d940339f18504c209f2e9181900360200190a15050565b611059816001612047565b6000546001600160a01b031681565b6111db61284a565b8060008111611222576040805162461bcd60e51b815260206004820152600e60248201526d4552525f5a45524f5f56414c554560901b604482015290519081900360640190fd5b60028290556040805183815290517f86ccc0c36d25c3ac532328f6073994a81f33c9bb7603f847ac8ad67a3732d9889181900360200190a15050565b60035481565b60009081526008602090815260408083206001600160a01b0394909416835260029093019052205490565b80600081116112d6576040805162461bcd60e51b815260206004820152600e60248201526d4552525f5a45524f5f56414c554560901b604482015290519081900360640190fd5b6112e9826112e333611113565b90611e72565b336000908152600a60205260409020556006546113069083611e72565b60065561133e6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001633308561289d565b3360009081526009602052604090205460035461137891906113739042906112e39061136b90600a611f2c565b6102586128fd565b6128fd565b33600081815260096020908152604091829020939093558051858152905191927f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d92918290030190a25050565b60096020526000908152604090205481565b6113df61284a565b8060008111611426576040805162461bcd60e51b815260206004820152600e60248201526d4552525f5a45524f5f56414c554560901b604482015290519081900360640190fd5b620f4240821115611474576040805162461bcd60e51b815260206004820152601360248201527208aa4a4bea2aa9ea4aa9abea89e9ebe90928e9606b1b604482015290519081900360640190fd5b60058290556040805183815290517ff18f88786aae85a652aadb99a82462616489a33370c9bcc7b245906812ef7cd19181900360200190a15050565b6001546001600160a01b031681565b6004546114cb33611113565b1015611517576040805162461bcd60e51b81526020600482015260166024820152754552525f494e53554646494349454e545f5354414b4560501b604482015290519081900360640190fd5b600754611525816001611e72565b600755611530612ca2565b604051806101a00160405280838152602001600081526020016000815260200142815260200161156b42600254611e7290919063ffffffff16565b81526020016006548152602001600081526020016005548152602001600115158152602001600015158152602001336001600160a01b03168152602001856001600160a01b031681526020018481525090508060086000848152602001908152602001600020600082015181600001556020820151816003015560408201518160040155606082015181600501556080820151816006015560a0820151816007015560c0820151816008015560e0820151816009015561010082015181600a0160006101000a81548160ff02191690831515021790555061012082015181600a0160016101000a81548160ff02191690831515021790555061014082015181600a0160026101000a8154816001600160a01b0302191690836001600160a01b0316021790555061016082015181600b0160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555061018082015181600c0190805190602001906116dc929190612d20565b509050506116ed8160800151612914565b817faad97149b8b82cd8909c3a8b0ce40f8bbf2a93ce54c8bfcfa82aade36c3a0463826060015160025484610140015185610160015160405180858152602001848152602001836001600160a01b03168152602001826001600160a01b0316815260200194505050505060405180910390a250505050565b60075481565b61177361284a565b80600081116117ba576040805162461bcd60e51b815260206004820152600e60248201526d4552525f5a45524f5f56414c554560901b604482015290519081900360640190fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561181357600080fd5b505afa158015611827573d6000803e3d6000fd5b505050506040513d602081101561183d57600080fd5b5051821115611893576040805162461bcd60e51b815260206004820152601860248201527f4552525f455843454544535f544f54414c5f535550504c590000000000000000604482015290519081900360640190fd5b60048290556040805183815290517f0c6d5c7d0eb0bad98309d100619d1c205d94b426d761ee9c1d2c29786a0f727e9181900360200190a15050565b6118e06118db33611113565b610981565b565b6118ea61284a565b6000546001600160a01b038281169116141561193e576040805162461bcd60e51b815260206004820152600e60248201526d22a9292fa9a0a6a2afa7aba722a960911b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b80611969612ca2565b60008281526008602081815260409283902083516101a081018552815481526003820154818401526004820154818601526005820154606082015260068201546080820152600782015460a08201529281015460c0840152600981015460e0840152600a81015460ff8082161515610100808701919091528083049091161515610120860152620100009091046001600160a01b03908116610140860152600b83015416610160850152600c820180548651600260018316159094026000190190911692909204601f81018590048502830185019096528582529394919361018086019391929091830182828015611aa25780601f10611a7757610100808354040283529160200191611aa2565b820191906000526020600020905b815481529060010190602001808311611a8557829003601f168201915b505050505081525050905060008160600151118015611ac45750428160600151105b611b06576040805162461bcd60e51b815260206004820152600e60248201526d11549497d253959053125117d25160921b604482015290519081900360640190fd5b82611b0f612ca2565b60008281526008602081815260409283902083516101a081018552815481526003820154818401526004820154818601526005820154606082015260068201546080820152600782015460a08201529281015460c0840152600981015460e0840152600a81015460ff8082161515610100808701919091528083049091161515610120860152620100009091046001600160a01b03908116610140860152600b83015416610160850152600c820180548651600260018316159094026000190190911692909204601f81018590048502830185019096528582529394919361018086019391929091830182828015611c485780601f10611c1d57610100808354040283529160200191611c48565b820191906000526020600020905b815481529060010190602001808311611c2b57829003601f168201915b50505050508152505090504281608001511115611c9c576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d153911151609a1b604482015290519081900360640190fd5b6000858152600860205260409020600a0154610100900460ff1615611cff576040805162461bcd60e51b815260206004820152601460248201527311549497d053149150511657d1561150d555115160621b604482015290519081900360640190fd5b6000806000611d0d886107be565b60008b8152600860205260409020600901549295509093509150811015611d6b576040805162461bcd60e51b815260206004820152600d60248201526c4552525f4e4f5f51554f52554d60981b604482015290519081900360640190fd5b6000888152600860205260409020600a015460ff1615611d8e57611d8e88610ab9565b600088815260086020526040808220600a8101805461ff001916610100179055600b01548151636009bfbd60e11b8152600481018c905260248101879052604481018690526064810185905291516001600160a01b039091169263c0137f7a926084808201939182900301818387803b158015611e0a57600080fd5b505af1158015611e1e573d6000803e3d6000fd5b505050600089815260086020526040808220600b015490516001600160a01b0390911692508a917f9c85b616f29fca57a17eafe71cf9ff82ffef41766e2cf01ea7f8f7878dd3ec2491a35050505050505050565b600082820183811015611ecc576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600082611ee257506000611048565b82820282848281611eef57fe5b0414611ecc5760405162461bcd60e51b8152600401808060200182810382526021815260200180612dda6021913960400191505060405180910390fd5b6000808211611f82576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b818381611f8b57fe5b049392505050565b600082821115611fea576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261204290849061299f565b505050565b336000908152600a6020526040902054612099576040805162461bcd60e51b815260206004820152600e60248201526d22a9292fa727aa2fa9aa20a5a2a960911b604482015290519081900360640190fd5b816120a2612ca2565b60008281526008602081815260409283902083516101a081018552815481526003820154818401526004820154818601526005820154606082015260068201546080820152600782015460a08201529281015460c0840152600981015460e0840152600a81015460ff8082161515610100808701919091528083049091161515610120860152620100009091046001600160a01b03908116610140860152600b83015416610160850152600c820180548651600260018316159094026000190190911692909204601f810185900485028301850190965285825293949193610180860193919290918301828280156121db5780601f106121b0576101008083540402835291602001916121db565b820191906000526020600020905b8154815290600101906020018083116121be57829003601f168201915b5050505050815250509050600081606001511180156121fd5750428160600151105b61223f576040805162461bcd60e51b815260206004820152600e60248201526d11549497d253959053125117d25160921b604482015290519081900360640190fd5b83612248612ca2565b60008281526008602081815260409283902083516101a081018552815481526003820154818401526004820154818601526005820154606082015260068201546080820152600782015460a08201529281015460c0840152600981015460e0840152600a81015460ff8082161515610100808701919091528083049091161515610120860152620100009091046001600160a01b03908116610140860152600b83015416610160850152600c820180548651600260018316159094026000190190911692909204601f810185900485028301850190965285825293949193610180860193919290918301828280156123815780601f1061235657610100808354040283529160200191612381565b820191906000526020600020905b81548152906001019060200180831161236457829003601f168201915b50505050508152505090508061010001516123d2576040805162461bcd60e51b815260206004820152600c60248201526b22a9292fa727aa2fa7a822a760a11b604482015290519081900360640190fd5b856123db612ca2565b60008281526008602081815260409283902083516101a081018552815481526003820154818401526004820154818601526005820154606082015260068201546080820152600782015460a08201529281015460c0840152600981015460e0840152600a81015460ff8082161515610100808701919091528083049091161515610120860152620100009091046001600160a01b03908116610140860152600b83015416610160850152600c820180548651600260018316159094026000190190911692909204601f810185900485028301850190965285825293949193610180860193919290918301828280156125145780601f106124e957610100808354040283529160200191612514565b820191906000526020600020905b8154815290600101906020018083116124f757829003601f168201915b50505050508152505090504281608001511015612564576040805162461bcd60e51b815260206004820152600960248201526811549497d15391115160ba1b604482015290519081900360640190fd5b600088815260086020526040902087156125bd5733600090815260028201602052604090205480156125b757600482015461259f9082611f93565b60048301553360009081526002830160205260408120555b506125fe565b33600090815260018201602052604090205480156125fc5760038201546125e49082611f93565b60038301553360009081526001830160205260408120555b505b600061263b8961261f57336000908152600284016020526040902054612632565b3360009081526001840160205260409020545b610a2533611113565b905088156126775760038201546126529082611e72565b600383015561266033611113565b3360009081526001840160205260409020556126a7565b60048201546126869082611e72565b600483015561269433611113565b3360009081526002840160205260409020555b6006805460078401819055604080516101a0810182528554815260038601546020808301919091526004870154828401526005870154606083015293860154608082015260a0810192909252600885015460c0830152600985015460e0830152600a85015460ff8082161515610100808601919091528083049091161515610120850152620100009091046001600160a01b03908116610140850152600b87015416610160840152600c860180548351600260018316159094026000190190911692909204601f81018690048602830186019093528282526127ec94879361018086019392918301828280156127de5780601f106127b3576101008083540402835291602001916127de565b820191906000526020600020905b8154815290600101906020018083116127c157829003601f168201915b505050505081525050612a50565b600883015560068201546127ff90612914565b8154604080518b151581526020810184905281513393927f88d35328232823f54954b6627e9f732371656f6daa40cb1b01b27dc7875a7b47928290030190a350505050505050505050565b6000546001600160a01b031633146118e0576040805162461bcd60e51b815260206004820152601160248201527011549497d050d0d154d4d7d11153925151607a1b604482015290519081900360640190fd5b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526128f790859061299f565b50505050565b60008183101561290d5781611ecc565b5090919050565b336000908152600a6020526040902054612966576040805162461bcd60e51b815260206004820152600e60248201526d22a9292fa727aa2fa9aa20a5a2a960911b604482015290519081900360640190fd5b3360009081526009602052604090205460035461298c9190611373908490829042611e72565b3360009081526009602052604090205550565b60606129f4826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612a859092919063ffffffff16565b80519091501561204257808060200190516020811015612a1357600080fd5b50516120425760405162461bcd60e51b815260040180806020018281038252602a815260200180612dfb602a913960400191505060405180910390fd5b600080612a6e83604001518460200151611e7290919063ffffffff16565b600654909150611ecc9061093b83620f4240611ed3565b6060612a948484600085612a9c565b949350505050565b606082471015612add5760405162461bcd60e51b8152600401808060200182810382526026815260200180612db46026913960400191505060405180910390fd5b612ae685612bf8565b612b37576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310612b765780518252601f199092019160209182019101612b57565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612bd8576040519150601f19603f3d011682016040523d82523d6000602084013e612bdd565b606091505b5091509150612bed828286612bfe565b979650505050505050565b3b151590565b60608315612c0d575081611ecc565b825115612c1d5782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612c67578181015183820152602001612c4f565b50505050905090810190601f168015612c945780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b604051806101a00160405280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160001515815260200160001515815260200160006001600160a01b0316815260200160006001600160a01b03168152602001606081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612d6157805160ff1916838001178555612d8e565b82800160010185558215612d8e579182015b82811115612d8e578251825591602001919060010190612d73565b50612d9a929150612d9e565b5090565b5b80821115612d9a5760008155600101612d9f56fe416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220dc39332560e77b4784dc710f981235b613d32cd28e52f536ebdbf9ff5a589a1264736f6c634300060c00330000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806386a5053511610104578063c1ba4e59116100a2578063e981014311610071578063e9810143146105e3578063e9fad8ee14610600578063f2fde38b14610608578063fe0d94c11461062e576101da565b8063c1ba4e5914610500578063d4ee1d901461051d578063d6f0948c14610525578063da35c664146105db576101da565b8063a1bf8824116100de578063a1bf882414610489578063a1e9204e14610491578063a694fc3a146104bd578063ab4f440f146104da576101da565b806386a50535146104475780638da5cb5b146104645780639449a6551461046c576101da565b80634d318b0e1161017c578063750e443a1161014b578063750e443a146103df57806379ba5097146103fc57806379ec5d3a1461040457806382d5f1531461042a576101da565b80634d318b0e14610386578063536af3cf146103a357806356364499146103ab57806373f4596a146103b3576101da565b80630d15fd77116101b85780630d15fd771461031c5780631703a018146103245780631d25b7881461032c5780632e17de7814610367576101da565b8063013cf08b146101df57806305268cff146102de57806308cbfb5814610302575b600080fd5b6101fc600480360360208110156101f557600080fd5b503561064b565b604051808e81526020018d81526020018c81526020018b81526020018a815260200189815260200188815260200187815260200186151581526020018515158152602001846001600160a01b03168152602001836001600160a01b0316815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561029757818101518382015260200161027f565b50505050905090810190601f1680156102c45780820380516001836020036101000a031916815260200191505b509e50505050505050505050505050505060405180910390f35b6102e6610789565b604080516001600160a01b039092168252519081900360200190f35b61030a6107ad565b60408051918252519081900360200190f35b61030a6107b2565b61030a6107b8565b6103496004803603602081101561034257600080fd5b50356107be565b60408051938452602084019290925282820152519081900360600190f35b6103846004803603602081101561037d57600080fd5b5035610981565b005b6103846004803603602081101561039c57600080fd5b5035610ab9565b61030a611015565b61030a61101b565b61030a600480360360408110156103c957600080fd5b506001600160a01b038135169060200135611021565b610384600480360360208110156103f557600080fd5b503561104e565b61038461105c565b61030a6004803603602081101561041a57600080fd5b50356001600160a01b0316611113565b6103846004803603602081101561044057600080fd5b503561112e565b6103846004803603602081101561045d57600080fd5b50356111b9565b6102e66111c4565b6103846004803603602081101561048257600080fd5b50356111d3565b61030a61125e565b61030a600480360360408110156104a757600080fd5b506001600160a01b038135169060200135611264565b610384600480360360208110156104d357600080fd5b503561128f565b61030a600480360360208110156104f057600080fd5b50356001600160a01b03166113c5565b6103846004803603602081101561051657600080fd5b50356113d7565b6102e66114b0565b6103846004803603604081101561053b57600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561056657600080fd5b82018360208201111561057857600080fd5b8035906020019184600183028401116401000000008311171561059a57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506114bf945050505050565b61030a611765565b610384600480360360208110156105f957600080fd5b503561176b565b6103846118cf565b6103846004803603602081101561061e57600080fd5b50356001600160a01b03166118e2565b6103846004803603602081101561064457600080fd5b5035611960565b600860205280600052604060002060009150905080600001549080600301549080600401549080600501549080600601549080600701549080600801549080600901549080600a0160009054906101000a900460ff169080600a0160019054906101000a900460ff169080600a0160029054906101000a90046001600160a01b03169080600b0160009054906101000a90046001600160a01b03169080600c018054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561077f5780601f106107545761010080835404028352916020019161077f565b820191906000526020600020905b81548152906001019060200180831161076257829003601f168201915b505050505090508d565b7f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c81565b600a81565b60065481565b60055481565b60008060006107cb612ca2565b60008581526008602081815260409283902083516101a081018552815481526003820154818401526004820154818601526005820154606082015260068201546080820152600782015460a08201529281015460c0840152600981015460e0840152600a81015460ff8082161515610100808701919091528083049091161515610120860152620100009091046001600160a01b03908116610140860152600b83015416610160850152600c820180548651600260018316159094026000190190911692909204601f810185900485028301850190965285825293949193610180860193919290918301828280156109045780601f106108d957610100808354040283529160200191610904565b820191906000526020600020905b8154815290600101906020018083116108e757829003601f168201915b50505091909252505050602081015160408201519192509060006109288383611e72565b90506109418161093b85620f4240611ed3565b90611f2c565b92506109548161093b84620f4240611ed3565b60a08501519092506000906109709061093b84620f4240611ed3565b939992985092965090945050505050565b80600081116109c8576040805162461bcd60e51b815260206004820152600e60248201526d4552525f5a45524f5f56414c554560901b604482015290519081900360640190fd5b336000908152600960205260409020544211610a18576040805162461bcd60e51b815260206004820152600a60248201526911549497d313d0d2d15160b21b604482015290519081900360640190fd5b610a2b82610a2533611113565b90611f93565b336000908152600a6020526040902055600654610a489083611f93565b600655610a7f6001600160a01b037f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c163384611ff0565b60408051838152905133917f0f5bb82176feb1b5e747e28471aa92156a04d9f3ab9f45f28e2d704232b93f75919081900360200190a25050565b80610ac2612ca2565b60008281526008602081815260409283902083516101a081018552815481526003820154818401526004820154818601526005820154606082015260068201546080820152600782015460a08201529281015460c0840152600981015460e0840152600a81015460ff8082161515610100808701919091528083049091161515610120860152620100009091046001600160a01b03908116610140860152600b83015416610160850152600c820180548651600260018316159094026000190190911692909204601f81018590048502830185019096528582529394919361018086019391929091830182828015610bfb5780601f10610bd057610100808354040283529160200191610bfb565b820191906000526020600020905b815481529060010190602001808311610bde57829003601f168201915b505050505081525050905060008160600151118015610c1d5750428160600151105b610c5f576040805162461bcd60e51b815260206004820152600e60248201526d11549497d253959053125117d25160921b604482015290519081900360640190fd5b82610c68612ca2565b60008281526008602081815260409283902083516101a081018552815481526003820154818401526004820154818601526005820154606082015260068201546080820152600782015460a08201529281015460c0840152600981015460e0840152600a81015460ff8082161515610100808701919091528083049091161515610120860152620100009091046001600160a01b03908116610140860152600b83015416610160850152600c820180548651600260018316159094026000190190911692909204601f81018590048502830185019096528582529394919361018086019391929091830182828015610da15780601f10610d7657610100808354040283529160200191610da1565b820191906000526020600020905b815481529060010190602001808311610d8457829003601f168201915b5050505050815250509050806101000151610df2576040805162461bcd60e51b815260206004820152600c60248201526b22a9292fa727aa2fa7a822a760a11b604482015290519081900360640190fd5b84610dfb612ca2565b60008281526008602081815260409283902083516101a081018552815481526003820154818401526004820154818601526005820154606082015260068201546080820152600782015460a08201529281015460c0840152600981015460e0840152600a81015460ff8082161515610100808701919091528083049091161515610120860152620100009091046001600160a01b03908116610140860152600b83015416610160850152600c820180548651600260018316159094026000190190911692909204601f81018590048502830185019096528582529394919361018086019391929091830182828015610f345780601f10610f0957610100808354040283529160200191610f34565b820191906000526020600020905b815481529060010190602001808311610f1757829003601f168201915b50505050508152505090504281608001511115610f88576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d153911151609a1b604482015290519081900360640190fd5b600080610f94896107be565b5060008b815260086020818152604092839020600981015492810154600a909101805460ff19169055835186815291820185905291909110158183018190529151939550919350918b917f66ab4d2a1f6db1c01d1d46ab61a9c333b5a4de5e75cc7a68e1495b4badbd009b919081900360600190a250505050505050505050565b60045481565b60025481565b60008181526008602090815260408083206001600160a01b03861684526001019091529020545b92915050565b611059816000612047565b50565b6001546001600160a01b031633146110af576040805162461bcd60e51b815260206004820152601160248201527011549497d050d0d154d4d7d11153925151607a1b604482015290519081900360640190fd5b600154600080546040516001600160a01b0393841693909116917f343765429aea5a34b3ff6a3785a98a5abb2597aca87bfbb58632c173d585373a91a360018054600080546001600160a01b03199081166001600160a01b03841617909155169055565b6001600160a01b03166000908152600a602052604090205490565b61113661284a565b806000811161117d576040805162461bcd60e51b815260206004820152600e60248201526d4552525f5a45524f5f56414c554560901b604482015290519081900360640190fd5b60038290556040805183815290517f3973ac49c733d8f25fcd4f7b2a739ec8269c65a63103d940339f18504c209f2e9181900360200190a15050565b611059816001612047565b6000546001600160a01b031681565b6111db61284a565b8060008111611222576040805162461bcd60e51b815260206004820152600e60248201526d4552525f5a45524f5f56414c554560901b604482015290519081900360640190fd5b60028290556040805183815290517f86ccc0c36d25c3ac532328f6073994a81f33c9bb7603f847ac8ad67a3732d9889181900360200190a15050565b60035481565b60009081526008602090815260408083206001600160a01b0394909416835260029093019052205490565b80600081116112d6576040805162461bcd60e51b815260206004820152600e60248201526d4552525f5a45524f5f56414c554560901b604482015290519081900360640190fd5b6112e9826112e333611113565b90611e72565b336000908152600a60205260409020556006546113069083611e72565b60065561133e6001600160a01b037f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c1633308561289d565b3360009081526009602052604090205460035461137891906113739042906112e39061136b90600a611f2c565b6102586128fd565b6128fd565b33600081815260096020908152604091829020939093558051858152905191927f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d92918290030190a25050565b60096020526000908152604090205481565b6113df61284a565b8060008111611426576040805162461bcd60e51b815260206004820152600e60248201526d4552525f5a45524f5f56414c554560901b604482015290519081900360640190fd5b620f4240821115611474576040805162461bcd60e51b815260206004820152601360248201527208aa4a4bea2aa9ea4aa9abea89e9ebe90928e9606b1b604482015290519081900360640190fd5b60058290556040805183815290517ff18f88786aae85a652aadb99a82462616489a33370c9bcc7b245906812ef7cd19181900360200190a15050565b6001546001600160a01b031681565b6004546114cb33611113565b1015611517576040805162461bcd60e51b81526020600482015260166024820152754552525f494e53554646494349454e545f5354414b4560501b604482015290519081900360640190fd5b600754611525816001611e72565b600755611530612ca2565b604051806101a00160405280838152602001600081526020016000815260200142815260200161156b42600254611e7290919063ffffffff16565b81526020016006548152602001600081526020016005548152602001600115158152602001600015158152602001336001600160a01b03168152602001856001600160a01b031681526020018481525090508060086000848152602001908152602001600020600082015181600001556020820151816003015560408201518160040155606082015181600501556080820151816006015560a0820151816007015560c0820151816008015560e0820151816009015561010082015181600a0160006101000a81548160ff02191690831515021790555061012082015181600a0160016101000a81548160ff02191690831515021790555061014082015181600a0160026101000a8154816001600160a01b0302191690836001600160a01b0316021790555061016082015181600b0160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555061018082015181600c0190805190602001906116dc929190612d20565b509050506116ed8160800151612914565b817faad97149b8b82cd8909c3a8b0ce40f8bbf2a93ce54c8bfcfa82aade36c3a0463826060015160025484610140015185610160015160405180858152602001848152602001836001600160a01b03168152602001826001600160a01b0316815260200194505050505060405180910390a250505050565b60075481565b61177361284a565b80600081116117ba576040805162461bcd60e51b815260206004820152600e60248201526d4552525f5a45524f5f56414c554560901b604482015290519081900360640190fd5b7f0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c6001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561181357600080fd5b505afa158015611827573d6000803e3d6000fd5b505050506040513d602081101561183d57600080fd5b5051821115611893576040805162461bcd60e51b815260206004820152601860248201527f4552525f455843454544535f544f54414c5f535550504c590000000000000000604482015290519081900360640190fd5b60048290556040805183815290517f0c6d5c7d0eb0bad98309d100619d1c205d94b426d761ee9c1d2c29786a0f727e9181900360200190a15050565b6118e06118db33611113565b610981565b565b6118ea61284a565b6000546001600160a01b038281169116141561193e576040805162461bcd60e51b815260206004820152600e60248201526d22a9292fa9a0a6a2afa7aba722a960911b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b80611969612ca2565b60008281526008602081815260409283902083516101a081018552815481526003820154818401526004820154818601526005820154606082015260068201546080820152600782015460a08201529281015460c0840152600981015460e0840152600a81015460ff8082161515610100808701919091528083049091161515610120860152620100009091046001600160a01b03908116610140860152600b83015416610160850152600c820180548651600260018316159094026000190190911692909204601f81018590048502830185019096528582529394919361018086019391929091830182828015611aa25780601f10611a7757610100808354040283529160200191611aa2565b820191906000526020600020905b815481529060010190602001808311611a8557829003601f168201915b505050505081525050905060008160600151118015611ac45750428160600151105b611b06576040805162461bcd60e51b815260206004820152600e60248201526d11549497d253959053125117d25160921b604482015290519081900360640190fd5b82611b0f612ca2565b60008281526008602081815260409283902083516101a081018552815481526003820154818401526004820154818601526005820154606082015260068201546080820152600782015460a08201529281015460c0840152600981015460e0840152600a81015460ff8082161515610100808701919091528083049091161515610120860152620100009091046001600160a01b03908116610140860152600b83015416610160850152600c820180548651600260018316159094026000190190911692909204601f81018590048502830185019096528582529394919361018086019391929091830182828015611c485780601f10611c1d57610100808354040283529160200191611c48565b820191906000526020600020905b815481529060010190602001808311611c2b57829003601f168201915b50505050508152505090504281608001511115611c9c576040805162461bcd60e51b815260206004820152600d60248201526c11549497d393d517d153911151609a1b604482015290519081900360640190fd5b6000858152600860205260409020600a0154610100900460ff1615611cff576040805162461bcd60e51b815260206004820152601460248201527311549497d053149150511657d1561150d555115160621b604482015290519081900360640190fd5b6000806000611d0d886107be565b60008b8152600860205260409020600901549295509093509150811015611d6b576040805162461bcd60e51b815260206004820152600d60248201526c4552525f4e4f5f51554f52554d60981b604482015290519081900360640190fd5b6000888152600860205260409020600a015460ff1615611d8e57611d8e88610ab9565b600088815260086020526040808220600a8101805461ff001916610100179055600b01548151636009bfbd60e11b8152600481018c905260248101879052604481018690526064810185905291516001600160a01b039091169263c0137f7a926084808201939182900301818387803b158015611e0a57600080fd5b505af1158015611e1e573d6000803e3d6000fd5b505050600089815260086020526040808220600b015490516001600160a01b0390911692508a917f9c85b616f29fca57a17eafe71cf9ff82ffef41766e2cf01ea7f8f7878dd3ec2491a35050505050505050565b600082820183811015611ecc576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600082611ee257506000611048565b82820282848281611eef57fe5b0414611ecc5760405162461bcd60e51b8152600401808060200182810382526021815260200180612dda6021913960400191505060405180910390fd5b6000808211611f82576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b818381611f8b57fe5b049392505050565b600082821115611fea576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261204290849061299f565b505050565b336000908152600a6020526040902054612099576040805162461bcd60e51b815260206004820152600e60248201526d22a9292fa727aa2fa9aa20a5a2a960911b604482015290519081900360640190fd5b816120a2612ca2565b60008281526008602081815260409283902083516101a081018552815481526003820154818401526004820154818601526005820154606082015260068201546080820152600782015460a08201529281015460c0840152600981015460e0840152600a81015460ff8082161515610100808701919091528083049091161515610120860152620100009091046001600160a01b03908116610140860152600b83015416610160850152600c820180548651600260018316159094026000190190911692909204601f810185900485028301850190965285825293949193610180860193919290918301828280156121db5780601f106121b0576101008083540402835291602001916121db565b820191906000526020600020905b8154815290600101906020018083116121be57829003601f168201915b5050505050815250509050600081606001511180156121fd5750428160600151105b61223f576040805162461bcd60e51b815260206004820152600e60248201526d11549497d253959053125117d25160921b604482015290519081900360640190fd5b83612248612ca2565b60008281526008602081815260409283902083516101a081018552815481526003820154818401526004820154818601526005820154606082015260068201546080820152600782015460a08201529281015460c0840152600981015460e0840152600a81015460ff8082161515610100808701919091528083049091161515610120860152620100009091046001600160a01b03908116610140860152600b83015416610160850152600c820180548651600260018316159094026000190190911692909204601f810185900485028301850190965285825293949193610180860193919290918301828280156123815780601f1061235657610100808354040283529160200191612381565b820191906000526020600020905b81548152906001019060200180831161236457829003601f168201915b50505050508152505090508061010001516123d2576040805162461bcd60e51b815260206004820152600c60248201526b22a9292fa727aa2fa7a822a760a11b604482015290519081900360640190fd5b856123db612ca2565b60008281526008602081815260409283902083516101a081018552815481526003820154818401526004820154818601526005820154606082015260068201546080820152600782015460a08201529281015460c0840152600981015460e0840152600a81015460ff8082161515610100808701919091528083049091161515610120860152620100009091046001600160a01b03908116610140860152600b83015416610160850152600c820180548651600260018316159094026000190190911692909204601f810185900485028301850190965285825293949193610180860193919290918301828280156125145780601f106124e957610100808354040283529160200191612514565b820191906000526020600020905b8154815290600101906020018083116124f757829003601f168201915b50505050508152505090504281608001511015612564576040805162461bcd60e51b815260206004820152600960248201526811549497d15391115160ba1b604482015290519081900360640190fd5b600088815260086020526040902087156125bd5733600090815260028201602052604090205480156125b757600482015461259f9082611f93565b60048301553360009081526002830160205260408120555b506125fe565b33600090815260018201602052604090205480156125fc5760038201546125e49082611f93565b60038301553360009081526001830160205260408120555b505b600061263b8961261f57336000908152600284016020526040902054612632565b3360009081526001840160205260409020545b610a2533611113565b905088156126775760038201546126529082611e72565b600383015561266033611113565b3360009081526001840160205260409020556126a7565b60048201546126869082611e72565b600483015561269433611113565b3360009081526002840160205260409020555b6006805460078401819055604080516101a0810182528554815260038601546020808301919091526004870154828401526005870154606083015293860154608082015260a0810192909252600885015460c0830152600985015460e0830152600a85015460ff8082161515610100808601919091528083049091161515610120850152620100009091046001600160a01b03908116610140850152600b87015416610160840152600c860180548351600260018316159094026000190190911692909204601f81018690048602830186019093528282526127ec94879361018086019392918301828280156127de5780601f106127b3576101008083540402835291602001916127de565b820191906000526020600020905b8154815290600101906020018083116127c157829003601f168201915b505050505081525050612a50565b600883015560068201546127ff90612914565b8154604080518b151581526020810184905281513393927f88d35328232823f54954b6627e9f732371656f6daa40cb1b01b27dc7875a7b47928290030190a350505050505050505050565b6000546001600160a01b031633146118e0576040805162461bcd60e51b815260206004820152601160248201527011549497d050d0d154d4d7d11153925151607a1b604482015290519081900360640190fd5b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526128f790859061299f565b50505050565b60008183101561290d5781611ecc565b5090919050565b336000908152600a6020526040902054612966576040805162461bcd60e51b815260206004820152600e60248201526d22a9292fa727aa2fa9aa20a5a2a960911b604482015290519081900360640190fd5b3360009081526009602052604090205460035461298c9190611373908490829042611e72565b3360009081526009602052604090205550565b60606129f4826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612a859092919063ffffffff16565b80519091501561204257808060200190516020811015612a1357600080fd5b50516120425760405162461bcd60e51b815260040180806020018281038252602a815260200180612dfb602a913960400191505060405180910390fd5b600080612a6e83604001518460200151611e7290919063ffffffff16565b600654909150611ecc9061093b83620f4240611ed3565b6060612a948484600085612a9c565b949350505050565b606082471015612add5760405162461bcd60e51b8152600401808060200182810382526026815260200180612db46026913960400191505060405180910390fd5b612ae685612bf8565b612b37576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310612b765780518252601f199092019160209182019101612b57565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612bd8576040519150601f19603f3d011682016040523d82523d6000602084013e612bdd565b606091505b5091509150612bed828286612bfe565b979650505050505050565b3b151590565b60608315612c0d575081611ecc565b825115612c1d5782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612c67578181015183820152602001612c4f565b50505050905090810190601f168015612c945780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b604051806101a00160405280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160001515815260200160001515815260200160006001600160a01b0316815260200160006001600160a01b03168152602001606081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612d6157805160ff1916838001178555612d8e565b82800160010185558215612d8e579182015b82811115612d8e578251825591602001919060010190612d73565b50612d9a929150612d9e565b5090565b5b80821115612d9a5760008155600101612d9f56fe416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220dc39332560e77b4784dc710f981235b613d32cd28e52f536ebdbf9ff5a589a1264736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c
-----Decoded View---------------
Arg [0] : _govToken (address): 0x1F573D6Fb3F13d689FF844B4cE37794d79a7FF1C
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000001f573d6fb3f13d689ff844b4ce37794d79a7ff1c
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $0.438743 | 2,338,435.4914 | $1,025,972.2 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.