More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 40 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 14475527 | 1012 days ago | IN | 0 ETH | 0.00453962 | ||||
Get Reward | 11891574 | 1414 days ago | IN | 0 ETH | 0.00936275 | ||||
Withdraw | 11461367 | 1480 days ago | IN | 0 ETH | 0.00685048 | ||||
Get Reward | 11461362 | 1480 days ago | IN | 0 ETH | 0.00426645 | ||||
Exit | 11433864 | 1484 days ago | IN | 0 ETH | 0.00224726 | ||||
Withdraw | 11418421 | 1486 days ago | IN | 0 ETH | 0.006731 | ||||
Get Reward | 11418417 | 1486 days ago | IN | 0 ETH | 0.0047904 | ||||
Get Reward | 11418367 | 1486 days ago | IN | 0 ETH | 0.00399238 | ||||
Exit | 11405123 | 1488 days ago | IN | 0 ETH | 0.00627775 | ||||
Exit | 11391532 | 1491 days ago | IN | 0 ETH | 0.00337266 | ||||
Withdraw | 11382076 | 1492 days ago | IN | 0 ETH | 0.00351717 | ||||
Withdraw | 11382064 | 1492 days ago | IN | 0 ETH | 0.00409936 | ||||
Get Reward | 11382061 | 1492 days ago | IN | 0 ETH | 0.0030834 | ||||
Get Reward | 11364267 | 1495 days ago | IN | 0 ETH | 0.0046251 | ||||
Exit | 11344878 | 1498 days ago | IN | 0 ETH | 0.00209615 | ||||
Exit | 11330185 | 1500 days ago | IN | 0 ETH | 0.00428739 | ||||
Get Reward | 11330169 | 1500 days ago | IN | 0 ETH | 0.0022455 | ||||
Stake | 11329611 | 1500 days ago | IN | 0 ETH | 0.00303609 | ||||
Exit | 11328490 | 1500 days ago | IN | 0 ETH | 0.01051102 | ||||
Get Reward | 11328485 | 1500 days ago | IN | 0 ETH | 0.00775005 | ||||
Get Reward | 11328182 | 1500 days ago | IN | 0 ETH | 0.0056364 | ||||
Exit | 11327988 | 1500 days ago | IN | 0 ETH | 0.01023414 | ||||
Get Reward | 11327888 | 1500 days ago | IN | 0 ETH | 0.0072468 | ||||
Stake | 11326171 | 1501 days ago | IN | 0 ETH | 0.00508865 | ||||
Get Reward | 11326113 | 1501 days ago | IN | 0 ETH | 0.00516661 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
ColourPoolReward
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-11-22 */ pragma solidity ^0.6.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); } } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity ^0.6.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, 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) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. * * _Available since v2.4.0._ */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message 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. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity ^0.6.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/ownership/Ownable.sol pragma solidity ^0.6.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { _owner = _msgSender(); emit OwnershipTransferred(address(0), _owner); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return _msgSender() == _owner; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ 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); function mint(address account, uint amount) external; /** * @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); } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.6.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * This test is non-exhaustive, and there may be false-negatives: during the * execution of a contract's constructor, its address will be reported as * not containing 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. */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != 0x0 && codehash != accountHash); } /** * @dev Converts an `address` into `address payable`. Note that this is * simply a type cast: the actual underlying value is not changed. * * _Available since v2.4.0._ */ function toPayable(address account) internal pure returns (address payable) { return address(uint160(account)); } /** * @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]. * * _Available since v2.4.0._ */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-call-value (bool success, ) = recipient.call.value(amount)(""); require(success, "Address: unable to send value, recipient may have reverted"); } } // File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol pragma solidity ^0.6.0; /** * @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 ERC20;` 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)); } 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. // A Solidity high level call has three parts: // 1. The target address is checked to verify it contains contract code // 2. The call itself is made, and success asserted // 3. The return value is decoded, which in turn checks the size of the returned data. // solhint-disable-next-line max-line-length require(address(token).isContract(), "SafeERC20: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = address(token).call(data); require(success, "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"); } } } pragma solidity ^0.6.0; contract LPTokenWrapper { using SafeMath for uint256; using SafeERC20 for IERC20; IERC20 public y = IERC20(0xA478c2975Ab1Ea89e8196811F51A7B7Ade33eB11); //dai-eth uint256 private _totalSupply; mapping(address => uint256) private _balances; function totalSupply() public view returns (uint256) { return _totalSupply; } function balanceOf(address account) public view returns (uint256) { return _balances[account]; } function stake(uint256 amount) public virtual{ _totalSupply = _totalSupply.add(amount); _balances[msg.sender] = _balances[msg.sender].add(amount); y.safeTransferFrom(msg.sender, address(this), amount); } function withdraw(uint256 amount) public virtual{ _totalSupply = _totalSupply.sub(amount); _balances[msg.sender] = _balances[msg.sender].sub(amount); y.safeTransfer(msg.sender, amount); } } contract ColourPoolReward is LPTokenWrapper { IERC20 public colour = IERC20(0xD83a8e84e27994101A75Ff0B3163513C62D416f5); uint256 public constant DURATION = 30 days; uint256 public initreward = 21_000_000e18; uint256 public starttime = 1606226400; uint256 public periodFinish = starttime.add(DURATION); uint256 public rewardRate = initreward.div(DURATION); uint256 public lastUpdateTime; uint256 public rewardPerTokenStored; mapping(address => uint256) public userRewardPerTokenPaid; mapping(address => uint256) public rewards; event RewardAdded(uint256 reward); event Staked(address indexed user, uint256 amount); event Withdrawn(address indexed user, uint256 amount); event RewardPaid(address indexed user, uint256 reward); modifier updateReward(address account) { rewardPerTokenStored = rewardPerToken(); lastUpdateTime = lastTimeRewardApplicable(); if (account != address(0)) { rewards[account] = earned(account); userRewardPerTokenPaid[account] = rewardPerTokenStored; } _; } function lastTimeRewardApplicable() public view returns (uint256) { return Math.min(block.timestamp, periodFinish); } function rewardPerToken() public view returns (uint256) { if (totalSupply() == 0) { return rewardPerTokenStored; } return rewardPerTokenStored.add( lastTimeRewardApplicable() .sub(lastUpdateTime) .mul(rewardRate) .mul(1e18) .div(totalSupply()) ); } function earned(address account) public view returns (uint256) { return balanceOf(account) .mul(rewardPerToken().sub(userRewardPerTokenPaid[account])) .div(1e18) .add(rewards[account]); } // stake visibility is public as overriding LPTokenWrapper's stake() function function stake(uint256 amount) public updateReward(msg.sender) override checkStart{ require(amount > 0, "Cannot stake 0"); super.stake(amount); emit Staked(msg.sender, amount); } function withdraw(uint256 amount) public updateReward(msg.sender) override checkStart{ require(amount > 0, "Cannot withdraw 0"); super.withdraw(amount); emit Withdrawn(msg.sender, amount); } function exit() external { withdraw(balanceOf(msg.sender)); getReward(); } function getReward() public updateReward(msg.sender) checkStart{ uint256 reward = earned(msg.sender); if (reward > 0) { rewards[msg.sender] = 0; colour.safeTransfer(msg.sender, reward); emit RewardPaid(msg.sender, reward); } } modifier checkStart(){ require(block.timestamp > starttime,"not start"); _; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","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":"Withdrawn","type":"event"},{"inputs":[],"name":"DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"colour","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"exit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initreward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastTimeRewardApplicable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastUpdateTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"periodFinish","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerTokenStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"starttime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userRewardPerTokenPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"y","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526000805473a478c2975ab1ea89e8196811f51a7b7ade33eb116001600160a01b0319918216179091556003805473d83a8e84e27994101a75ff0b3163513c62d416f592169190911790556a115eec47f6cf7e35000000600455635fbd11e0600581905561007f9062278d006100b3602090811b61077e17901c565b60065561009e62278d0060045461011460201b6107df1790919060201c565b6007553480156100ad57600080fd5b506101fe565b60008282018381101561010d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600061010d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061015c60201b60201c565b600081836101e85760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156101ad578181015183820152602001610195565b50505050905090810190601f1680156101da5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816101f457fe5b0495945050505050565b610da88061020d6000396000f3fe608060405234801561001057600080fd5b506004361061012b5760003560e01c80638b876347116100ad578063c8f33c9111610071578063c8f33c911461027a578063cd3daf9d14610282578063df136d651461028a578063e9fad8ee14610292578063ebe2b12b1461029a5761012b565b80638b8763471461021f5780638da58897146102455780639c907b581461024d578063a56dfe4a14610255578063a694fc3a1461025d5761012b565b80633d18b912116100f45780633d18b912146101bd5780633dbc0610146101c557806370a08231146101e95780637b0a47ee1461020f57806380faa57d146102175761012b565b80628cc262146101305780630700037d1461016857806318160ddd1461018e5780631be05289146101965780632e1a7d4d1461019e575b600080fd5b6101566004803603602081101561014657600080fd5b50356001600160a01b03166102a2565b60408051918252519081900360200190f35b6101566004803603602081101561017e57600080fd5b50356001600160a01b0316610310565b610156610322565b610156610329565b6101bb600480360360208110156101b457600080fd5b5035610330565b005b6101bb610459565b6101cd61056d565b604080516001600160a01b039092168252519081900360200190f35b610156600480360360208110156101ff57600080fd5b50356001600160a01b031661057c565b610156610597565b61015661059d565b6101566004803603602081101561023557600080fd5b50356001600160a01b03166105b0565b6101566105c2565b6101566105c8565b6101cd6105ce565b6101bb6004803603602081101561027357600080fd5b50356105dd565b610156610703565b610156610709565b610156610757565b6101bb61075d565b610156610778565b6001600160a01b0381166000908152600b6020908152604080832054600a90925282205461030a919061030490670de0b6b3a7640000906102fe906102ef906102e9610709565b90610821565b6102f88861057c565b90610863565b906107df565b9061077e565b92915050565b600b6020526000908152604090205481565b6001545b90565b62278d0081565b33610339610709565b60095561034461059d565b6008556001600160a01b0381161561038b5761035f816102a2565b6001600160a01b0382166000908152600b6020908152604080832093909355600954600a909152919020555b60055442116103cd576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b60008211610416576040805162461bcd60e51b8152602060048201526011602482015270043616e6e6f74207769746864726177203607c1b604482015290519081900360640190fd5b61041f826108bc565b60408051838152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a25050565b33610462610709565b60095561046d61059d565b6008556001600160a01b038116156104b457610488816102a2565b6001600160a01b0382166000908152600b6020908152604080832093909355600954600a909152919020555b60055442116104f6576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b6000610501336102a2565b9050801561056957336000818152600b6020526040812055600354610532916001600160a01b039091169083610914565b60408051828152905133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b5050565b6003546001600160a01b031681565b6001600160a01b031660009081526002602052604090205490565b60075481565b60006105ab4260065461096b565b905090565b600a6020526000908152604090205481565b60055481565b60045481565b6000546001600160a01b031681565b336105e6610709565b6009556105f161059d565b6008556001600160a01b038116156106385761060c816102a2565b6001600160a01b0382166000908152600b6020908152604080832093909355600954600a909152919020555b600554421161067a576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b600082116106c0576040805162461bcd60e51b815260206004820152600e60248201526d043616e6e6f74207374616b6520360941b604482015290519081900360640190fd5b6106c982610981565b60408051838152905133917f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d919081900360200190a25050565b60085481565b6000610713610322565b6107205750600954610326565b6105ab61074e61072e610322565b6102fe670de0b6b3a76400006102f86007546102f86008546102e961059d565b6009549061077e565b60095481565b61076e6107693361057c565b610330565b610776610459565b565b60065481565b6000828201838110156107d8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60006107d883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506109d7565b60006107d883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610a79565b6000826108725750600061030a565b8282028284828161087f57fe5b04146107d85760405162461bcd60e51b8152600401808060200182810382526021815260200180610d286021913960400191505060405180910390fd5b6001546108c99082610821565b600155336000908152600260205260409020546108e69082610821565b336000818152600260205260408120929092559054610911916001600160a01b039091169083610914565b50565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610966908490610ad3565b505050565b600081831061097a57816107d8565b5090919050565b60015461098e908261077e565b600155336000908152600260205260409020546109ab908261077e565b336000818152600260205260408120929092559054610911916001600160a01b03909116903084610c91565b60008183610a635760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610a28578181015183820152602001610a10565b50505050905090810190601f168015610a555780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581610a6f57fe5b0495945050505050565b60008184841115610acb5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610a28578181015183820152602001610a10565b505050900390565b610ae5826001600160a01b0316610ceb565b610b36576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310610b745780518252601f199092019160209182019101610b55565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610bd6576040519150601f19603f3d011682016040523d82523d6000602084013e610bdb565b606091505b509150915081610c32576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115610c8b57808060200190516020811015610c4e57600080fd5b5051610c8b5760405162461bcd60e51b815260040180806020018281038252602a815260200180610d49602a913960400191505060405180910390fd5b50505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610c8b908590610ad3565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708115801590610d1f5750808214155b94935050505056fe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a264697066735822122063264776c5fcf6b7a0516a1370a3959cc0f956c1f185db7b5428111ae01d8c6564736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012b5760003560e01c80638b876347116100ad578063c8f33c9111610071578063c8f33c911461027a578063cd3daf9d14610282578063df136d651461028a578063e9fad8ee14610292578063ebe2b12b1461029a5761012b565b80638b8763471461021f5780638da58897146102455780639c907b581461024d578063a56dfe4a14610255578063a694fc3a1461025d5761012b565b80633d18b912116100f45780633d18b912146101bd5780633dbc0610146101c557806370a08231146101e95780637b0a47ee1461020f57806380faa57d146102175761012b565b80628cc262146101305780630700037d1461016857806318160ddd1461018e5780631be05289146101965780632e1a7d4d1461019e575b600080fd5b6101566004803603602081101561014657600080fd5b50356001600160a01b03166102a2565b60408051918252519081900360200190f35b6101566004803603602081101561017e57600080fd5b50356001600160a01b0316610310565b610156610322565b610156610329565b6101bb600480360360208110156101b457600080fd5b5035610330565b005b6101bb610459565b6101cd61056d565b604080516001600160a01b039092168252519081900360200190f35b610156600480360360208110156101ff57600080fd5b50356001600160a01b031661057c565b610156610597565b61015661059d565b6101566004803603602081101561023557600080fd5b50356001600160a01b03166105b0565b6101566105c2565b6101566105c8565b6101cd6105ce565b6101bb6004803603602081101561027357600080fd5b50356105dd565b610156610703565b610156610709565b610156610757565b6101bb61075d565b610156610778565b6001600160a01b0381166000908152600b6020908152604080832054600a90925282205461030a919061030490670de0b6b3a7640000906102fe906102ef906102e9610709565b90610821565b6102f88861057c565b90610863565b906107df565b9061077e565b92915050565b600b6020526000908152604090205481565b6001545b90565b62278d0081565b33610339610709565b60095561034461059d565b6008556001600160a01b0381161561038b5761035f816102a2565b6001600160a01b0382166000908152600b6020908152604080832093909355600954600a909152919020555b60055442116103cd576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b60008211610416576040805162461bcd60e51b8152602060048201526011602482015270043616e6e6f74207769746864726177203607c1b604482015290519081900360640190fd5b61041f826108bc565b60408051838152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a25050565b33610462610709565b60095561046d61059d565b6008556001600160a01b038116156104b457610488816102a2565b6001600160a01b0382166000908152600b6020908152604080832093909355600954600a909152919020555b60055442116104f6576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b6000610501336102a2565b9050801561056957336000818152600b6020526040812055600354610532916001600160a01b039091169083610914565b60408051828152905133917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b5050565b6003546001600160a01b031681565b6001600160a01b031660009081526002602052604090205490565b60075481565b60006105ab4260065461096b565b905090565b600a6020526000908152604090205481565b60055481565b60045481565b6000546001600160a01b031681565b336105e6610709565b6009556105f161059d565b6008556001600160a01b038116156106385761060c816102a2565b6001600160a01b0382166000908152600b6020908152604080832093909355600954600a909152919020555b600554421161067a576040805162461bcd60e51b81526020600482015260096024820152681b9bdd081cdd185c9d60ba1b604482015290519081900360640190fd5b600082116106c0576040805162461bcd60e51b815260206004820152600e60248201526d043616e6e6f74207374616b6520360941b604482015290519081900360640190fd5b6106c982610981565b60408051838152905133917f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d919081900360200190a25050565b60085481565b6000610713610322565b6107205750600954610326565b6105ab61074e61072e610322565b6102fe670de0b6b3a76400006102f86007546102f86008546102e961059d565b6009549061077e565b60095481565b61076e6107693361057c565b610330565b610776610459565b565b60065481565b6000828201838110156107d8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60006107d883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506109d7565b60006107d883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610a79565b6000826108725750600061030a565b8282028284828161087f57fe5b04146107d85760405162461bcd60e51b8152600401808060200182810382526021815260200180610d286021913960400191505060405180910390fd5b6001546108c99082610821565b600155336000908152600260205260409020546108e69082610821565b336000818152600260205260408120929092559054610911916001600160a01b039091169083610914565b50565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610966908490610ad3565b505050565b600081831061097a57816107d8565b5090919050565b60015461098e908261077e565b600155336000908152600260205260409020546109ab908261077e565b336000818152600260205260408120929092559054610911916001600160a01b03909116903084610c91565b60008183610a635760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610a28578181015183820152602001610a10565b50505050905090810190601f168015610a555780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581610a6f57fe5b0495945050505050565b60008184841115610acb5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610a28578181015183820152602001610a10565b505050900390565b610ae5826001600160a01b0316610ceb565b610b36576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310610b745780518252601f199092019160209182019101610b55565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610bd6576040519150601f19603f3d011682016040523d82523d6000602084013e610bdb565b606091505b509150915081610c32576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115610c8b57808060200190516020811015610c4e57600080fd5b5051610c8b5760405162461bcd60e51b815260040180806020018281038252602a815260200180610d49602a913960400191505060405180910390fd5b50505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610c8b908590610ad3565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708115801590610d1f5750808214155b94935050505056fe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a264697066735822122063264776c5fcf6b7a0516a1370a3959cc0f956c1f185db7b5428111ae01d8c6564736f6c634300060c0033
Deployed Bytecode Sourcemap
20858:3040:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22570:265;;;;;;;;;;;;;;;;-1:-1:-1;22570:265:0;-1:-1:-1;;;;;22570:265:0;;:::i;:::-;;;;;;;;;;;;;;;;21394:42;;;;;;;;;;;;;;;;-1:-1:-1;21394:42:0;-1:-1:-1;;;;;21394:42:0;;:::i;20171:91::-;;;:::i;20989:42::-;;;:::i;23146:222::-;;;;;;;;;;;;;;;;-1:-1:-1;23146:222:0;;:::i;:::-;;23481:298;;;:::i;20909:73::-;;;:::i;:::-;;;;-1:-1:-1;;;;;20909:73:0;;;;;;;;;;;;;;20270:110;;;;;;;;;;;;;;;;-1:-1:-1;20270:110:0;-1:-1:-1;;;;;20270:110:0;;:::i;21193:52::-;;;:::i;22003:131::-;;;:::i;21330:57::-;;;;;;;;;;;;;;;;-1:-1:-1;21330:57:0;-1:-1:-1;;;;;21330:57:0;;:::i;21088:37::-;;;:::i;21040:41::-;;;:::i;19994:68::-;;;:::i;22926:212::-;;;;;;;;;;;;;;;;-1:-1:-1;22926:212:0;;:::i;21252:29::-;;;:::i;22142:420::-;;;:::i;21288:35::-;;;:::i;23376:97::-;;;:::i;21133:53::-;;;:::i;22570:265::-;-1:-1:-1;;;;;22810:16:0;;22624:7;22810:16;;;:7;:16;;;;;;;;;22726:22;:31;;;;;;22664:163;;22810:16;22664:123;;22782:4;;22664:95;;22705:53;;:16;:14;:16::i;:::-;:20;;:53::i;:::-;22664:18;22674:7;22664:9;:18::i;:::-;:40;;:95::i;:::-;:117;;:123::i;:::-;:145;;:163::i;:::-;22644:183;22570:265;-1:-1:-1;;22570:265:0:o;21394:42::-;;;;;;;;;;;;;:::o;20171:91::-;20242:12;;20171:91;;:::o;20989:42::-;21024:7;20989:42;:::o;23146:222::-;23200:10;21738:16;:14;:16::i;:::-;21715:20;:39;21782:26;:24;:26::i;:::-;21765:14;:43;-1:-1:-1;;;;;21823:21:0;;;21819:157;;21880:15;21887:7;21880:6;:15::i;:::-;-1:-1:-1;;;;;21861:16:0;;;;;;:7;:16;;;;;;;;:34;;;;21944:20;;21910:22;:31;;;;;;:54;21819:157;23847:9:::1;;23829:15;:27;23821:48;;;::::0;;-1:-1:-1;;;23821:48:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;23821:48:0;;;;;;;;;;;;;::::1;;23259:1:::2;23250:6;:10;23242:40;;;::::0;;-1:-1:-1;;;23242:40:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;23242:40:0;;;;;;;;;;;;;::::2;;23293:22;23308:6;23293:14;:22::i;:::-;23331:29;::::0;;;;;;;23341:10:::2;::::0;23331:29:::2;::::0;;;;;::::2;::::0;;::::2;23146:222:::0;;:::o;23481:298::-;23522:10;21738:16;:14;:16::i;:::-;21715:20;:39;21782:26;:24;:26::i;:::-;21765:14;:43;-1:-1:-1;;;;;21823:21:0;;;21819:157;;21880:15;21887:7;21880:6;:15::i;:::-;-1:-1:-1;;;;;21861:16:0;;;;;;:7;:16;;;;;;;;:34;;;;21944:20;;21910:22;:31;;;;;;:54;21819:157;23847:9:::1;;23829:15;:27;23821:48;;;::::0;;-1:-1:-1;;;23821:48:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;23821:48:0;;;;;;;;;;;;;::::1;;23556:14:::2;23573:18;23580:10;23573:6;:18::i;:::-;23556:35:::0;-1:-1:-1;23606:10:0;;23602:170:::2;;23641:10;23655:1;23633:19:::0;;;:7:::2;:19;::::0;;;;:23;23671:6:::2;::::0;:39:::2;::::0;-1:-1:-1;;;;;23671:6:0;;::::2;::::0;23703;23671:19:::2;:39::i;:::-;23730:30;::::0;;;;;;;23741:10:::2;::::0;23730:30:::2;::::0;;;;;::::2;::::0;;::::2;23602:170;23880:1;23481:298:::0;:::o;20909:73::-;;;-1:-1:-1;;;;;20909:73:0;;:::o;20270:110::-;-1:-1:-1;;;;;20354:18:0;20327:7;20354:18;;;:9;:18;;;;;;;20270:110::o;21193:52::-;;;;:::o;22003:131::-;22060:7;22087:39;22096:15;22113:12;;22087:8;:39::i;:::-;22080:46;;22003:131;:::o;21330:57::-;;;;;;;;;;;;;:::o;21088:37::-;;;;:::o;21040:41::-;;;;:::o;19994:68::-;;;-1:-1:-1;;;;;19994:68:0;;:::o;22926:212::-;22977:10;21738:16;:14;:16::i;:::-;21715:20;:39;21782:26;:24;:26::i;:::-;21765:14;:43;-1:-1:-1;;;;;21823:21:0;;;21819:157;;21880:15;21887:7;21880:6;:15::i;:::-;-1:-1:-1;;;;;21861:16:0;;;;;;:7;:16;;;;;;;;:34;;;;21944:20;;21910:22;:31;;;;;;:54;21819:157;23847:9:::1;;23829:15;:27;23821:48;;;::::0;;-1:-1:-1;;;23821:48:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;23821:48:0;;;;;;;;;;;;;::::1;;23038:1:::2;23029:6;:10;23021:37;;;::::0;;-1:-1:-1;;;23021:37:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;23021:37:0;;;;;;;;;;;;;::::2;;23069:19;23081:6;23069:11;:19::i;:::-;23104:26;::::0;;;;;;;23111:10:::2;::::0;23104:26:::2;::::0;;;;;::::2;::::0;;::::2;22926:212:::0;;:::o;21252:29::-;;;;:::o;22142:420::-;22189:7;22213:13;:11;:13::i;:::-;22209:78;;-1:-1:-1;22255:20:0;;22248:27;;22209:78;22317:237;22360:179;22525:13;:11;:13::i;:::-;22360:138;22493:4;22360:106;22455:10;;22360:68;22413:14;;22360:26;:24;:26::i;:179::-;22317:20;;;:24;:237::i;21288:35::-;;;;:::o;23376:97::-;23412:31;23421:21;23431:10;23421:9;:21::i;:::-;23412:8;:31::i;:::-;23454:11;:9;:11::i;:::-;23376:97::o;21133:53::-;;;;:::o;1712:181::-;1770:7;1802:5;;;1826:6;;;;1818:46;;;;;-1:-1:-1;;;1818:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1884:1;1712:181;-1:-1:-1;;;1712:181:0:o;4023:132::-;4081:7;4108:39;4112:1;4115;4108:39;;;;;;;;;;;;;;;;;:3;:39::i;2168:136::-;2226:7;2253:43;2257:1;2260;2253:43;;;;;;;;;;;;;;;;;:3;:43::i;3084:471::-;3142:7;3387:6;3383:47;;-1:-1:-1;3417:1:0;3410:8;;3383:47;3454:5;;;3458:1;3454;:5;:1;3478:5;;;;;:10;3470:56;;;;-1:-1:-1;;;3470:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20631:220;20706:12;;:24;;20723:6;20706:16;:24::i;:::-;20691:12;:39;20775:10;20765:21;;;;:9;:21;;;;;;:33;;20791:6;20765:25;:33::i;:::-;20751:10;20741:21;;;;:9;:21;;;;;:57;;;;20809:1;;:34;;-1:-1:-1;;;;;20809:1:0;;;;20836:6;20809:14;:34::i;:::-;20631:220;:::o;16704:176::-;16813:58;;;-1:-1:-1;;;;;16813:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16813:58:0;-1:-1:-1;;;16813:58:0;;;16787:85;;16806:5;;16787:18;:85::i;:::-;16704:176;;;:::o;374:106::-;432:7;463:1;459;:5;:13;;471:1;459:13;;;-1:-1:-1;467:1:0;;374:106;-1:-1:-1;374:106:0:o;20388:235::-;20459:12;;:24;;20476:6;20459:16;:24::i;:::-;20444:12;:39;20528:10;20518:21;;;;:9;:21;;;;;;:33;;20544:6;20518:25;:33::i;:::-;20504:10;20494:21;;;;:9;:21;;;;;:57;;;;20562:1;;:53;;-1:-1:-1;;;;;20562:1:0;;;;20601:4;20608:6;20562:18;:53::i;4685:345::-;4771:7;4873:12;4866:5;4858:28;;;;-1:-1:-1;;;4858:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4897:9;4913:1;4909;:5;;;;;;;4685:345;-1:-1:-1;;;;;4685:345:0:o;2641:192::-;2727:7;2763:12;2755:6;;;;2747:29;;;;-1:-1:-1;;;2747:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2799:5:0;;;2641:192::o;18743:1114::-;19347:27;19355:5;-1:-1:-1;;;;;19347:25:0;;:27::i;:::-;19339:71;;;;;-1:-1:-1;;;19339:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19484:12;19498:23;19533:5;-1:-1:-1;;;;;19525:19:0;19545:4;19525:25;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;19525:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19483:67;;;;19569:7;19561:52;;;;;-1:-1:-1;;;19561:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19630:17;;:21;19626:224;;19772:10;19761:30;;;;;;;;;;;;;;;-1:-1:-1;19761:30:0;19753:85;;;;-1:-1:-1;;;19753:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18743:1114;;;;:::o;16888:204::-;17015:68;;;-1:-1:-1;;;;;17015:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17015:68:0;-1:-1:-1;;;17015:68:0;;;16989:95;;17008:5;;16989:18;:95::i;13542:810::-;13602:4;14261:20;;14104:66;14301:15;;;;;:42;;;14332:11;14320:8;:23;;14301:42;14293:51;13542:810;-1:-1:-1;;;;13542:810:0:o
Swarm Source
ipfs://63264776c5fcf6b7a0516a1370a3959cc0f956c1f185db7b5428111ae01d8c65
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.