Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 5 from a total of 5 transactions
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
HardRewards
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-10-05 */ // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity ^0.5.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/token/ERC20/IERC20.sol pragma solidity ^0.5.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); /** * @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.5.5; /** * @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) { // 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 != accountHash && codehash != 0x0); } /** * @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.5.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"); } } } // File: contracts/Storage.sol pragma solidity 0.5.16; contract Storage { address public governance; address public controller; constructor() public { governance = msg.sender; } modifier onlyGovernance() { require(isGovernance(msg.sender), "Not governance"); _; } function setGovernance(address _governance) public onlyGovernance { require(_governance != address(0), "new governance shouldn't be empty"); governance = _governance; } function setController(address _controller) public onlyGovernance { require(_controller != address(0), "new controller shouldn't be empty"); controller = _controller; } function isGovernance(address account) public view returns (bool) { return account == governance; } function isController(address account) public view returns (bool) { return account == controller; } } // File: contracts/Governable.sol pragma solidity 0.5.16; contract Governable { Storage public store; constructor(address _store) public { require(_store != address(0), "new storage shouldn't be empty"); store = Storage(_store); } modifier onlyGovernance() { require(store.isGovernance(msg.sender), "Not governance"); _; } function setStorage(address _store) public onlyGovernance { require(_store != address(0), "new storage shouldn't be empty"); store = Storage(_store); } function governance() public view returns (address) { return store.governance(); } } // File: contracts/Controllable.sol pragma solidity 0.5.16; contract Controllable is Governable { constructor(address _storage) Governable(_storage) public { } modifier onlyController() { require(store.isController(msg.sender), "Not a controller"); _; } modifier onlyControllerOrGovernance(){ require((store.isController(msg.sender) || store.isGovernance(msg.sender)), "The caller must be controller or governance"); _; } function controller() public view returns (address) { return store.controller(); } } // File: contracts/HardRewards.sol pragma solidity 0.5.16; contract HardRewards is Controllable { using SafeMath for uint256; using SafeERC20 for IERC20; event Rewarded(address indexed recipient, address indexed vault, uint256 amount); // token used for rewards IERC20 public token; // how many tokens per each block uint256 public blockReward; // vault to the last rewarded block mapping(address => uint256) public lastReward; constructor(address _storage, address _token) Controllable(_storage) public { token = IERC20(_token); } /** * Called from the controller after hard work has been done. Defensively avoid * reverting the transaction in this function. */ function rewardMe(address recipient, address vault) external onlyController { if (address(token) == address(0) || blockReward == 0) { // no rewards now emit Rewarded(recipient, vault, 0); return; } if (lastReward[vault] == 0) { // vault does not exist emit Rewarded(recipient, vault, 0); return; } uint256 span = block.number.sub(lastReward[vault]); uint256 reward = blockReward.mul(span); if (reward > 0) { uint256 balance = token.balanceOf(address(this)); uint256 realReward = balance >= reward ? reward : balance; if (realReward > 0) { token.safeTransfer(recipient, realReward); } emit Rewarded(recipient, vault, realReward); } else { emit Rewarded(recipient, vault, 0); } lastReward[vault] = block.number; } function addVault(address _vault) external onlyGovernance { lastReward[_vault] = block.number; } function removeVault(address _vault) external onlyGovernance { delete (lastReward[_vault]); } /** * Transfers tokens for the new rewards cycle. Allows for changing the rewards setting * at the same time. */ function load(address _token, uint256 _rate, uint256 _amount) external onlyGovernance { token = IERC20(_token); blockReward = _rate; if (address(token) != address(0) && _amount > 0) { token.safeTransferFrom(msg.sender, address(this), _amount); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_storage","type":"address"},{"internalType":"address","name":"_token","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":true,"internalType":"address","name":"vault","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Rewarded","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"_vault","type":"address"}],"name":"addVault","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"blockReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_rate","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"load","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_vault","type":"address"}],"name":"removeVault","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"address","name":"vault","type":"address"}],"name":"rewardMe","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_store","type":"address"}],"name":"setStorage","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"store","outputs":[{"internalType":"contract Storage","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50604051610f59380380610f598339818101604052604081101561003357600080fd5b50805160209091015181806001600160a01b038116610099576040805162461bcd60e51b815260206004820152601e60248201527f6e65772073746f726167652073686f756c646e277420626520656d7074790000604482015290519081900360640190fd5b600080546001600160a01b039283166001600160a01b03199182161790915560018054949092169316929092179091555050610e7f806100da6000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80639137c1a7116100715780639137c1a714610174578063975057e71461019a578063b2158cd3146101a2578063ceb68c23146101c8578063f77c4791146101ee578063fc0c546a146101f6576100a9565b80630a92802c146100ae5780630ac168a1146100e2578063256b5a02146100fc57806333b54be1146101225780635aa6e67514610150575b600080fd5b6100e0600480360360608110156100c457600080fd5b506001600160a01b0381351690602081013590604001356101fe565b005b6100ea610314565b60408051918252519081900360200190f35b6100e06004803603602081101561011257600080fd5b50356001600160a01b031661031a565b6100e06004803603604081101561013857600080fd5b506001600160a01b03813581169160200135166103ef565b6101586106fa565b604080516001600160a01b039092168252519081900360200190f35b6100e06004803603602081101561018a57600080fd5b50356001600160a01b031661077a565b6101586108b0565b6100ea600480360360208110156101b857600080fd5b50356001600160a01b03166108bf565b6100e0600480360360208110156101de57600080fd5b50356001600160a01b03166108d1565b6101586109a4565b6101586109f3565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561024957600080fd5b505afa15801561025d573d6000803e3d6000fd5b505050506040513d602081101561027357600080fd5b50516102b7576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b038581169190911791829055600284905516158015906102ec5750600081115b1561030f5760015461030f906001600160a01b031633308463ffffffff610a0216565b505050565b60025481565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561036557600080fd5b505afa158015610379573d6000803e3d6000fd5b505050506040513d602081101561038f57600080fd5b50516103d3576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b03166000908152600360205260409020439055565b6000546040805163b429afeb60e01b815233600482015290516001600160a01b039092169163b429afeb91602480820192602092909190829003018186803b15801561043a57600080fd5b505afa15801561044e573d6000803e3d6000fd5b505050506040513d602081101561046457600080fd5b50516104aa576040805162461bcd60e51b815260206004820152601060248201526f2737ba10309031b7b73a3937b63632b960811b604482015290519081900360640190fd5b6001546001600160a01b031615806104c25750600254155b1561050657806001600160a01b0316826001600160a01b0316600080516020610de083398151915260006040518082815260200191505060405180910390a36106f6565b6001600160a01b03811660009081526003602052604090205461056257806001600160a01b0316826001600160a01b0316600080516020610de083398151915260006040518082815260200191505060405180910390a36106f6565b6001600160a01b03811660009081526003602052604081205461058c90439063ffffffff610a6216565b905060006105a582600254610aad90919063ffffffff16565b9050801561069d57600154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156105f857600080fd5b505afa15801561060c573d6000803e3d6000fd5b505050506040513d602081101561062257600080fd5b505190506000828210156106365781610638565b825b9050801561065d5760015461065d906001600160a01b0316878363ffffffff610b0616565b846001600160a01b0316866001600160a01b0316600080516020610de0833981519152836040518082815260200191505060405180910390a350506106d8565b826001600160a01b0316846001600160a01b0316600080516020610de083398151915260006040518082815260200191505060405180910390a35b50506001600160a01b03811660009081526003602052604090204390555b5050565b60008060009054906101000a90046001600160a01b03166001600160a01b0316635aa6e6756040518163ffffffff1660e01b815260040160206040518083038186803b15801561074957600080fd5b505afa15801561075d573d6000803e3d6000fd5b505050506040513d602081101561077357600080fd5b5051905090565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b1580156107c557600080fd5b505afa1580156107d9573d6000803e3d6000fd5b505050506040513d60208110156107ef57600080fd5b5051610833576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b03811661088e576040805162461bcd60e51b815260206004820152601e60248201527f6e65772073746f726167652073686f756c646e277420626520656d7074790000604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031681565b60036020526000908152604090205481565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561091c57600080fd5b505afa158015610930573d6000803e3d6000fd5b505050506040513d602081101561094657600080fd5b505161098a576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b0316600090815260036020526040812055565b60008060009054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b15801561074957600080fd5b6001546001600160a01b031681565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610a5c908590610b54565b50505050565b6000610aa483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610d0c565b90505b92915050565b600082610abc57506000610aa7565b82820282848281610ac957fe5b0414610aa45760405162461bcd60e51b8152600401808060200182810382526021815260200180610e006021913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261030f9084905b610b66826001600160a01b0316610da3565b610bb7576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310610bf55780518252601f199092019160209182019101610bd6565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610c57576040519150601f19603f3d011682016040523d82523d6000602084013e610c5c565b606091505b509150915081610cb3576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115610a5c57808060200190516020811015610ccf57600080fd5b5051610a5c5760405162461bcd60e51b815260040180806020018281038252602a815260200180610e21602a913960400191505060405180910390fd5b60008184841115610d9b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d60578181015183820152602001610d48565b50505050905090810190601f168015610d8d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590610dd757508115155b94935050505056fe6876a213a761d9b4f8d7ba3609528ef85da671684271f75fdacb41be8db29f45536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a265627a7a72315820c01643ac33e2c9dec47bfb28ea03c706a6380fe9b0018b68c6c1af2950d7272264736f6c63430005100032000000000000000000000000c95cbe4ca30055c787cb784be99d6a8494d0d197000000000000000000000000a0246c9032bc3a600820415ae600c6388619a14d
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80639137c1a7116100715780639137c1a714610174578063975057e71461019a578063b2158cd3146101a2578063ceb68c23146101c8578063f77c4791146101ee578063fc0c546a146101f6576100a9565b80630a92802c146100ae5780630ac168a1146100e2578063256b5a02146100fc57806333b54be1146101225780635aa6e67514610150575b600080fd5b6100e0600480360360608110156100c457600080fd5b506001600160a01b0381351690602081013590604001356101fe565b005b6100ea610314565b60408051918252519081900360200190f35b6100e06004803603602081101561011257600080fd5b50356001600160a01b031661031a565b6100e06004803603604081101561013857600080fd5b506001600160a01b03813581169160200135166103ef565b6101586106fa565b604080516001600160a01b039092168252519081900360200190f35b6100e06004803603602081101561018a57600080fd5b50356001600160a01b031661077a565b6101586108b0565b6100ea600480360360208110156101b857600080fd5b50356001600160a01b03166108bf565b6100e0600480360360208110156101de57600080fd5b50356001600160a01b03166108d1565b6101586109a4565b6101586109f3565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561024957600080fd5b505afa15801561025d573d6000803e3d6000fd5b505050506040513d602081101561027357600080fd5b50516102b7576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b038581169190911791829055600284905516158015906102ec5750600081115b1561030f5760015461030f906001600160a01b031633308463ffffffff610a0216565b505050565b60025481565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561036557600080fd5b505afa158015610379573d6000803e3d6000fd5b505050506040513d602081101561038f57600080fd5b50516103d3576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b03166000908152600360205260409020439055565b6000546040805163b429afeb60e01b815233600482015290516001600160a01b039092169163b429afeb91602480820192602092909190829003018186803b15801561043a57600080fd5b505afa15801561044e573d6000803e3d6000fd5b505050506040513d602081101561046457600080fd5b50516104aa576040805162461bcd60e51b815260206004820152601060248201526f2737ba10309031b7b73a3937b63632b960811b604482015290519081900360640190fd5b6001546001600160a01b031615806104c25750600254155b1561050657806001600160a01b0316826001600160a01b0316600080516020610de083398151915260006040518082815260200191505060405180910390a36106f6565b6001600160a01b03811660009081526003602052604090205461056257806001600160a01b0316826001600160a01b0316600080516020610de083398151915260006040518082815260200191505060405180910390a36106f6565b6001600160a01b03811660009081526003602052604081205461058c90439063ffffffff610a6216565b905060006105a582600254610aad90919063ffffffff16565b9050801561069d57600154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156105f857600080fd5b505afa15801561060c573d6000803e3d6000fd5b505050506040513d602081101561062257600080fd5b505190506000828210156106365781610638565b825b9050801561065d5760015461065d906001600160a01b0316878363ffffffff610b0616565b846001600160a01b0316866001600160a01b0316600080516020610de0833981519152836040518082815260200191505060405180910390a350506106d8565b826001600160a01b0316846001600160a01b0316600080516020610de083398151915260006040518082815260200191505060405180910390a35b50506001600160a01b03811660009081526003602052604090204390555b5050565b60008060009054906101000a90046001600160a01b03166001600160a01b0316635aa6e6756040518163ffffffff1660e01b815260040160206040518083038186803b15801561074957600080fd5b505afa15801561075d573d6000803e3d6000fd5b505050506040513d602081101561077357600080fd5b5051905090565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b1580156107c557600080fd5b505afa1580156107d9573d6000803e3d6000fd5b505050506040513d60208110156107ef57600080fd5b5051610833576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b03811661088e576040805162461bcd60e51b815260206004820152601e60248201527f6e65772073746f726167652073686f756c646e277420626520656d7074790000604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031681565b60036020526000908152604090205481565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561091c57600080fd5b505afa158015610930573d6000803e3d6000fd5b505050506040513d602081101561094657600080fd5b505161098a576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b0316600090815260036020526040812055565b60008060009054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b15801561074957600080fd5b6001546001600160a01b031681565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610a5c908590610b54565b50505050565b6000610aa483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610d0c565b90505b92915050565b600082610abc57506000610aa7565b82820282848281610ac957fe5b0414610aa45760405162461bcd60e51b8152600401808060200182810382526021815260200180610e006021913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261030f9084905b610b66826001600160a01b0316610da3565b610bb7576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310610bf55780518252601f199092019160209182019101610bd6565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610c57576040519150601f19603f3d011682016040523d82523d6000602084013e610c5c565b606091505b509150915081610cb3576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115610a5c57808060200190516020811015610ccf57600080fd5b5051610a5c5760405162461bcd60e51b815260040180806020018281038252602a815260200180610e21602a913960400191505060405180910390fd5b60008184841115610d9b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d60578181015183820152602001610d48565b50505050905090810190601f168015610d8d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590610dd757508115155b94935050505056fe6876a213a761d9b4f8d7ba3609528ef85da671684271f75fdacb41be8db29f45536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a265627a7a72315820c01643ac33e2c9dec47bfb28ea03c706a6380fe9b0018b68c6c1af2950d7272264736f6c63430005100032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000c95cbe4ca30055c787cb784be99d6a8494d0d197000000000000000000000000a0246c9032bc3a600820415ae600c6388619a14d
-----Decoded View---------------
Arg [0] : _storage (address): 0xc95CbE4ca30055c787CB784BE99D6a8494d0d197
Arg [1] : _token (address): 0xa0246c9032bC3A600820415aE600c6388619A14D
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000c95cbe4ca30055c787cb784be99d6a8494d0d197
Arg [1] : 000000000000000000000000a0246c9032bc3a600820415ae600c6388619a14d
Deployed Bytecode Sourcemap
17499:2165:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17499:2165:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19384:277;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;19384:277:0;;;;;;;;;;;;;:::i;:::-;;17786:26;;;:::i;:::-;;;;;;;;;;;;;;;;19042:104;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19042:104:0;-1:-1:-1;;;;;19042:104:0;;:::i;18173:863::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18173:863:0;;;;;;;;;;:::i;16746:90::-;;;:::i;:::-;;;;-1:-1:-1;;;;;16746:90:0;;;;;;;;;;;;;;16576:164;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16576:164:0;-1:-1:-1;;;;;16576:164:0;;:::i;16292:20::-;;;:::i;17858:45::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17858:45:0;-1:-1:-1;;;;;17858:45:0;;:::i;19152:101::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19152:101:0;-1:-1:-1;;;;;19152:101:0;;:::i;17329:90::-;;;:::i;17723:19::-;;;:::i;19384:277::-;16507:5;;:30;;;-1:-1:-1;;;16507:30:0;;16526:10;16507:30;;;;;;-1:-1:-1;;;;;16507:5:0;;;;:18;;:30;;;;;;;;;;;;;;;:5;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;16507:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16507:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16507:30:0;16499:57;;;;;-1:-1:-1;;;16499:57:0;;;;;;;;;;;;-1:-1:-1;;;16499:57:0;;;;;;;;;;;;;;;19477:5;:22;;-1:-1:-1;;;;;;19477:22:0;-1:-1:-1;;;;;19477:22:0;;;;;;;;;;;19506:11;:19;;;19544:5;19536:28;;;;:43;;;19578:1;19568:7;:11;19536:43;19532:124;;;19590:5;;:58;;-1:-1:-1;;;;;19590:5:0;19613:10;19633:4;19640:7;19590:58;:22;:58;:::i;:::-;19384:277;;;:::o;17786:26::-;;;;:::o;19042:104::-;16507:5;;:30;;;-1:-1:-1;;;16507:30:0;;16526:10;16507:30;;;;;;-1:-1:-1;;;;;16507:5:0;;;;:18;;:30;;;;;;;;;;;;;;;:5;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;16507:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16507:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16507:30:0;16499:57;;;;;-1:-1:-1;;;16499:57:0;;;;;;;;;;;;-1:-1:-1;;;16499:57:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;19107:18:0;;;;;:10;:18;;;;;19128:12;19107:33;;19042:104::o;18173:863::-;17065:5;;:30;;;-1:-1:-1;;;17065:30:0;;17084:10;17065:30;;;;;;-1:-1:-1;;;;;17065:5:0;;;;:18;;:30;;;;;;;;;;;;;;;:5;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;17065:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;17065:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17065:30:0;17057:59;;;;;-1:-1:-1;;;17057:59:0;;;;;;;;;;;;-1:-1:-1;;;17057:59:0;;;;;;;;;;;;;;;18268:5;;-1:-1:-1;;;;;18268:5:0;18260:28;;:48;;-1:-1:-1;18292:11:0;;:16;18260:48;18256:145;;;18369:5;-1:-1:-1;;;;;18349:29:0;18358:9;-1:-1:-1;;;;;18349:29:0;-1:-1:-1;;;;;;;;;;;18376:1:0;18349:29;;;;;;;;;;;;;;;;;;18387:7;;18256:145;-1:-1:-1;;;;;18413:17:0;;;;;;:10;:17;;;;;;18409:125;;18502:5;-1:-1:-1;;;;;18482:29:0;18491:9;-1:-1:-1;;;;;18482:29:0;-1:-1:-1;;;;;;;;;;;18509:1:0;18482:29;;;;;;;;;;;;;;;;;;18520:7;;18409:125;-1:-1:-1;;;;;18574:17:0;;18542:12;18574:17;;;:10;:17;;;;;;18557:35;;:12;;:35;:16;:35;:::i;:::-;18542:50;;18599:14;18616:21;18632:4;18616:11;;:15;;:21;;;;:::i;:::-;18599:38;-1:-1:-1;18650:10:0;;18646:346;;18689:5;;:30;;;-1:-1:-1;;;18689:30:0;;18713:4;18689:30;;;;;;18671:15;;-1:-1:-1;;;;;18689:5:0;;:15;;:30;;;;;;;;;;;;;;:5;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;18689:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;18689:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18689:30:0;;-1:-1:-1;18728:18:0;18749:17;;;;:36;;18778:7;18749:36;;;18769:6;18749:36;18728:57;-1:-1:-1;18798:14:0;;18794:82;;18825:5;;:41;;-1:-1:-1;;;;;18825:5:0;18844:9;18855:10;18825:41;:18;:41;:::i;:::-;18909:5;-1:-1:-1;;;;;18889:38:0;18898:9;-1:-1:-1;;;;;18889:38:0;-1:-1:-1;;;;;;;;;;;18916:10:0;18889:38;;;;;;;;;;;;;;;;;;18646:346;;;;;18975:5;-1:-1:-1;;;;;18955:29:0;18964:9;-1:-1:-1;;;;;18955:29:0;-1:-1:-1;;;;;;;;;;;18982:1:0;18955:29;;;;;;;;;;;;;;;;;;18646:346;-1:-1:-1;;;;;;;18998:17:0;;;;;;:10;:17;;;;;19018:12;18998:32;;17123:1;18173:863;;:::o;16746:90::-;16789:7;16812:5;;;;;;;;;-1:-1:-1;;;;;16812:5:0;-1:-1:-1;;;;;16812:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16812:18:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16812:18:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16812:18:0;;-1:-1:-1;16746:90:0;:::o;16576:164::-;16507:5;;:30;;;-1:-1:-1;;;16507:30:0;;16526:10;16507:30;;;;;;-1:-1:-1;;;;;16507:5:0;;;;:18;;:30;;;;;;;;;;;;;;;:5;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;16507:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16507:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16507:30:0;16499:57;;;;;-1:-1:-1;;;16499:57:0;;;;;;;;;;;;-1:-1:-1;;;16499:57:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16649:20:0;;16641:63;;;;;-1:-1:-1;;;16641:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16711:5;:23;;-1:-1:-1;;;;;;16711:23:0;-1:-1:-1;;;;;16711:23:0;;;;;;;;;;16576:164::o;16292:20::-;;;-1:-1:-1;;;;;16292:20:0;;:::o;17858:45::-;;;;;;;;;;;;;:::o;19152:101::-;16507:5;;:30;;;-1:-1:-1;;;16507:30:0;;16526:10;16507:30;;;;;;-1:-1:-1;;;;;16507:5:0;;;;:18;;:30;;;;;;;;;;;;;;;:5;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;16507:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16507:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16507:30:0;16499:57;;;;;-1:-1:-1;;;16499:57:0;;;;;;;;;;;;-1:-1:-1;;;16499:57:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;19228:18:0;;;;;:10;:18;;;;;19220:27;19152:101::o;17329:90::-;17372:7;17395:5;;;;;;;;;-1:-1:-1;;;;;17395:5:0;-1:-1:-1;;;;;17395:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;17723:19:0;;;-1:-1:-1;;;;;17723:19:0;;:::o;12308:204::-;12435:68;;;-1:-1:-1;;;;;12435:68:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;12435:68:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;12409:95:0;;12428:5;;12409:18;:95::i;:::-;12308:204;;;;:::o;1369:136::-;1427:7;1454:43;1458:1;1461;1454:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1447:50;;1369:136;;;;;:::o;2285:471::-;2343:7;2588:6;2584:47;;-1:-1:-1;2618:1:0;2611:8;;2584:47;2655:5;;;2659:1;2655;:5;:1;2679:5;;;;;:10;2671:56;;;;-1:-1:-1;;;2671:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12124:176;12233:58;;;-1:-1:-1;;;;;12233:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;12233:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;12207:85:0;;12226:5;;14163:1114;14767:27;14775:5;-1:-1:-1;;;;;14767:25:0;;:27::i;:::-;14759:71;;;;;-1:-1:-1;;;14759:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14904:12;14918:23;14953:5;-1:-1:-1;;;;;14945:19:0;14965:4;14945:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;14945:25:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;14903:67:0;;;;14989:7;14981:52;;;;;-1:-1:-1;;;14981:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15050:17;;:21;15046:224;;15192:10;15181:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15181:30:0;15173:85;;;;-1:-1:-1;;;15173:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1842:192;1928:7;1964:12;1956:6;;;;1948:29;;;;-1:-1:-1;;;1948:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1948:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2000:5:0;;;1842:192::o;9153:619::-;9213:4;9681:20;;9524:66;9721:23;;;;;;:42;;-1:-1:-1;9748:15:0;;;9721:42;9713:51;9153:619;-1:-1:-1;;;;9153:619:0:o
Swarm Source
bzzr://c01643ac33e2c9dec47bfb28ea03c706a6380fe9b0018b68c6c1af2950d72722
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.