Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 54 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Execute | 20693731 | 121 days ago | IN | 0 ETH | 0.00141264 | ||||
Execute | 20686365 | 122 days ago | IN | 0 ETH | 0.00172447 | ||||
Execute | 20679035 | 123 days ago | IN | 0 ETH | 0.00312559 | ||||
Execute | 20671720 | 124 days ago | IN | 0 ETH | 0.0006971 | ||||
Execute | 20664432 | 125 days ago | IN | 0 ETH | 0.00305973 | ||||
Execute | 20657081 | 126 days ago | IN | 0 ETH | 0.00042967 | ||||
Execute | 20649759 | 128 days ago | IN | 0 ETH | 0.00041543 | ||||
Execute | 20642455 | 129 days ago | IN | 0 ETH | 0.00213085 | ||||
Execute | 20635147 | 130 days ago | IN | 0 ETH | 0.00186627 | ||||
Execute | 20627860 | 131 days ago | IN | 0 ETH | 0.00253794 | ||||
Execute | 20620550 | 132 days ago | IN | 0 ETH | 0.00114734 | ||||
Execute | 20613225 | 133 days ago | IN | 0 ETH | 0.00102976 | ||||
Execute | 20605950 | 134 days ago | IN | 0 ETH | 0.00109966 | ||||
Execute | 20598670 | 135 days ago | IN | 0 ETH | 0.0008695 | ||||
Execute | 20591322 | 136 days ago | IN | 0 ETH | 0.00106433 | ||||
Execute | 20584016 | 137 days ago | IN | 0 ETH | 0.00102138 | ||||
Execute | 20576772 | 138 days ago | IN | 0 ETH | 0.00091509 | ||||
Execute | 19746137 | 254 days ago | IN | 0 ETH | 0.00561825 | ||||
Execute | 19532356 | 284 days ago | IN | 0 ETH | 0.03238351 | ||||
Execute | 19484279 | 291 days ago | IN | 0 ETH | 0.02831168 | ||||
Execute | 19478895 | 291 days ago | IN | 0 ETH | 0.00173592 | ||||
Execute | 19371855 | 306 days ago | IN | 0 ETH | 0.07673347 | ||||
Execute | 19320839 | 313 days ago | IN | 0 ETH | 0.05388221 | ||||
Execute | 19271770 | 320 days ago | IN | 0 ETH | 0.05647509 | ||||
Execute | 19226393 | 327 days ago | IN | 0 ETH | 0.02922254 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
MinterExecutor
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-21 */ // Sources flattened with hardhat v2.5.0 https://hardhat.org // File @openzeppelin/contracts/token/ERC20/[email protected] 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/math/[email protected] 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/utils/[email protected] 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/[email protected] 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 public/contracts/base/inheritance/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 public/contracts/base/inheritance/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 public/contracts/base/inheritance/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/MinterExecutor.sol pragma solidity 0.5.16; interface IMinterHelper { function execute(uint256 index, bool announceNext) external; } contract MinterExecutor is Controllable { using SafeERC20 for IERC20; mapping (address => bool) public whitelist; address public minterHelper; uint256 public currentMintId; event WhitelistSet(address indexed account, bool value); modifier onlyWhitelisted { require(whitelist[msg.sender], "Only whitelisted"); _; } constructor(address _minterHelper, address _storage) Controllable(_storage) public { minterHelper = _minterHelper; whitelist[0xF49440C1F012d041802b25A73e5B0B9166a75c02] = true; //msig } /// Returning the governance function transferGovernance(address target, address newStorage) external onlyGovernance { Governable(target).setStorage(newStorage); } function setWhitelist(address who, bool value) external onlyGovernance { whitelist[who] = value; emit WhitelistSet(who, value); } function resetCurrentMintId(uint256 value) external onlyGovernance { currentMintId = value; } function execute() external onlyWhitelisted { IMinterHelper(minterHelper).execute(currentMintId++, true); } /// emergency draining of tokens and ETH as there should be none staying here function emergencyDrain(address token, uint256 amount) public onlyGovernance { if (token == address(0)) { msg.sender.transfer(amount); } else { IERC20(token).safeTransfer(msg.sender, amount); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_minterHelper","type":"address"},{"internalType":"address","name":"_storage","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"WhitelistSet","type":"event"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"currentMintId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"emergencyDrain","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"execute","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minterHelper","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"resetCurrentMintId","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":false,"inputs":[{"internalType":"address","name":"who","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setWhitelist","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":false,"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"address","name":"newStorage","type":"address"}],"name":"transferGovernance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50604051610d17380380610d178339818101604052604081101561003357600080fd5b50805160209091015180806001600160a01b038116610099576040805162461bcd60e51b815260206004820152601e60248201527f6e65772073746f726167652073686f756c646e277420626520656d7074790000604482015290519081900360640190fd5b600080546001600160a01b039283166001600160a01b031991821617825560028054969093169516949094179055505073f49440c1f012d041802b25a73e5b0b9166a75c029052600160208190527f4e839232f394e73c219b1b2f26570a9c376f7e05c15bbf2a2c756bd9dd2e0f51805460ff19169091179055610bf5806101226000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c8063975057e711610071578063975057e7146101835780639b19251a1461018b578063ac8f539b146101c5578063cfc755b1146101f1578063f2b12c60146101f9578063f77c479114610216576100b4565b80630219108a146100b957806353d6fd59146100e95780635aa6e67514610117578063614619541461013b57806373b6abd5146101435780639137c1a71461015d575b600080fd5b6100e7600480360360408110156100cf57600080fd5b506001600160a01b038135811691602001351661021e565b005b6100e7600480360360408110156100ff57600080fd5b506001600160a01b038135169060200135151561034b565b61011f610464565b604080516001600160a01b039092168252519081900360200190f35b6100e76104e4565b61014b6105b7565b60408051918252519081900360200190f35b6100e76004803603602081101561017357600080fd5b50356001600160a01b03166105bd565b61011f6106f3565b6101b1600480360360208110156101a157600080fd5b50356001600160a01b0316610702565b604080519115158252519081900360200190f35b6100e7600480360360408110156101db57600080fd5b506001600160a01b038135169060200135610717565b61011f61082f565b6100e76004803603602081101561020f57600080fd5b503561083e565b61011f6108fc565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561026957600080fd5b505afa15801561027d573d6000803e3d6000fd5b505050506040513d602081101561029357600080fd5b50516102d7576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b816001600160a01b0316639137c1a7826040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b03168152602001915050600060405180830381600087803b15801561032f57600080fd5b505af1158015610343573d6000803e3d6000fd5b505050505050565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561039657600080fd5b505afa1580156103aa573d6000803e3d6000fd5b505050506040513d60208110156103c057600080fd5b5051610404576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b038216600081815260016020908152604091829020805460ff1916851515908117909155825190815291517f0aa5ec5ffdc7f6f9c4d0dded489d7450297155cb2f71cb771e02427f7dff4f519281900390910190a25050565b60008060009054906101000a90046001600160a01b03166001600160a01b0316635aa6e6756040518163ffffffff1660e01b815260040160206040518083038186803b1580156104b357600080fd5b505afa1580156104c7573d6000803e3d6000fd5b505050506040513d60208110156104dd57600080fd5b5051905090565b3360009081526001602052604090205460ff1661053b576040805162461bcd60e51b815260206004820152601060248201526f13db9b1e481dda1a5d195b1a5cdd195960821b604482015290519081900360640190fd5b600254600380546001818101909255604080516365153c4b60e01b81526004810192909252602482019290925290516001600160a01b03909216916365153c4b9160448082019260009290919082900301818387803b15801561059d57600080fd5b505af11580156105b1573d6000803e3d6000fd5b50505050565b60035481565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561060857600080fd5b505afa15801561061c573d6000803e3d6000fd5b505050506040513d602081101561063257600080fd5b5051610676576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b0381166106d1576040805162461bcd60e51b815260206004820152601e60248201527f6e65772073746f726167652073686f756c646e277420626520656d7074790000604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031681565b60016020526000908152604090205460ff1681565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561076257600080fd5b505afa158015610776573d6000803e3d6000fd5b505050506040513d602081101561078c57600080fd5b50516107d0576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b03821661081157604051339082156108fc029083906000818181858888f1935050505015801561080b573d6000803e3d6000fd5b5061082b565b61082b6001600160a01b038316338363ffffffff61094b16565b5050565b6002546001600160a01b031681565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561088957600080fd5b505afa15801561089d573d6000803e3d6000fd5b505050506040513d60208110156108b357600080fd5b50516108f7576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b600355565b60008060009054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b1580156104b357600080fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261099d9084906109a2565b505050565b6109b4826001600160a01b0316610b5a565b610a05576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310610a435780518252601f199092019160209182019101610a24565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610aa5576040519150601f19603f3d011682016040523d82523d6000602084013e610aaa565b606091505b509150915081610b01576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156105b157808060200190516020811015610b1d57600080fd5b50516105b15760405162461bcd60e51b815260040180806020018281038252602a815260200180610b97602a913960400191505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590610b8e57508115155b94935050505056fe5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a265627a7a723158208ab47316ee927026fa0d9892d3cbe4167d8ab428de4a00b346764c4ae92f936864736f6c63430005100032000000000000000000000000973d0408dee278203c8613178c1732fd60182916000000000000000000000000c95cbe4ca30055c787cb784be99d6a8494d0d197
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100b45760003560e01c8063975057e711610071578063975057e7146101835780639b19251a1461018b578063ac8f539b146101c5578063cfc755b1146101f1578063f2b12c60146101f9578063f77c479114610216576100b4565b80630219108a146100b957806353d6fd59146100e95780635aa6e67514610117578063614619541461013b57806373b6abd5146101435780639137c1a71461015d575b600080fd5b6100e7600480360360408110156100cf57600080fd5b506001600160a01b038135811691602001351661021e565b005b6100e7600480360360408110156100ff57600080fd5b506001600160a01b038135169060200135151561034b565b61011f610464565b604080516001600160a01b039092168252519081900360200190f35b6100e76104e4565b61014b6105b7565b60408051918252519081900360200190f35b6100e76004803603602081101561017357600080fd5b50356001600160a01b03166105bd565b61011f6106f3565b6101b1600480360360208110156101a157600080fd5b50356001600160a01b0316610702565b604080519115158252519081900360200190f35b6100e7600480360360408110156101db57600080fd5b506001600160a01b038135169060200135610717565b61011f61082f565b6100e76004803603602081101561020f57600080fd5b503561083e565b61011f6108fc565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561026957600080fd5b505afa15801561027d573d6000803e3d6000fd5b505050506040513d602081101561029357600080fd5b50516102d7576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b816001600160a01b0316639137c1a7826040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b03168152602001915050600060405180830381600087803b15801561032f57600080fd5b505af1158015610343573d6000803e3d6000fd5b505050505050565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561039657600080fd5b505afa1580156103aa573d6000803e3d6000fd5b505050506040513d60208110156103c057600080fd5b5051610404576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b038216600081815260016020908152604091829020805460ff1916851515908117909155825190815291517f0aa5ec5ffdc7f6f9c4d0dded489d7450297155cb2f71cb771e02427f7dff4f519281900390910190a25050565b60008060009054906101000a90046001600160a01b03166001600160a01b0316635aa6e6756040518163ffffffff1660e01b815260040160206040518083038186803b1580156104b357600080fd5b505afa1580156104c7573d6000803e3d6000fd5b505050506040513d60208110156104dd57600080fd5b5051905090565b3360009081526001602052604090205460ff1661053b576040805162461bcd60e51b815260206004820152601060248201526f13db9b1e481dda1a5d195b1a5cdd195960821b604482015290519081900360640190fd5b600254600380546001818101909255604080516365153c4b60e01b81526004810192909252602482019290925290516001600160a01b03909216916365153c4b9160448082019260009290919082900301818387803b15801561059d57600080fd5b505af11580156105b1573d6000803e3d6000fd5b50505050565b60035481565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561060857600080fd5b505afa15801561061c573d6000803e3d6000fd5b505050506040513d602081101561063257600080fd5b5051610676576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b0381166106d1576040805162461bcd60e51b815260206004820152601e60248201527f6e65772073746f726167652073686f756c646e277420626520656d7074790000604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031681565b60016020526000908152604090205460ff1681565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561076257600080fd5b505afa158015610776573d6000803e3d6000fd5b505050506040513d602081101561078c57600080fd5b50516107d0576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b03821661081157604051339082156108fc029083906000818181858888f1935050505015801561080b573d6000803e3d6000fd5b5061082b565b61082b6001600160a01b038316338363ffffffff61094b16565b5050565b6002546001600160a01b031681565b600054604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561088957600080fd5b505afa15801561089d573d6000803e3d6000fd5b505050506040513d60208110156108b357600080fd5b50516108f7576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b600355565b60008060009054906101000a90046001600160a01b03166001600160a01b031663f77c47916040518163ffffffff1660e01b815260040160206040518083038186803b1580156104b357600080fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261099d9084906109a2565b505050565b6109b4826001600160a01b0316610b5a565b610a05576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310610a435780518252601f199092019160209182019101610a24565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610aa5576040519150601f19603f3d011682016040523d82523d6000602084013e610aaa565b606091505b509150915081610b01576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156105b157808060200190516020811015610b1d57600080fd5b50516105b15760405162461bcd60e51b815260040180806020018281038252602a815260200180610b97602a913960400191505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590610b8e57508115155b94935050505056fe5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a265627a7a723158208ab47316ee927026fa0d9892d3cbe4167d8ab428de4a00b346764c4ae92f936864736f6c63430005100032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000973d0408dee278203c8613178c1732fd60182916000000000000000000000000c95cbe4ca30055c787cb784be99d6a8494d0d197
-----Decoded View---------------
Arg [0] : _minterHelper (address): 0x973d0408deE278203c8613178c1732fd60182916
Arg [1] : _storage (address): 0xc95CbE4ca30055c787CB784BE99D6a8494d0d197
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000973d0408dee278203c8613178c1732fd60182916
Arg [1] : 000000000000000000000000c95cbe4ca30055c787cb784be99d6a8494d0d197
Deployed Bytecode Sourcemap
17756:1427:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17756:1427:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18348:142;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18348:142:0;;;;;;;;;;:::i;:::-;;18496;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18496:142:0;;;;;;;;;;:::i;16886:90::-;;;:::i;:::-;;;;-1:-1:-1;;;;;16886:90:0;;;;;;;;;;;;;;18751:115;;;:::i;17913:28::-;;;:::i;:::-;;;;;;;;;;;;;;;;16716:164;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16716:164:0;-1:-1:-1;;;;;16716:164:0;;:::i;16432:20::-;;;:::i;17834:42::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17834:42:0;-1:-1:-1;;;;;17834:42:0;;:::i;:::-;;;;;;;;;;;;;;;;;;18953:227;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18953:227:0;;;;;;;;:::i;17881:27::-;;;:::i;18644:101::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18644:101:0;;:::i;17492:90::-;;;:::i;18348:142::-;16647:5;;:30;;;-1:-1:-1;;;16647:30:0;;16666:10;16647:30;;;;;;-1:-1:-1;;;;;16647:5:0;;;;:18;;:30;;;;;;;;;;;;;;;:5;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;16647:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16647:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16647:30:0;16639:57;;;;;-1:-1:-1;;;16639:57:0;;;;;;;;;;;;-1:-1:-1;;;16639:57:0;;;;;;;;;;;;;;;18454:6;-1:-1:-1;;;;;18443:29:0;;18473:10;18443:41;;;;;;;;;;;;;-1:-1:-1;;;;;18443:41:0;-1:-1:-1;;;;;18443:41:0;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18443:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;18443:41:0;;;;18348:142;;:::o;18496:::-;16647:5;;:30;;;-1:-1:-1;;;16647:30:0;;16666:10;16647:30;;;;;;-1:-1:-1;;;;;16647:5:0;;;;:18;;:30;;;;;;;;;;;;;;;:5;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;16647:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16647:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16647:30:0;16639:57;;;;;-1:-1:-1;;;16639:57:0;;;;;;;;;;;;-1:-1:-1;;;16639:57:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;18574:14:0;;;;;;:9;:14;;;;;;;;;:22;;-1:-1:-1;;18574:22:0;;;;;;;;;;18608:24;;;;;;;;;;;;;;;;;18496:142;;:::o;16886:90::-;16929:7;16952:5;;;;;;;;;-1:-1:-1;;;;;16952:5:0;-1:-1:-1;;;;;16952:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16952:18:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16952:18:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16952:18:0;;-1:-1:-1;16886:90:0;:::o;18751:115::-;18060:10;18050:21;;;;:9;:21;;;;;;;;18042:50;;;;;-1:-1:-1;;;18042:50:0;;;;;;;;;;;;-1:-1:-1;;;18042:50:0;;;;;;;;;;;;;;;18816:12;;18838:13;:15;;18816:12;18838:15;;;;;;18802:58;;;-1:-1:-1;;;18802:58:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18816:12:0;;;;18802:35;;:58;;;;;18816:12;;18802:58;;;;;;;;18816:12;;18802:58;;;5:2:-1;;;;30:1;27;20:12;5:2;18802:58:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;18802:58:0;;;;18751:115::o;17913:28::-;;;;:::o;16716:164::-;16647:5;;:30;;;-1:-1:-1;;;16647:30:0;;16666:10;16647:30;;;;;;-1:-1:-1;;;;;16647:5:0;;;;:18;;:30;;;;;;;;;;;;;;;:5;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;16647:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16647:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16647:30:0;16639:57;;;;;-1:-1:-1;;;16639:57:0;;;;;;;;;;;;-1:-1:-1;;;16639:57:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16789:20:0;;16781:63;;;;;-1:-1:-1;;;16781:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16851:5;:23;;-1:-1:-1;;;;;;16851:23:0;-1:-1:-1;;;;;16851:23:0;;;;;;;;;;16716:164::o;16432:20::-;;;-1:-1:-1;;;;;16432:20:0;;:::o;17834:42::-;;;;;;;;;;;;;;;:::o;18953:227::-;16647:5;;:30;;;-1:-1:-1;;;16647:30:0;;16666:10;16647:30;;;;;;-1:-1:-1;;;;;16647:5:0;;;;:18;;:30;;;;;;;;;;;;;;;:5;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;16647:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16647:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16647:30:0;16639:57;;;;;-1:-1:-1;;;16639:57:0;;;;;;;;;;;;-1:-1:-1;;;16639:57:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;19041:19:0;;19037:138;;19071:27;;:10;;:27;;;;;19091:6;;19071:27;;;;19091:6;19071:10;:27;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;19071:27:0;19037:138;;;19121:46;-1:-1:-1;;;;;19121:26:0;;19148:10;19160:6;19121:46;:26;:46;:::i;:::-;18953:227;;:::o;17881:27::-;;;-1:-1:-1;;;;;17881:27:0;;:::o;18644:101::-;16647:5;;:30;;;-1:-1:-1;;;16647:30:0;;16666:10;16647:30;;;;;;-1:-1:-1;;;;;16647:5:0;;;;:18;;:30;;;;;;;;;;;;;;;:5;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;16647:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16647:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16647:30:0;16639:57;;;;;-1:-1:-1;;;16639:57:0;;;;;;;;;;;;-1:-1:-1;;;16639:57:0;;;;;;;;;;;;;;;18718:13;:21;18644:101::o;17492:90::-;17535:7;17558:5;;;;;;;;;-1:-1:-1;;;;;17558:5:0;-1:-1:-1;;;;;17558:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;12216:176:0;12325:58;;;-1:-1:-1;;;;;12325:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;12325:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;12299:85:0;;12318:5;;12299:18;:85::i;:::-;12216:176;;;:::o;14255:1114::-;14859:27;14867:5;-1:-1:-1;;;;;14859:25:0;;:27::i;:::-;14851:71;;;;;-1:-1:-1;;;14851:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14996:12;15010:23;15045:5;-1:-1:-1;;;;;15037:19:0;15057:4;15037: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;;;15037: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;;14995:67:0;;;;15081:7;15073:52;;;;;-1:-1:-1;;;15073:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15142:17;;:21;15138:224;;15284:10;15273:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15273:30:0;15265:85;;;;-1:-1:-1;;;15265:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9239:619;9299:4;9767:20;;9610:66;9807:23;;;;;;:42;;-1:-1:-1;9834:15:0;;;9807:42;9799:51;9239:619;-1:-1:-1;;;;9239:619:0:o
Swarm Source
bzzr://8ab47316ee927026fa0d9892d3cbe4167d8ab428de4a00b346764c4ae92f9368
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.