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 294 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Nswap Public Min... | 16045578 | 772 days ago | IN | 0.01 ETH | 0.00088582 | ||||
Nswap Public Min... | 16045577 | 772 days ago | IN | 0.01 ETH | 0.00092969 | ||||
Nswap Public Min... | 16045577 | 772 days ago | IN | 0.01 ETH | 0.00092969 | ||||
Nswap Public Min... | 16045576 | 772 days ago | IN | 0.01 ETH | 0.00093905 | ||||
Nswap Public Min... | 16045575 | 772 days ago | IN | 0.01 ETH | 0.00098444 | ||||
Nswap Public Min... | 16045574 | 772 days ago | IN | 0.01 ETH | 0.00102508 | ||||
Nswap Public Min... | 16045573 | 772 days ago | IN | 0.01 ETH | 0.00103519 | ||||
Nswap Public Min... | 16045573 | 772 days ago | IN | 0.02 ETH | 0.00103519 | ||||
Nswap Public Min... | 16045570 | 772 days ago | IN | 0.01 ETH | 0.00118649 | ||||
Nswap Public Min... | 16045569 | 772 days ago | IN | 0.02 ETH | 0.00103345 | ||||
Nswap Public Min... | 16045569 | 772 days ago | IN | 0.02 ETH | 0.00103345 | ||||
Nswap Public Min... | 16045455 | 772 days ago | IN | 0.02 ETH | 0.00037312 | ||||
Nswap Public Min... | 16045428 | 772 days ago | IN | 0.02 ETH | 0.00090689 | ||||
Nswap Public Min... | 16045428 | 772 days ago | IN | 0.01 ETH | 0.00090689 | ||||
Nswap Public Min... | 16045425 | 772 days ago | IN | 0.02 ETH | 0.00087392 | ||||
Nswap Public Min... | 16045425 | 772 days ago | IN | 0.02 ETH | 0.00087392 | ||||
Nswap Public Min... | 16045425 | 772 days ago | IN | 0.02 ETH | 0.00091242 | ||||
Nswap Public Min... | 16045424 | 772 days ago | IN | 0.02 ETH | 0.00090085 | ||||
Nswap Public Min... | 16045422 | 772 days ago | IN | 0.02 ETH | 0.00087395 | ||||
Nswap Public Min... | 16045418 | 772 days ago | IN | 0.01 ETH | 0.00095886 | ||||
Nswap Public Min... | 16045415 | 772 days ago | IN | 0.01 ETH | 0.00091172 | ||||
Nswap Public Min... | 16045414 | 772 days ago | IN | 0.01 ETH | 0.00090081 | ||||
Nswap Public Min... | 16045414 | 772 days ago | IN | 0.02 ETH | 0.00090081 | ||||
Nswap Public Min... | 16045414 | 772 days ago | IN | 0.02 ETH | 0.00090081 | ||||
Nswap Public Min... | 16045412 | 772 days ago | IN | 0.01 ETH | 0.00096144 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
nSwapMint
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-25 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * 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() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: uswap.sol pragma solidity ^0.8.0; interface IBOX { function mint(address account_) external returns (uint256); } contract nSwapMint is Ownable { IBOX public nft; uint totalAmount = 300; uint publicTotalMinted; uint perTotalMinted; uint price = 1e16; uint UserMax = 2; mapping(address => uint) public publicCanMint; uint startTime; constructor(address nft_) { nft = IBOX(nft_); startTime = 1669359600; } modifier onlyEOA{ require(msg.sender == tx.origin, "not eoa"); _; } function nswapPublicMint(uint count) external payable onlyEOA { require(msg.value == price * count, "not enough eth"); require(publicTotalMinted + count <= totalAmount, "exceed total amount"); require(publicCanMint[msg.sender] + count <= UserMax, 'out mint amount'); require(block.timestamp >= startTime,'not start'); publicCanMint[msg.sender] += count; for (uint i = 0; i < count; i++) { nft.mint(msg.sender); } publicTotalMinted += count; } receive() external payable {} function divest(address token_, address payee_, uint value_) external onlyOwner { if (token_ == address(0)) { payable(payee_).transfer(value_); } else { IERC20(token_).transfer(payee_, value_); } } function setTime(uint times)external onlyOwner{ startTime=times; } function nswapTotalMinted() public view returns (uint, uint){ return (publicTotalMinted, perTotalMinted); } function nswapUserCanMintNum(address addr) public view returns(uint,uint){ return (UserMax - publicCanMint[addr],0); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"nft_","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":[{"internalType":"address","name":"token_","type":"address"},{"internalType":"address","name":"payee_","type":"address"},{"internalType":"uint256","name":"value_","type":"uint256"}],"name":"divest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"nft","outputs":[{"internalType":"contract IBOX","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"nswapPublicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"nswapTotalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"nswapUserCanMintNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicCanMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"times","type":"uint256"}],"name":"setTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405261012c600255662386f26fc1000060055560026006553480156200002757600080fd5b506040516200133a3803806200133a83398181016040528101906200004d9190620001a3565b6200006d62000061620000c060201b60201c565b620000c860201b60201c565b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555063638067f06008819055505062000228565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000815190506200019d816200020e565b92915050565b600060208284031215620001bc57620001bb62000209565b5b6000620001cc848285016200018c565b91505092915050565b6000620001e282620001e9565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600080fd5b6200021981620001d5565b81146200022557600080fd5b50565b61110280620002386000396000f3fe6080604052600436106100955760003560e01c806347ccca021161005957806347ccca021461019a578063715018a6146101c55780638da5cb5b146101dc578063ca87b6ab14610207578063f2fde38b146102235761009c565b806302be16eb146100a157806310696b97146100cd5780633beb26c41461010b578063414bc2961461013457806342b7c0411461015d5761009c565b3661009c57005b600080fd5b3480156100ad57600080fd5b506100b661024c565b6040516100c4929190610d29565b60405180910390f35b3480156100d957600080fd5b506100f460048036038101906100ef91906109a6565b61025d565b604051610102929190610d29565b60405180910390f35b34801561011757600080fd5b50610132600480360381019061012d9190610a53565b6102b8565b005b34801561014057600080fd5b5061015b600480360381019061015691906109d3565b6102ca565b005b34801561016957600080fd5b50610184600480360381019061017f91906109a6565b6103e7565b6040516101919190610d0e565b60405180910390f35b3480156101a657600080fd5b506101af6103ff565b6040516101bc9190610c13565b60405180910390f35b3480156101d157600080fd5b506101da610425565b005b3480156101e857600080fd5b506101f1610439565b6040516101fe9190610bcf565b60405180910390f35b610221600480360381019061021c9190610a53565b610462565b005b34801561022f57600080fd5b5061024a600480360381019061024591906109a6565b610784565b005b600080600354600454915091509091565b600080600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546006546102ad9190610e13565b600091509150915091565b6102c0610808565b8060088190555050565b6102d2610808565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610353578173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561034d573d6000803e3d6000fd5b506103e2565b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b815260040161038e929190610bea565b602060405180830381600087803b1580156103a857600080fd5b505af11580156103bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103e09190610a26565b505b505050565b60076020528060005260406000206000915090505481565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61042d610808565b6104376000610886565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c790610cae565b60405180910390fd5b806005546104de9190610db9565b341461051f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051690610cce565b60405180910390fd5b600254816003546105309190610d63565b1115610571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056890610cee565b60405180910390fd5b60065481600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105bf9190610d63565b1115610600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f790610c8e565b60405180910390fd5b600854421015610645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063c90610c2e565b60405180910390fd5b80600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546106949190610d63565b9250508190555060005b8181101561076757600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636a627842336040518263ffffffff1660e01b81526004016107019190610bcf565b602060405180830381600087803b15801561071b57600080fd5b505af115801561072f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107539190610a80565b50808061075f90610ec5565b91505061069e565b50806003600082825461077a9190610d63565b9250508190555050565b61078c610808565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f390610c4e565b60405180910390fd5b61080581610886565b50565b61081061094a565b73ffffffffffffffffffffffffffffffffffffffff1661082e610439565b73ffffffffffffffffffffffffffffffffffffffff1614610884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087b90610c6e565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b60008135905061096181611087565b92915050565b6000815190506109768161109e565b92915050565b60008135905061098b816110b5565b92915050565b6000815190506109a0816110b5565b92915050565b6000602082840312156109bc576109bb610f3d565b5b60006109ca84828501610952565b91505092915050565b6000806000606084860312156109ec576109eb610f3d565b5b60006109fa86828701610952565b9350506020610a0b86828701610952565b9250506040610a1c8682870161097c565b9150509250925092565b600060208284031215610a3c57610a3b610f3d565b5b6000610a4a84828501610967565b91505092915050565b600060208284031215610a6957610a68610f3d565b5b6000610a778482850161097c565b91505092915050565b600060208284031215610a9657610a95610f3d565b5b6000610aa484828501610991565b91505092915050565b610ab681610e47565b82525050565b610ac581610e8f565b82525050565b6000610ad8600983610d52565b9150610ae382610f42565b602082019050919050565b6000610afb602683610d52565b9150610b0682610f6b565b604082019050919050565b6000610b1e602083610d52565b9150610b2982610fba565b602082019050919050565b6000610b41600f83610d52565b9150610b4c82610fe3565b602082019050919050565b6000610b64600783610d52565b9150610b6f8261100c565b602082019050919050565b6000610b87600e83610d52565b9150610b9282611035565b602082019050919050565b6000610baa601383610d52565b9150610bb58261105e565b602082019050919050565b610bc981610e85565b82525050565b6000602082019050610be46000830184610aad565b92915050565b6000604082019050610bff6000830185610aad565b610c0c6020830184610bc0565b9392505050565b6000602082019050610c286000830184610abc565b92915050565b60006020820190508181036000830152610c4781610acb565b9050919050565b60006020820190508181036000830152610c6781610aee565b9050919050565b60006020820190508181036000830152610c8781610b11565b9050919050565b60006020820190508181036000830152610ca781610b34565b9050919050565b60006020820190508181036000830152610cc781610b57565b9050919050565b60006020820190508181036000830152610ce781610b7a565b9050919050565b60006020820190508181036000830152610d0781610b9d565b9050919050565b6000602082019050610d236000830184610bc0565b92915050565b6000604082019050610d3e6000830185610bc0565b610d4b6020830184610bc0565b9392505050565b600082825260208201905092915050565b6000610d6e82610e85565b9150610d7983610e85565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610dae57610dad610f0e565b5b828201905092915050565b6000610dc482610e85565b9150610dcf83610e85565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615610e0857610e07610f0e565b5b828202905092915050565b6000610e1e82610e85565b9150610e2983610e85565b925082821015610e3c57610e3b610f0e565b5b828203905092915050565b6000610e5282610e65565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000610e9a82610ea1565b9050919050565b6000610eac82610eb3565b9050919050565b6000610ebe82610e65565b9050919050565b6000610ed082610e85565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415610f0357610f02610f0e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600080fd5b7f6e6f742073746172740000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6f7574206d696e7420616d6f756e740000000000000000000000000000000000600082015250565b7f6e6f7420656f6100000000000000000000000000000000000000000000000000600082015250565b7f6e6f7420656e6f75676820657468000000000000000000000000000000000000600082015250565b7f65786365656420746f74616c20616d6f756e7400000000000000000000000000600082015250565b61109081610e47565b811461109b57600080fd5b50565b6110a781610e59565b81146110b257600080fd5b50565b6110be81610e85565b81146110c957600080fd5b5056fea26469706673582212205e0188f5a60d9e16e034b131d593d528bc442c3af3507597e3e1c0f98fa0a93064736f6c63430008070033000000000000000000000000a841031584ce22cb73b3add2ed63be6666d39b51
Deployed Bytecode
0x6080604052600436106100955760003560e01c806347ccca021161005957806347ccca021461019a578063715018a6146101c55780638da5cb5b146101dc578063ca87b6ab14610207578063f2fde38b146102235761009c565b806302be16eb146100a157806310696b97146100cd5780633beb26c41461010b578063414bc2961461013457806342b7c0411461015d5761009c565b3661009c57005b600080fd5b3480156100ad57600080fd5b506100b661024c565b6040516100c4929190610d29565b60405180910390f35b3480156100d957600080fd5b506100f460048036038101906100ef91906109a6565b61025d565b604051610102929190610d29565b60405180910390f35b34801561011757600080fd5b50610132600480360381019061012d9190610a53565b6102b8565b005b34801561014057600080fd5b5061015b600480360381019061015691906109d3565b6102ca565b005b34801561016957600080fd5b50610184600480360381019061017f91906109a6565b6103e7565b6040516101919190610d0e565b60405180910390f35b3480156101a657600080fd5b506101af6103ff565b6040516101bc9190610c13565b60405180910390f35b3480156101d157600080fd5b506101da610425565b005b3480156101e857600080fd5b506101f1610439565b6040516101fe9190610bcf565b60405180910390f35b610221600480360381019061021c9190610a53565b610462565b005b34801561022f57600080fd5b5061024a600480360381019061024591906109a6565b610784565b005b600080600354600454915091509091565b600080600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546006546102ad9190610e13565b600091509150915091565b6102c0610808565b8060088190555050565b6102d2610808565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610353578173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561034d573d6000803e3d6000fd5b506103e2565b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b815260040161038e929190610bea565b602060405180830381600087803b1580156103a857600080fd5b505af11580156103bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103e09190610a26565b505b505050565b60076020528060005260406000206000915090505481565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61042d610808565b6104376000610886565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c790610cae565b60405180910390fd5b806005546104de9190610db9565b341461051f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051690610cce565b60405180910390fd5b600254816003546105309190610d63565b1115610571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056890610cee565b60405180910390fd5b60065481600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105bf9190610d63565b1115610600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f790610c8e565b60405180910390fd5b600854421015610645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063c90610c2e565b60405180910390fd5b80600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546106949190610d63565b9250508190555060005b8181101561076757600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636a627842336040518263ffffffff1660e01b81526004016107019190610bcf565b602060405180830381600087803b15801561071b57600080fd5b505af115801561072f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107539190610a80565b50808061075f90610ec5565b91505061069e565b50806003600082825461077a9190610d63565b9250508190555050565b61078c610808565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f390610c4e565b60405180910390fd5b61080581610886565b50565b61081061094a565b73ffffffffffffffffffffffffffffffffffffffff1661082e610439565b73ffffffffffffffffffffffffffffffffffffffff1614610884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087b90610c6e565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b60008135905061096181611087565b92915050565b6000815190506109768161109e565b92915050565b60008135905061098b816110b5565b92915050565b6000815190506109a0816110b5565b92915050565b6000602082840312156109bc576109bb610f3d565b5b60006109ca84828501610952565b91505092915050565b6000806000606084860312156109ec576109eb610f3d565b5b60006109fa86828701610952565b9350506020610a0b86828701610952565b9250506040610a1c8682870161097c565b9150509250925092565b600060208284031215610a3c57610a3b610f3d565b5b6000610a4a84828501610967565b91505092915050565b600060208284031215610a6957610a68610f3d565b5b6000610a778482850161097c565b91505092915050565b600060208284031215610a9657610a95610f3d565b5b6000610aa484828501610991565b91505092915050565b610ab681610e47565b82525050565b610ac581610e8f565b82525050565b6000610ad8600983610d52565b9150610ae382610f42565b602082019050919050565b6000610afb602683610d52565b9150610b0682610f6b565b604082019050919050565b6000610b1e602083610d52565b9150610b2982610fba565b602082019050919050565b6000610b41600f83610d52565b9150610b4c82610fe3565b602082019050919050565b6000610b64600783610d52565b9150610b6f8261100c565b602082019050919050565b6000610b87600e83610d52565b9150610b9282611035565b602082019050919050565b6000610baa601383610d52565b9150610bb58261105e565b602082019050919050565b610bc981610e85565b82525050565b6000602082019050610be46000830184610aad565b92915050565b6000604082019050610bff6000830185610aad565b610c0c6020830184610bc0565b9392505050565b6000602082019050610c286000830184610abc565b92915050565b60006020820190508181036000830152610c4781610acb565b9050919050565b60006020820190508181036000830152610c6781610aee565b9050919050565b60006020820190508181036000830152610c8781610b11565b9050919050565b60006020820190508181036000830152610ca781610b34565b9050919050565b60006020820190508181036000830152610cc781610b57565b9050919050565b60006020820190508181036000830152610ce781610b7a565b9050919050565b60006020820190508181036000830152610d0781610b9d565b9050919050565b6000602082019050610d236000830184610bc0565b92915050565b6000604082019050610d3e6000830185610bc0565b610d4b6020830184610bc0565b9392505050565b600082825260208201905092915050565b6000610d6e82610e85565b9150610d7983610e85565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610dae57610dad610f0e565b5b828201905092915050565b6000610dc482610e85565b9150610dcf83610e85565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615610e0857610e07610f0e565b5b828202905092915050565b6000610e1e82610e85565b9150610e2983610e85565b925082821015610e3c57610e3b610f0e565b5b828203905092915050565b6000610e5282610e65565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000610e9a82610ea1565b9050919050565b6000610eac82610eb3565b9050919050565b6000610ebe82610e65565b9050919050565b6000610ed082610e85565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415610f0357610f02610f0e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600080fd5b7f6e6f742073746172740000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6f7574206d696e7420616d6f756e740000000000000000000000000000000000600082015250565b7f6e6f7420656f6100000000000000000000000000000000000000000000000000600082015250565b7f6e6f7420656e6f75676820657468000000000000000000000000000000000000600082015250565b7f65786365656420746f74616c20616d6f756e7400000000000000000000000000600082015250565b61109081610e47565b811461109b57600080fd5b50565b6110a781610e59565b81146110b257600080fd5b50565b6110be81610e85565b81146110c957600080fd5b5056fea26469706673582212205e0188f5a60d9e16e034b131d593d528bc442c3af3507597e3e1c0f98fa0a93064736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a841031584ce22cb73b3add2ed63be6666d39b51
-----Decoded View---------------
Arg [0] : nft_ (address): 0xA841031584cE22cB73b3add2eD63be6666D39b51
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a841031584ce22cb73b3add2ed63be6666d39b51
Deployed Bytecode Sourcemap
6648:1655:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8037:121;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;8166:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;7949:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7688:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6838:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6685:15;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5688:103;;;;;;;;;;;;;:::i;:::-;;5040:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7111:532;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5946:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8037:121;8086:4;8092;8116:17;;8135:14;;8108:42;;;;8037:121;;:::o;8166:132::-;8229:4;8234;8268:13;:19;8282:4;8268:19;;;;;;;;;;;;;;;;8258:7;;:29;;;;:::i;:::-;8288:1;8250:40;;;;8166:132;;;:::o;7949:80::-;4926:13;:11;:13::i;:::-;8016:5:::1;8006:9;:15;;;;7949:80:::0;:::o;7688:255::-;4926:13;:11;:13::i;:::-;7801:1:::1;7783:20;;:6;:20;;;7779:157;;;7828:6;7820:24;;:32;7845:6;7820:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;7779:157;;;7892:6;7885:23;;;7909:6;7917;7885:39;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;7779:157;7688:255:::0;;;:::o;6838:45::-;;;;;;;;;;;;;;;;;:::o;6685:15::-;;;;;;;;;;;;;:::o;5688:103::-;4926:13;:11;:13::i;:::-;5753:30:::1;5780:1;5753:18;:30::i;:::-;5688:103::o:0;5040:87::-;5086:7;5113:6;;;;;;;;;;;5106:13;;5040:87;:::o;7111:532::-;7062:9;7048:23;;:10;:23;;;7040:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;7213:5:::1;7205;;:13;;;;:::i;:::-;7192:9;:26;7184:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;7285:11;;7276:5;7256:17;;:25;;;;:::i;:::-;:40;;7248:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7376:7;;7367:5;7339:13;:25;7353:10;7339:25;;;;;;;;;;;;;;;;:33;;;;:::i;:::-;:44;;7331:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7441:9;;7422:15;:28;;7414:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;7503:5;7474:13;:25;7488:10;7474:25;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;7524:6;7519:80;7540:5;7536:1;:9;7519:80;;;7567:3;;;;;;;;;;;:8;;;7576:10;7567:20;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;7547:3;;;;;:::i;:::-;;;;7519:80;;;;7630:5;7609:17;;:26;;;;;;;:::i;:::-;;;;;;;;7111:532:::0;:::o;5946:201::-;4926:13;:11;:13::i;:::-;6055:1:::1;6035:22;;:8;:22;;;;6027:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6111:28;6130:8;6111:18;:28::i;:::-;5946:201:::0;:::o;5205:132::-;5280:12;:10;:12::i;:::-;5269:23;;:7;:5;:7::i;:::-;:23;;;5261:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5205:132::o;6307:191::-;6381:16;6400:6;;;;;;;;;;;6381:25;;6426:8;6417:6;;:17;;;;;;;;;;;;;;;;;;6481:8;6450:40;;6471:8;6450:40;;;;;;;;;;;;6370:128;6307:191;:::o;3591:98::-;3644:7;3671:10;3664:17;;3591:98;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:137::-;206:5;237:6;231:13;222:22;;253:30;277:5;253:30;:::i;:::-;152:137;;;;:::o;295:139::-;341:5;379:6;366:20;357:29;;395:33;422:5;395:33;:::i;:::-;295:139;;;;:::o;440:143::-;497:5;528:6;522:13;513:22;;544:33;571:5;544:33;:::i;:::-;440:143;;;;:::o;589:329::-;648:6;697:2;685:9;676:7;672:23;668:32;665:119;;;703:79;;:::i;:::-;665:119;823:1;848:53;893:7;884:6;873:9;869:22;848:53;:::i;:::-;838:63;;794:117;589:329;;;;:::o;924:619::-;1001:6;1009;1017;1066:2;1054:9;1045:7;1041:23;1037:32;1034:119;;;1072:79;;:::i;:::-;1034:119;1192:1;1217:53;1262:7;1253:6;1242:9;1238:22;1217:53;:::i;:::-;1207:63;;1163:117;1319:2;1345:53;1390:7;1381:6;1370:9;1366:22;1345:53;:::i;:::-;1335:63;;1290:118;1447:2;1473:53;1518:7;1509:6;1498:9;1494:22;1473:53;:::i;:::-;1463:63;;1418:118;924:619;;;;;:::o;1549:345::-;1616:6;1665:2;1653:9;1644:7;1640:23;1636:32;1633:119;;;1671:79;;:::i;:::-;1633:119;1791:1;1816:61;1869:7;1860:6;1849:9;1845:22;1816:61;:::i;:::-;1806:71;;1762:125;1549:345;;;;:::o;1900:329::-;1959:6;2008:2;1996:9;1987:7;1983:23;1979:32;1976:119;;;2014:79;;:::i;:::-;1976:119;2134:1;2159:53;2204:7;2195:6;2184:9;2180:22;2159:53;:::i;:::-;2149:63;;2105:117;1900:329;;;;:::o;2235:351::-;2305:6;2354:2;2342:9;2333:7;2329:23;2325:32;2322:119;;;2360:79;;:::i;:::-;2322:119;2480:1;2505:64;2561:7;2552:6;2541:9;2537:22;2505:64;:::i;:::-;2495:74;;2451:128;2235:351;;;;:::o;2592:118::-;2679:24;2697:5;2679:24;:::i;:::-;2674:3;2667:37;2592:118;;:::o;2716:155::-;2815:49;2858:5;2815:49;:::i;:::-;2810:3;2803:62;2716:155;;:::o;2877:365::-;3019:3;3040:66;3104:1;3099:3;3040:66;:::i;:::-;3033:73;;3115:93;3204:3;3115:93;:::i;:::-;3233:2;3228:3;3224:12;3217:19;;2877:365;;;:::o;3248:366::-;3390:3;3411:67;3475:2;3470:3;3411:67;:::i;:::-;3404:74;;3487:93;3576:3;3487:93;:::i;:::-;3605:2;3600:3;3596:12;3589:19;;3248:366;;;:::o;3620:::-;3762:3;3783:67;3847:2;3842:3;3783:67;:::i;:::-;3776:74;;3859:93;3948:3;3859:93;:::i;:::-;3977:2;3972:3;3968:12;3961:19;;3620:366;;;:::o;3992:::-;4134:3;4155:67;4219:2;4214:3;4155:67;:::i;:::-;4148:74;;4231:93;4320:3;4231:93;:::i;:::-;4349:2;4344:3;4340:12;4333:19;;3992:366;;;:::o;4364:365::-;4506:3;4527:66;4591:1;4586:3;4527:66;:::i;:::-;4520:73;;4602:93;4691:3;4602:93;:::i;:::-;4720:2;4715:3;4711:12;4704:19;;4364:365;;;:::o;4735:366::-;4877:3;4898:67;4962:2;4957:3;4898:67;:::i;:::-;4891:74;;4974:93;5063:3;4974:93;:::i;:::-;5092:2;5087:3;5083:12;5076:19;;4735:366;;;:::o;5107:::-;5249:3;5270:67;5334:2;5329:3;5270:67;:::i;:::-;5263:74;;5346:93;5435:3;5346:93;:::i;:::-;5464:2;5459:3;5455:12;5448:19;;5107:366;;;:::o;5479:118::-;5566:24;5584:5;5566:24;:::i;:::-;5561:3;5554:37;5479:118;;:::o;5603:222::-;5696:4;5734:2;5723:9;5719:18;5711:26;;5747:71;5815:1;5804:9;5800:17;5791:6;5747:71;:::i;:::-;5603:222;;;;:::o;5831:332::-;5952:4;5990:2;5979:9;5975:18;5967:26;;6003:71;6071:1;6060:9;6056:17;6047:6;6003:71;:::i;:::-;6084:72;6152:2;6141:9;6137:18;6128:6;6084:72;:::i;:::-;5831:332;;;;;:::o;6169:246::-;6274:4;6312:2;6301:9;6297:18;6289:26;;6325:83;6405:1;6394:9;6390:17;6381:6;6325:83;:::i;:::-;6169:246;;;;:::o;6421:419::-;6587:4;6625:2;6614:9;6610:18;6602:26;;6674:9;6668:4;6664:20;6660:1;6649:9;6645:17;6638:47;6702:131;6828:4;6702:131;:::i;:::-;6694:139;;6421:419;;;:::o;6846:::-;7012:4;7050:2;7039:9;7035:18;7027:26;;7099:9;7093:4;7089:20;7085:1;7074:9;7070:17;7063:47;7127:131;7253:4;7127:131;:::i;:::-;7119:139;;6846:419;;;:::o;7271:::-;7437:4;7475:2;7464:9;7460:18;7452:26;;7524:9;7518:4;7514:20;7510:1;7499:9;7495:17;7488:47;7552:131;7678:4;7552:131;:::i;:::-;7544:139;;7271:419;;;:::o;7696:::-;7862:4;7900:2;7889:9;7885:18;7877:26;;7949:9;7943:4;7939:20;7935:1;7924:9;7920:17;7913:47;7977:131;8103:4;7977:131;:::i;:::-;7969:139;;7696:419;;;:::o;8121:::-;8287:4;8325:2;8314:9;8310:18;8302:26;;8374:9;8368:4;8364:20;8360:1;8349:9;8345:17;8338:47;8402:131;8528:4;8402:131;:::i;:::-;8394:139;;8121:419;;;:::o;8546:::-;8712:4;8750:2;8739:9;8735:18;8727:26;;8799:9;8793:4;8789:20;8785:1;8774:9;8770:17;8763:47;8827:131;8953:4;8827:131;:::i;:::-;8819:139;;8546:419;;;:::o;8971:::-;9137:4;9175:2;9164:9;9160:18;9152:26;;9224:9;9218:4;9214:20;9210:1;9199:9;9195:17;9188:47;9252:131;9378:4;9252:131;:::i;:::-;9244:139;;8971:419;;;:::o;9396:222::-;9489:4;9527:2;9516:9;9512:18;9504:26;;9540:71;9608:1;9597:9;9593:17;9584:6;9540:71;:::i;:::-;9396:222;;;;:::o;9624:332::-;9745:4;9783:2;9772:9;9768:18;9760:26;;9796:71;9864:1;9853:9;9849:17;9840:6;9796:71;:::i;:::-;9877:72;9945:2;9934:9;9930:18;9921:6;9877:72;:::i;:::-;9624:332;;;;;:::o;10043:169::-;10127:11;10161:6;10156:3;10149:19;10201:4;10196:3;10192:14;10177:29;;10043:169;;;;:::o;10218:305::-;10258:3;10277:20;10295:1;10277:20;:::i;:::-;10272:25;;10311:20;10329:1;10311:20;:::i;:::-;10306:25;;10465:1;10397:66;10393:74;10390:1;10387:81;10384:107;;;10471:18;;:::i;:::-;10384:107;10515:1;10512;10508:9;10501:16;;10218:305;;;;:::o;10529:348::-;10569:7;10592:20;10610:1;10592:20;:::i;:::-;10587:25;;10626:20;10644:1;10626:20;:::i;:::-;10621:25;;10814:1;10746:66;10742:74;10739:1;10736:81;10731:1;10724:9;10717:17;10713:105;10710:131;;;10821:18;;:::i;:::-;10710:131;10869:1;10866;10862:9;10851:20;;10529:348;;;;:::o;10883:191::-;10923:4;10943:20;10961:1;10943:20;:::i;:::-;10938:25;;10977:20;10995:1;10977:20;:::i;:::-;10972:25;;11016:1;11013;11010:8;11007:34;;;11021:18;;:::i;:::-;11007:34;11066:1;11063;11059:9;11051:17;;10883:191;;;;:::o;11080:96::-;11117:7;11146:24;11164:5;11146:24;:::i;:::-;11135:35;;11080:96;;;:::o;11182:90::-;11216:7;11259:5;11252:13;11245:21;11234:32;;11182:90;;;:::o;11278:126::-;11315:7;11355:42;11348:5;11344:54;11333:65;;11278:126;;;:::o;11410:77::-;11447:7;11476:5;11465:16;;11410:77;;;:::o;11493:138::-;11555:9;11588:37;11619:5;11588:37;:::i;:::-;11575:50;;11493:138;;;:::o;11637:126::-;11687:9;11720:37;11751:5;11720:37;:::i;:::-;11707:50;;11637:126;;;:::o;11769:113::-;11819:9;11852:24;11870:5;11852:24;:::i;:::-;11839:37;;11769:113;;;:::o;11888:233::-;11927:3;11950:24;11968:5;11950:24;:::i;:::-;11941:33;;11996:66;11989:5;11986:77;11983:103;;;12066:18;;:::i;:::-;11983:103;12113:1;12106:5;12102:13;12095:20;;11888:233;;;:::o;12127:180::-;12175:77;12172:1;12165:88;12272:4;12269:1;12262:15;12296:4;12293:1;12286:15;12436:117;12545:1;12542;12535:12;12559:159;12699:11;12695:1;12687:6;12683:14;12676:35;12559:159;:::o;12724:225::-;12864:34;12860:1;12852:6;12848:14;12841:58;12933:8;12928:2;12920:6;12916:15;12909:33;12724:225;:::o;12955:182::-;13095:34;13091:1;13083:6;13079:14;13072:58;12955:182;:::o;13143:165::-;13283:17;13279:1;13271:6;13267:14;13260:41;13143:165;:::o;13314:157::-;13454:9;13450:1;13442:6;13438:14;13431:33;13314:157;:::o;13477:164::-;13617:16;13613:1;13605:6;13601:14;13594:40;13477:164;:::o;13647:169::-;13787:21;13783:1;13775:6;13771:14;13764:45;13647:169;:::o;13822:122::-;13895:24;13913:5;13895:24;:::i;:::-;13888:5;13885:35;13875:63;;13934:1;13931;13924:12;13875:63;13822:122;:::o;13950:116::-;14020:21;14035:5;14020:21;:::i;:::-;14013:5;14010:32;14000:60;;14056:1;14053;14046:12;14000:60;13950:116;:::o;14072:122::-;14145:24;14163:5;14145:24;:::i;:::-;14138:5;14135:35;14125:63;;14184:1;14181;14174:12;14125:63;14072:122;:::o
Swarm Source
ipfs://5e0188f5a60d9e16e034b131d593d528bc442c3af3507597e3e1c0f98fa0a930
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.