Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 199 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw Amount | 15662909 | 885 days ago | IN | 0 ETH | 0.00017211 | ||||
Mint | 15523199 | 905 days ago | IN | 0.08 ETH | 0.00374661 | ||||
Mint | 15483372 | 912 days ago | IN | 0.08 ETH | 0.0011078 | ||||
Mint | 15386462 | 927 days ago | IN | 0.4 ETH | 0.00206496 | ||||
Mint | 15374768 | 929 days ago | IN | 0.08 ETH | 0.00096278 | ||||
Mint | 15368790 | 930 days ago | IN | 0.16 ETH | 0.00153002 | ||||
Mint | 15336488 | 935 days ago | IN | 0.08 ETH | 0.00170701 | ||||
Withdraw Amount | 15325643 | 937 days ago | IN | 0 ETH | 0.00031658 | ||||
Mint | 15312316 | 939 days ago | IN | 0.08 ETH | 0.00107731 | ||||
Mint | 15311998 | 939 days ago | IN | 0.08 ETH | 0.00188258 | ||||
Mint | 15305428 | 940 days ago | IN | 0.08 ETH | 0.00129797 | ||||
Mint | 15304242 | 940 days ago | IN | 0.08 ETH | 0.0016794 | ||||
Mint | 15295387 | 941 days ago | IN | 0.08 ETH | 0.00134954 | ||||
Mint | 15293180 | 942 days ago | IN | 0.08 ETH | 0.00057856 | ||||
Mint | 15284304 | 943 days ago | IN | 0.08 ETH | 0.00164478 | ||||
Mint | 15278931 | 944 days ago | IN | 0.08 ETH | 0.00071251 | ||||
Mint | 15262879 | 947 days ago | IN | 0.08 ETH | 0.00055887 | ||||
Mint | 15261733 | 947 days ago | IN | 0.16 ETH | 0.00119418 | ||||
Mint | 15261733 | 947 days ago | IN | 0.16 ETH | 0.00116887 | ||||
Mint | 15258102 | 947 days ago | IN | 0.16 ETH | 0.00234281 | ||||
Mint | 15248769 | 949 days ago | IN | 0.08 ETH | 0.00064338 | ||||
Mint | 15248763 | 949 days ago | IN | 0.24 ETH | 0.0009531 | ||||
Mint | 15242276 | 950 days ago | IN | 0.08 ETH | 0.00044788 | ||||
Mint | 15240697 | 950 days ago | IN | 0.64 ETH | 0.00273131 | ||||
Mint | 15239950 | 950 days ago | IN | 0.16 ETH | 0.00190763 |
Latest 15 internal transactions
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 15662909 | 885 days ago | 0.9 ETH | ||||
Transfer | 15325643 | 937 days ago | 7.7 ETH | ||||
Transfer | 15135701 | 966 days ago | 1 ETH | ||||
Transfer | 15075812 | 976 days ago | 3.2 ETH | ||||
Transfer | 15025479 | 984 days ago | 2.24 ETH | ||||
- | 14834289 | 1017 days ago | 4.57 ETH | ||||
- | 14760636 | 1029 days ago | 3.48 ETH | ||||
- | 14690245 | 1040 days ago | 0.25 ETH | ||||
- | 14690245 | 1040 days ago | 2 ETH | ||||
- | 14640922 | 1048 days ago | 1.5 ETH | ||||
- | 14591451 | 1055 days ago | 0.5 ETH | ||||
- | 14576433 | 1058 days ago | 0.1 ETH | ||||
- | 14524492 | 1066 days ago | 2.8 ETH | ||||
- | 14424657 | 1081 days ago | 2 ETH | ||||
- | 14352977 | 1092 days ago | 0.08 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
SaleContract
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; interface IWorldOfFreight { function mintItems(address to, uint256 amount) external; } contract SaleContract is Ownable { using SafeMath for uint256; uint256 public constant MAX_MINT = 500; uint256 public constant MINT_PRICE = 80000000000000000; //WEI // 0.08 ETH IWorldOfFreight public nftContract; constructor(address _nftAddress) { nftContract = IWorldOfFreight(_nftAddress); } function mint(uint256 _amount) public payable { require(msg.value >= _amount * MINT_PRICE, "Not enough funds"); require(_amount <= MAX_MINT, "Sorry max 500 per transaction"); nftContract.mintItems(msg.sender, _amount); } function withdrawAmount(address payable to, uint256 amount) public onlyOwner { to.transfer(amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * 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. */ abstract 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the 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 virtual onlyOwner { _setOwner(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 virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @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 a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.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 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. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_nftAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"nftContract","outputs":[{"internalType":"contract IWorldOfFreight","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawAmount","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50604051610d60380380610d60833981810160405281019061003291906101c4565b61004e61004361009560201b60201c565b61009d60201b60201c565b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506101f1565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061019182610166565b9050919050565b6101a181610186565b81146101ac57600080fd5b50565b6000815190506101be81610198565b92915050565b6000602082840312156101da576101d9610161565b5b60006101e8848285016101af565b91505092915050565b610b60806102006000396000f3fe60806040526004361061007b5760003560e01c8063c002d23d1161004e578063c002d23d14610107578063d56d229d14610132578063f0292a031461015d578063f2fde38b146101885761007b565b8063715018a614610080578063736fe565146100975780638da5cb5b146100c0578063a0712d68146100eb575b600080fd5b34801561008c57600080fd5b506100956101b1565b005b3480156100a357600080fd5b506100be60048036038101906100b991906106eb565b610239565b005b3480156100cc57600080fd5b506100d5610300565b6040516100e2919061074c565b60405180910390f35b61010560048036038101906101009190610767565b610329565b005b34801561011357600080fd5b5061011c610456565b60405161012991906107a3565b60405180910390f35b34801561013e57600080fd5b50610147610462565b604051610154919061081d565b60405180910390f35b34801561016957600080fd5b50610172610488565b60405161017f91906107a3565b60405180910390f35b34801561019457600080fd5b506101af60048036038101906101aa9190610864565b61048e565b005b6101b9610586565b73ffffffffffffffffffffffffffffffffffffffff166101d7610300565b73ffffffffffffffffffffffffffffffffffffffff161461022d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610224906108ee565b60405180910390fd5b610237600061058e565b565b610241610586565b73ffffffffffffffffffffffffffffffffffffffff1661025f610300565b73ffffffffffffffffffffffffffffffffffffffff16146102b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102ac906108ee565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156102fb573d6000803e3d6000fd5b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b67011c37937e0800008161033d919061093d565b34101561037f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610376906109e3565b60405180910390fd5b6101f48111156103c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103bb90610a4f565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663540f0a8433836040518363ffffffff1660e01b8152600401610421929190610a6f565b600060405180830381600087803b15801561043b57600080fd5b505af115801561044f573d6000803e3d6000fd5b5050505050565b67011c37937e08000081565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6101f481565b610496610586565b73ffffffffffffffffffffffffffffffffffffffff166104b4610300565b73ffffffffffffffffffffffffffffffffffffffff161461050a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610501906108ee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561057a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057190610b0a565b60405180910390fd5b6105838161058e565b50565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061068282610657565b9050919050565b61069281610677565b811461069d57600080fd5b50565b6000813590506106af81610689565b92915050565b6000819050919050565b6106c8816106b5565b81146106d357600080fd5b50565b6000813590506106e5816106bf565b92915050565b6000806040838503121561070257610701610652565b5b6000610710858286016106a0565b9250506020610721858286016106d6565b9150509250929050565b600061073682610657565b9050919050565b6107468161072b565b82525050565b6000602082019050610761600083018461073d565b92915050565b60006020828403121561077d5761077c610652565b5b600061078b848285016106d6565b91505092915050565b61079d816106b5565b82525050565b60006020820190506107b86000830184610794565b92915050565b6000819050919050565b60006107e36107de6107d984610657565b6107be565b610657565b9050919050565b60006107f5826107c8565b9050919050565b6000610807826107ea565b9050919050565b610817816107fc565b82525050565b6000602082019050610832600083018461080e565b92915050565b6108418161072b565b811461084c57600080fd5b50565b60008135905061085e81610838565b92915050565b60006020828403121561087a57610879610652565b5b60006108888482850161084f565b91505092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006108d8602083610891565b91506108e3826108a2565b602082019050919050565b60006020820190508181036000830152610907816108cb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610948826106b5565b9150610953836106b5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561098c5761098b61090e565b5b828202905092915050565b7f4e6f7420656e6f7567682066756e647300000000000000000000000000000000600082015250565b60006109cd601083610891565b91506109d882610997565b602082019050919050565b600060208201905081810360008301526109fc816109c0565b9050919050565b7f536f727279206d61782035303020706572207472616e73616374696f6e000000600082015250565b6000610a39601d83610891565b9150610a4482610a03565b602082019050919050565b60006020820190508181036000830152610a6881610a2c565b9050919050565b6000604082019050610a84600083018561073d565b610a916020830184610794565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000610af4602683610891565b9150610aff82610a98565b604082019050919050565b60006020820190508181036000830152610b2381610ae7565b905091905056fea2646970667358221220d134b1aea8396f87e89b87706001dae5ce88206f6160a537596da9a73fa7ded564736f6c634300080900330000000000000000000000001a7e29a8c5d2320a1b56735b7654139e7b2860af
Deployed Bytecode
0x60806040526004361061007b5760003560e01c8063c002d23d1161004e578063c002d23d14610107578063d56d229d14610132578063f0292a031461015d578063f2fde38b146101885761007b565b8063715018a614610080578063736fe565146100975780638da5cb5b146100c0578063a0712d68146100eb575b600080fd5b34801561008c57600080fd5b506100956101b1565b005b3480156100a357600080fd5b506100be60048036038101906100b991906106eb565b610239565b005b3480156100cc57600080fd5b506100d5610300565b6040516100e2919061074c565b60405180910390f35b61010560048036038101906101009190610767565b610329565b005b34801561011357600080fd5b5061011c610456565b60405161012991906107a3565b60405180910390f35b34801561013e57600080fd5b50610147610462565b604051610154919061081d565b60405180910390f35b34801561016957600080fd5b50610172610488565b60405161017f91906107a3565b60405180910390f35b34801561019457600080fd5b506101af60048036038101906101aa9190610864565b61048e565b005b6101b9610586565b73ffffffffffffffffffffffffffffffffffffffff166101d7610300565b73ffffffffffffffffffffffffffffffffffffffff161461022d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610224906108ee565b60405180910390fd5b610237600061058e565b565b610241610586565b73ffffffffffffffffffffffffffffffffffffffff1661025f610300565b73ffffffffffffffffffffffffffffffffffffffff16146102b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102ac906108ee565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156102fb573d6000803e3d6000fd5b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b67011c37937e0800008161033d919061093d565b34101561037f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610376906109e3565b60405180910390fd5b6101f48111156103c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103bb90610a4f565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663540f0a8433836040518363ffffffff1660e01b8152600401610421929190610a6f565b600060405180830381600087803b15801561043b57600080fd5b505af115801561044f573d6000803e3d6000fd5b5050505050565b67011c37937e08000081565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6101f481565b610496610586565b73ffffffffffffffffffffffffffffffffffffffff166104b4610300565b73ffffffffffffffffffffffffffffffffffffffff161461050a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610501906108ee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561057a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057190610b0a565b60405180910390fd5b6105838161058e565b50565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061068282610657565b9050919050565b61069281610677565b811461069d57600080fd5b50565b6000813590506106af81610689565b92915050565b6000819050919050565b6106c8816106b5565b81146106d357600080fd5b50565b6000813590506106e5816106bf565b92915050565b6000806040838503121561070257610701610652565b5b6000610710858286016106a0565b9250506020610721858286016106d6565b9150509250929050565b600061073682610657565b9050919050565b6107468161072b565b82525050565b6000602082019050610761600083018461073d565b92915050565b60006020828403121561077d5761077c610652565b5b600061078b848285016106d6565b91505092915050565b61079d816106b5565b82525050565b60006020820190506107b86000830184610794565b92915050565b6000819050919050565b60006107e36107de6107d984610657565b6107be565b610657565b9050919050565b60006107f5826107c8565b9050919050565b6000610807826107ea565b9050919050565b610817816107fc565b82525050565b6000602082019050610832600083018461080e565b92915050565b6108418161072b565b811461084c57600080fd5b50565b60008135905061085e81610838565b92915050565b60006020828403121561087a57610879610652565b5b60006108888482850161084f565b91505092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006108d8602083610891565b91506108e3826108a2565b602082019050919050565b60006020820190508181036000830152610907816108cb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610948826106b5565b9150610953836106b5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561098c5761098b61090e565b5b828202905092915050565b7f4e6f7420656e6f7567682066756e647300000000000000000000000000000000600082015250565b60006109cd601083610891565b91506109d882610997565b602082019050919050565b600060208201905081810360008301526109fc816109c0565b9050919050565b7f536f727279206d61782035303020706572207472616e73616374696f6e000000600082015250565b6000610a39601d83610891565b9150610a4482610a03565b602082019050919050565b60006020820190508181036000830152610a6881610a2c565b9050919050565b6000604082019050610a84600083018561073d565b610a916020830184610794565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000610af4602683610891565b9150610aff82610a98565b604082019050919050565b60006020820190508181036000830152610b2381610ae7565b905091905056fea2646970667358221220d134b1aea8396f87e89b87706001dae5ce88206f6160a537596da9a73fa7ded564736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001a7e29a8c5d2320a1b56735b7654139e7b2860af
-----Decoded View---------------
Arg [0] : _nftAddress (address): 0x1a7E29a8c5d2320a1b56735B7654139E7B2860aF
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000001a7e29a8c5d2320a1b56735b7654139e7b2860af
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.