Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 1,008 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Redeem721A | 19732754 | 233 days ago | IN | 0 ETH | 0.00099858 | ||||
Redeem721A | 18825117 | 360 days ago | IN | 0 ETH | 0.00497296 | ||||
Redeem721A | 18324548 | 431 days ago | IN | 0 ETH | 0.00052356 | ||||
Redeem721A | 18011609 | 474 days ago | IN | 0 ETH | 0.00135876 | ||||
Stake721A | 17769226 | 508 days ago | IN | 0 ETH | 0.00241707 | ||||
Redeem721A | 17499354 | 546 days ago | IN | 0 ETH | 0.00206742 | ||||
Redeem721A | 17477154 | 549 days ago | IN | 0 ETH | 0.00146474 | ||||
Redeem721A | 17386947 | 562 days ago | IN | 0 ETH | 0.00346894 | ||||
Redeem721A | 17335966 | 569 days ago | IN | 0 ETH | 0.00299009 | ||||
Redeem721A | 17298042 | 574 days ago | IN | 0 ETH | 0.00350086 | ||||
Redeem721A | 17270822 | 578 days ago | IN | 0 ETH | 0.00404594 | ||||
Redeem721A | 17264716 | 579 days ago | IN | 0 ETH | 0.00319627 | ||||
Redeem721A | 17264619 | 579 days ago | IN | 0 ETH | 0.0031579 | ||||
Redeem721A | 17248198 | 582 days ago | IN | 0 ETH | 0.00650727 | ||||
Redeem721A | 17222458 | 585 days ago | IN | 0 ETH | 0.00850922 | ||||
Redeem721A | 17222434 | 585 days ago | IN | 0 ETH | 0.0044265 | ||||
Redeem721A | 17057369 | 608 days ago | IN | 0 ETH | 0.00286331 | ||||
Redeem721A | 17016599 | 614 days ago | IN | 0 ETH | 0.00150864 | ||||
Redeem721A | 16982707 | 619 days ago | IN | 0 ETH | 0.00293469 | ||||
Redeem721A | 16915847 | 629 days ago | IN | 0 ETH | 0.00232383 | ||||
Redeem721A | 16906924 | 630 days ago | IN | 0 ETH | 0.0023391 | ||||
Redeem721A | 16869167 | 635 days ago | IN | 0 ETH | 0.00157857 | ||||
Stake721A | 16867417 | 635 days ago | IN | 0 ETH | 0.00160995 | ||||
Redeem721A | 16861822 | 636 days ago | IN | 0 ETH | 0.00138918 | ||||
Redeem721A | 16854808 | 637 days ago | IN | 0 ETH | 0.00128967 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
NFTStake721A
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; contract NFTStake721A is Ownable, Pausable { /* Variable */ using SafeMath for uint256; address signerAddress; address holderAddress; address tokenAddress; mapping(string => bool) internal nonceMap; mapping(address => mapping(uint256 => bool)) internal stakeMap; /* Event */ event Stake721A(address indexed fromAddress, address indexed toAddress, address indexed tokenAddress, uint256[] tokenIds, string nonce); event Redeem721A(address indexed fromAddress, address indexed toAddress, address indexed tokenAddress, uint256[] tokenIds, string nonce); constructor (){} // setup function setHolderAddress(address _holderAddress) public onlyOwner { holderAddress = _holderAddress; } function setSignerAddress(address _signerAddress) public onlyOwner { signerAddress = _signerAddress; } function setTokenAddress(address _tokenAddress) public onlyOwner { tokenAddress = _tokenAddress; } //end setup function stake721A(uint256[] memory tokenIds, bytes32 hash, bytes memory signature, uint256 blockHeight, string memory nonce) public { require(!nonceMap[nonce], "Nonce already exist!"); //require(blockHeight >= block.number, "The block has expired!"); require(hashStake721A(tokenAddress, tokenIds, blockHeight, nonce) == hash, "Invalid hash!"); require(matchAddressSigner(hash, signature), "Invalid signature!"); for (uint256 i = 0; i < tokenIds.length; i++) { stakeMap[msg.sender][tokenIds[i]] = true; } nonceMap[nonce] = true; IERC721A NFTContract = IERC721A(tokenAddress); for (uint256 i = 0; i < tokenIds.length; i++) { NFTContract.safeTransferFrom(msg.sender, holderAddress, tokenIds[i], abi.encode(msg.sender)); } emit Stake721A(msg.sender, holderAddress, tokenAddress, tokenIds, nonce); } function redeem721A(uint256[] memory tokenIds, bytes32 hash, bytes memory signature, uint256 blockHeight, string memory nonce) public { require(!nonceMap[nonce], "Nonce already exist!"); //require(blockHeight >= block.number, "The block has expired!"); require(hashRedeem721A(tokenAddress, tokenIds, blockHeight, nonce) == hash, "Invalid hash!"); require(matchAddressSigner(hash, signature), "Invalid signature!"); bool isIn = true; for (uint256 i = 0; i < tokenIds.length; i++) { isIn = isIn && stakeMap[msg.sender][tokenIds[i]]; } require(isIn, "No such staking record!"); for (uint256 i = 0; i < tokenIds.length; i++) { stakeMap[msg.sender][tokenIds[i]] = false; } IERC721A NFTContract = IERC721A(tokenAddress); for (uint256 i = 0; i < tokenIds.length; i++) { NFTContract.safeTransferFrom(holderAddress, msg.sender, tokenIds[i], abi.encode(msg.sender)); } emit Redeem721A(holderAddress, msg.sender, tokenAddress, tokenIds, nonce); } function checkStakeStatus(address _owner, uint256 _tokenId) public view returns (bool){ return (stakeMap[_owner][_tokenId]); } function hashStake721A(address _tokenAddress, uint256[] memory _tokenIds, uint256 blockHeight, string memory nonce) private view returns (bytes32) { bytes32 hash = keccak256( abi.encodePacked( "\x19Ethereum Signed Message:\n32", keccak256(abi.encodePacked(msg.sender, _tokenAddress, _tokenIds, blockHeight, nonce, "stake_721A")) ) ); return hash; } function hashRedeem721A(address _tokenAddress, uint256[] memory tokenIds, uint256 blockHeight, string memory nonce) private view returns (bytes32) { bytes32 hash = keccak256( abi.encodePacked( "\x19Ethereum Signed Message:\n32", keccak256(abi.encodePacked(msg.sender, _tokenAddress, tokenIds, blockHeight, nonce, "redeem_721A")) ) ); return hash; } function matchAddressSigner(bytes32 hash, bytes memory signature) internal view returns (bool) { return signerAddress == recoverSigner(hash, signature); } function recoverSigner(bytes32 _ethSignedMessageHash, bytes memory _signature) internal pure returns (address){ (bytes32 r, bytes32 s, uint8 v) = splitSignature(_signature); return ecrecover(_ethSignedMessageHash, v, r, s); } function splitSignature(bytes memory sig) internal pure returns (bytes32 r, bytes32 s, uint8 v){ require(sig.length == 65, "Invalid signature length!"); assembly { r := mload(add(sig, 32)) s := mload(add(sig, 64)) v := byte(0, mload(add(sig, 96))) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) 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 generally not needed starting with Solidity 0.8, since 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 subtraction 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 // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) 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() { _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); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// SPDX-License-Identifier: MIT // 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; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"fromAddress","type":"address"},{"indexed":true,"internalType":"address","name":"toAddress","type":"address"},{"indexed":true,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"indexed":false,"internalType":"string","name":"nonce","type":"string"}],"name":"Redeem721A","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"fromAddress","type":"address"},{"indexed":true,"internalType":"address","name":"toAddress","type":"address"},{"indexed":true,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"indexed":false,"internalType":"string","name":"nonce","type":"string"}],"name":"Stake721A","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"checkStakeStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"blockHeight","type":"uint256"},{"internalType":"string","name":"nonce","type":"string"}],"name":"redeem721A","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_holderAddress","type":"address"}],"name":"setHolderAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signerAddress","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"setTokenAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"blockHeight","type":"uint256"},{"internalType":"string","name":"nonce","type":"string"}],"name":"stake721A","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5061002d61002261004c60201b60201c565b61005460201b60201c565b60008060146101000a81548160ff021916908315150217905550610118565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ee3806101276000396000f3fe608060405234801561001057600080fd5b506004361061009e5760003560e01c80638014874711610066578063801487471461011f57806380b891a41461013b5780638da5cb5b1461016b578063bd17f91314610189578063f2fde38b146101a55761009e565b8063046dc166146100a357806326a4e8d2146100bf5780635c975abb146100db578063622ff3ec146100f9578063715018a614610115575b600080fd5b6100bd60048036038101906100b89190611201565b6101c1565b005b6100d960048036038101906100d49190611201565b61020d565b005b6100e3610259565b6040516100f0919061185f565b60405180910390f35b610113600480360381019061010e9190611266565b61026f565b005b61011d61076f565b005b61013960048036038101906101349190611266565b610783565b005b6101556004803603810190610150919061122a565b610baa565b604051610162919061185f565b60405180910390f35b610173610c12565b60405161018091906117c1565b60405180910390f35b6101a3600480360381019061019e9190611201565b610c3b565b005b6101bf60048036038101906101ba9190611201565b610c87565b005b6101c9610d0b565b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610215610d0b565b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060149054906101000a900460ff16905090565b60048160405161027f9190611784565b908152602001604051809103902060009054906101000a900460ff16156102db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102d29061197f565b60405180910390fd5b8361030a600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16878585610d89565b1461034a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610341906118bf565b60405180910390fd5b6103548484610def565b610393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161038a9061191f565b60405180910390fd5b60006001905060005b86518110156104615781801561044c5750600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000888381518110610427577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060009054906101000a900460ff165b9150808061045990611bab565b91505061039c565b50806104a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610499906118ff565b60405180910390fd5b60005b865181101561056a576000600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600089848151811061052a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550808061056290611bab565b9150506104a5565b506000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060005b87518110156106a3578173ffffffffffffffffffffffffffffffffffffffff1663b88d4fde600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16338b8581518110610617577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101513360405160200161063091906117c1565b6040516020818303038152906040526040518563ffffffff1660e01b815260040161065e94939291906117dc565b600060405180830381600087803b15801561067857600080fd5b505af115801561068c573d6000803e3d6000fd5b50505050808061069b90611bab565b915050610595565b50600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fe9c3325374bcc1ea7d769b7a9b19f04efa7c5a6508c2fe0cbe86d79bcb5b2b708a8760405161075e929190611828565b60405180910390a450505050505050565b610777610d0b565b6107816000610e53565b565b6004816040516107939190611784565b908152602001604051809103902060009054906101000a900460ff16156107ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e69061197f565b60405180910390fd5b8361081e600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16878585610f17565b1461085e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610855906118bf565b60405180910390fd5b6108688484610def565b6108a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089e9061191f565b60405180910390fd5b60005b855181101561096f576001600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600088848151811061092f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550808061096790611bab565b9150506108aa565b5060016004826040516109829190611784565b908152602001604051809103902060006101000a81548160ff0219169083151502179055506000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060005b8651811015610adf578173ffffffffffffffffffffffffffffffffffffffff1663b88d4fde33600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168a8581518110610a53577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015133604051602001610a6c91906117c1565b6040516020818303038152906040526040518563ffffffff1660e01b8152600401610a9a94939291906117dc565b600060405180830381600087803b158015610ab457600080fd5b505af1158015610ac8573d6000803e3d6000fd5b505050508080610ad790611bab565b9150506109d1565b50600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f988ba785e708da7a6dfe3264141c81df7c6774449507cb5f1a605cb10cfe2fde8986604051610b9a929190611828565b60405180910390a4505050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002060009054906101000a900460ff16905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610c43610d0b565b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c8f610d0b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf6906118df565b60405180910390fd5b610d0881610e53565b50565b610d13610f7d565b73ffffffffffffffffffffffffffffffffffffffff16610d31610c12565b73ffffffffffffffffffffffffffffffffffffffff1614610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e9061193f565b60405180910390fd5b565b6000803386868686604051602001610da5959493929190611722565b60405160208183030381529060405280519060200120604051602001610dcb919061179b565b60405160208183030381529060405280519060200120905080915050949350505050565b6000610dfb8383610f85565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000803386868686604051602001610f339594939291906116c0565b60405160208183030381529060405280519060200120604051602001610f59919061179b565b60405160208183030381529060405280519060200120905080915050949350505050565b600033905090565b600080600080610f9485610ff4565b92509250925060018682858560405160008152602001604052604051610fbd949392919061187a565b6020604051602081039080840390855afa158015610fdf573d6000803e3d6000fd5b50505060206040510351935050505092915050565b6000806000604184511461103d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110349061195f565b60405180910390fd5b6020840151925060408401519150606084015160001a90509193909250565b600061106f61106a846119c4565b61199f565b9050808382526020820190508285602086028201111561108e57600080fd5b60005b858110156110be57816110a488826111ec565b845260208401935060208301925050600181019050611091565b5050509392505050565b60006110db6110d6846119f0565b61199f565b9050828152602081018484840111156110f357600080fd5b6110fe848285611b38565b509392505050565b600061111961111484611a21565b61199f565b90508281526020810184848401111561113157600080fd5b61113c848285611b38565b509392505050565b60008135905061115381611e68565b92915050565b600082601f83011261116a57600080fd5b813561117a84826020860161105c565b91505092915050565b60008135905061119281611e7f565b92915050565b600082601f8301126111a957600080fd5b81356111b98482602086016110c8565b91505092915050565b600082601f8301126111d357600080fd5b81356111e3848260208601611106565b91505092915050565b6000813590506111fb81611e96565b92915050565b60006020828403121561121357600080fd5b600061122184828501611144565b91505092915050565b6000806040838503121561123d57600080fd5b600061124b85828601611144565b925050602061125c858286016111ec565b9150509250929050565b600080600080600060a0868803121561127e57600080fd5b600086013567ffffffffffffffff81111561129857600080fd5b6112a488828901611159565b95505060206112b588828901611183565b945050604086013567ffffffffffffffff8111156112d257600080fd5b6112de88828901611198565b93505060606112ef888289016111ec565b925050608086013567ffffffffffffffff81111561130c57600080fd5b611318888289016111c2565b9150509295509295909350565b6000611331838361166d565b60208301905092915050565b6000611349838361168b565b60208301905092915050565b61135e81611ad9565b82525050565b61137561137082611ad9565b611bf4565b82525050565b600061138682611a62565b6113908185611a90565b935061139b83611a52565b8060005b838110156113cc5781516113b38882611325565b97506113be83611a83565b92505060018101905061139f565b5085935050505092915050565b60006113e482611a62565b6113ee8185611aa1565b93506113f983611a52565b8060005b8381101561142a578151611411888261133d565b975061141c83611a83565b9250506001810190506113fd565b5085935050505092915050565b61144081611aeb565b82525050565b61144f81611af7565b82525050565b61146661146182611af7565b611c06565b82525050565b600061147782611a6d565b6114818185611aac565b9350611491818560208601611b47565b61149a81611c8a565b840191505092915050565b60006114b082611a78565b6114ba8185611abd565b93506114ca818560208601611b47565b6114d381611c8a565b840191505092915050565b60006114e982611a78565b6114f38185611ace565b9350611503818560208601611b47565b80840191505092915050565b600061151c600d83611abd565b915061152782611ca8565b602082019050919050565b600061153f601c83611ace565b915061154a82611cd1565b601c82019050919050565b6000611562602683611abd565b915061156d82611cfa565b604082019050919050565b6000611585601783611abd565b915061159082611d49565b602082019050919050565b60006115a8601283611abd565b91506115b382611d72565b602082019050919050565b60006115cb600a83611ace565b91506115d682611d9b565b600a82019050919050565b60006115ee602083611abd565b91506115f982611dc4565b602082019050919050565b6000611611601983611abd565b915061161c82611ded565b602082019050919050565b6000611634601483611abd565b915061163f82611e16565b602082019050919050565b6000611657600b83611ace565b915061166282611e3f565b600b82019050919050565b61167681611b21565b82525050565b61168581611b21565b82525050565b61169481611b21565b82525050565b6116ab6116a682611b21565b611c22565b82525050565b6116ba81611b2b565b82525050565b60006116cc8288611364565b6014820191506116dc8287611364565b6014820191506116ec82866113d9565b91506116f8828561169a565b60208201915061170882846114de565b9150611713826115be565b91508190509695505050505050565b600061172e8288611364565b60148201915061173e8287611364565b60148201915061174e82866113d9565b915061175a828561169a565b60208201915061176a82846114de565b91506117758261164a565b91508190509695505050505050565b600061179082846114de565b915081905092915050565b60006117a682611532565b91506117b28284611455565b60208201915081905092915050565b60006020820190506117d66000830184611355565b92915050565b60006080820190506117f16000830187611355565b6117fe6020830186611355565b61180b604083018561167c565b818103606083015261181d818461146c565b905095945050505050565b60006040820190508181036000830152611842818561137b565b9050818103602083015261185681846114a5565b90509392505050565b60006020820190506118746000830184611437565b92915050565b600060808201905061188f6000830187611446565b61189c60208301866116b1565b6118a96040830185611446565b6118b66060830184611446565b95945050505050565b600060208201905081810360008301526118d88161150f565b9050919050565b600060208201905081810360008301526118f881611555565b9050919050565b6000602082019050818103600083015261191881611578565b9050919050565b600060208201905081810360008301526119388161159b565b9050919050565b60006020820190508181036000830152611958816115e1565b9050919050565b6000602082019050818103600083015261197881611604565b9050919050565b6000602082019050818103600083015261199881611627565b9050919050565b60006119a96119ba565b90506119b58282611b7a565b919050565b6000604051905090565b600067ffffffffffffffff8211156119df576119de611c5b565b5b602082029050602081019050919050565b600067ffffffffffffffff821115611a0b57611a0a611c5b565b5b611a1482611c8a565b9050602081019050919050565b600067ffffffffffffffff821115611a3c57611a3b611c5b565b5b611a4582611c8a565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000611ae482611b01565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015611b65578082015181840152602081019050611b4a565b83811115611b74576000848401525b50505050565b611b8382611c8a565b810181811067ffffffffffffffff82111715611ba257611ba1611c5b565b5b80604052505050565b6000611bb682611b21565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611be957611be8611c2c565b5b600182019050919050565b6000611bff82611c10565b9050919050565b6000819050919050565b6000611c1b82611c9b565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e76616c696420686173682100000000000000000000000000000000000000600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2073756368207374616b696e67207265636f726421000000000000000000600082015250565b7f496e76616c6964207369676e6174757265210000000000000000000000000000600082015250565b7f7374616b655f3732314100000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c6964207369676e6174757265206c656e6774682100000000000000600082015250565b7f4e6f6e636520616c726561647920657869737421000000000000000000000000600082015250565b7f72656465656d5f37323141000000000000000000000000000000000000000000600082015250565b611e7181611ad9565b8114611e7c57600080fd5b50565b611e8881611af7565b8114611e9357600080fd5b50565b611e9f81611b21565b8114611eaa57600080fd5b5056fea264697066735822122056f0e42c7363993e5d63a45bce9475e3e3e98840ffa570b5c385e2a1f8c86e4664736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061009e5760003560e01c80638014874711610066578063801487471461011f57806380b891a41461013b5780638da5cb5b1461016b578063bd17f91314610189578063f2fde38b146101a55761009e565b8063046dc166146100a357806326a4e8d2146100bf5780635c975abb146100db578063622ff3ec146100f9578063715018a614610115575b600080fd5b6100bd60048036038101906100b89190611201565b6101c1565b005b6100d960048036038101906100d49190611201565b61020d565b005b6100e3610259565b6040516100f0919061185f565b60405180910390f35b610113600480360381019061010e9190611266565b61026f565b005b61011d61076f565b005b61013960048036038101906101349190611266565b610783565b005b6101556004803603810190610150919061122a565b610baa565b604051610162919061185f565b60405180910390f35b610173610c12565b60405161018091906117c1565b60405180910390f35b6101a3600480360381019061019e9190611201565b610c3b565b005b6101bf60048036038101906101ba9190611201565b610c87565b005b6101c9610d0b565b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610215610d0b565b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060149054906101000a900460ff16905090565b60048160405161027f9190611784565b908152602001604051809103902060009054906101000a900460ff16156102db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102d29061197f565b60405180910390fd5b8361030a600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16878585610d89565b1461034a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610341906118bf565b60405180910390fd5b6103548484610def565b610393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161038a9061191f565b60405180910390fd5b60006001905060005b86518110156104615781801561044c5750600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000888381518110610427577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060009054906101000a900460ff165b9150808061045990611bab565b91505061039c565b50806104a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610499906118ff565b60405180910390fd5b60005b865181101561056a576000600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600089848151811061052a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550808061056290611bab565b9150506104a5565b506000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060005b87518110156106a3578173ffffffffffffffffffffffffffffffffffffffff1663b88d4fde600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16338b8581518110610617577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101513360405160200161063091906117c1565b6040516020818303038152906040526040518563ffffffff1660e01b815260040161065e94939291906117dc565b600060405180830381600087803b15801561067857600080fd5b505af115801561068c573d6000803e3d6000fd5b50505050808061069b90611bab565b915050610595565b50600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fe9c3325374bcc1ea7d769b7a9b19f04efa7c5a6508c2fe0cbe86d79bcb5b2b708a8760405161075e929190611828565b60405180910390a450505050505050565b610777610d0b565b6107816000610e53565b565b6004816040516107939190611784565b908152602001604051809103902060009054906101000a900460ff16156107ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e69061197f565b60405180910390fd5b8361081e600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16878585610f17565b1461085e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610855906118bf565b60405180910390fd5b6108688484610def565b6108a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089e9061191f565b60405180910390fd5b60005b855181101561096f576001600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600088848151811061092f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550808061096790611bab565b9150506108aa565b5060016004826040516109829190611784565b908152602001604051809103902060006101000a81548160ff0219169083151502179055506000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060005b8651811015610adf578173ffffffffffffffffffffffffffffffffffffffff1663b88d4fde33600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168a8581518110610a53577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015133604051602001610a6c91906117c1565b6040516020818303038152906040526040518563ffffffff1660e01b8152600401610a9a94939291906117dc565b600060405180830381600087803b158015610ab457600080fd5b505af1158015610ac8573d6000803e3d6000fd5b505050508080610ad790611bab565b9150506109d1565b50600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f988ba785e708da7a6dfe3264141c81df7c6774449507cb5f1a605cb10cfe2fde8986604051610b9a929190611828565b60405180910390a4505050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002060009054906101000a900460ff16905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610c43610d0b565b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c8f610d0b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf6906118df565b60405180910390fd5b610d0881610e53565b50565b610d13610f7d565b73ffffffffffffffffffffffffffffffffffffffff16610d31610c12565b73ffffffffffffffffffffffffffffffffffffffff1614610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e9061193f565b60405180910390fd5b565b6000803386868686604051602001610da5959493929190611722565b60405160208183030381529060405280519060200120604051602001610dcb919061179b565b60405160208183030381529060405280519060200120905080915050949350505050565b6000610dfb8383610f85565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000803386868686604051602001610f339594939291906116c0565b60405160208183030381529060405280519060200120604051602001610f59919061179b565b60405160208183030381529060405280519060200120905080915050949350505050565b600033905090565b600080600080610f9485610ff4565b92509250925060018682858560405160008152602001604052604051610fbd949392919061187a565b6020604051602081039080840390855afa158015610fdf573d6000803e3d6000fd5b50505060206040510351935050505092915050565b6000806000604184511461103d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110349061195f565b60405180910390fd5b6020840151925060408401519150606084015160001a90509193909250565b600061106f61106a846119c4565b61199f565b9050808382526020820190508285602086028201111561108e57600080fd5b60005b858110156110be57816110a488826111ec565b845260208401935060208301925050600181019050611091565b5050509392505050565b60006110db6110d6846119f0565b61199f565b9050828152602081018484840111156110f357600080fd5b6110fe848285611b38565b509392505050565b600061111961111484611a21565b61199f565b90508281526020810184848401111561113157600080fd5b61113c848285611b38565b509392505050565b60008135905061115381611e68565b92915050565b600082601f83011261116a57600080fd5b813561117a84826020860161105c565b91505092915050565b60008135905061119281611e7f565b92915050565b600082601f8301126111a957600080fd5b81356111b98482602086016110c8565b91505092915050565b600082601f8301126111d357600080fd5b81356111e3848260208601611106565b91505092915050565b6000813590506111fb81611e96565b92915050565b60006020828403121561121357600080fd5b600061122184828501611144565b91505092915050565b6000806040838503121561123d57600080fd5b600061124b85828601611144565b925050602061125c858286016111ec565b9150509250929050565b600080600080600060a0868803121561127e57600080fd5b600086013567ffffffffffffffff81111561129857600080fd5b6112a488828901611159565b95505060206112b588828901611183565b945050604086013567ffffffffffffffff8111156112d257600080fd5b6112de88828901611198565b93505060606112ef888289016111ec565b925050608086013567ffffffffffffffff81111561130c57600080fd5b611318888289016111c2565b9150509295509295909350565b6000611331838361166d565b60208301905092915050565b6000611349838361168b565b60208301905092915050565b61135e81611ad9565b82525050565b61137561137082611ad9565b611bf4565b82525050565b600061138682611a62565b6113908185611a90565b935061139b83611a52565b8060005b838110156113cc5781516113b38882611325565b97506113be83611a83565b92505060018101905061139f565b5085935050505092915050565b60006113e482611a62565b6113ee8185611aa1565b93506113f983611a52565b8060005b8381101561142a578151611411888261133d565b975061141c83611a83565b9250506001810190506113fd565b5085935050505092915050565b61144081611aeb565b82525050565b61144f81611af7565b82525050565b61146661146182611af7565b611c06565b82525050565b600061147782611a6d565b6114818185611aac565b9350611491818560208601611b47565b61149a81611c8a565b840191505092915050565b60006114b082611a78565b6114ba8185611abd565b93506114ca818560208601611b47565b6114d381611c8a565b840191505092915050565b60006114e982611a78565b6114f38185611ace565b9350611503818560208601611b47565b80840191505092915050565b600061151c600d83611abd565b915061152782611ca8565b602082019050919050565b600061153f601c83611ace565b915061154a82611cd1565b601c82019050919050565b6000611562602683611abd565b915061156d82611cfa565b604082019050919050565b6000611585601783611abd565b915061159082611d49565b602082019050919050565b60006115a8601283611abd565b91506115b382611d72565b602082019050919050565b60006115cb600a83611ace565b91506115d682611d9b565b600a82019050919050565b60006115ee602083611abd565b91506115f982611dc4565b602082019050919050565b6000611611601983611abd565b915061161c82611ded565b602082019050919050565b6000611634601483611abd565b915061163f82611e16565b602082019050919050565b6000611657600b83611ace565b915061166282611e3f565b600b82019050919050565b61167681611b21565b82525050565b61168581611b21565b82525050565b61169481611b21565b82525050565b6116ab6116a682611b21565b611c22565b82525050565b6116ba81611b2b565b82525050565b60006116cc8288611364565b6014820191506116dc8287611364565b6014820191506116ec82866113d9565b91506116f8828561169a565b60208201915061170882846114de565b9150611713826115be565b91508190509695505050505050565b600061172e8288611364565b60148201915061173e8287611364565b60148201915061174e82866113d9565b915061175a828561169a565b60208201915061176a82846114de565b91506117758261164a565b91508190509695505050505050565b600061179082846114de565b915081905092915050565b60006117a682611532565b91506117b28284611455565b60208201915081905092915050565b60006020820190506117d66000830184611355565b92915050565b60006080820190506117f16000830187611355565b6117fe6020830186611355565b61180b604083018561167c565b818103606083015261181d818461146c565b905095945050505050565b60006040820190508181036000830152611842818561137b565b9050818103602083015261185681846114a5565b90509392505050565b60006020820190506118746000830184611437565b92915050565b600060808201905061188f6000830187611446565b61189c60208301866116b1565b6118a96040830185611446565b6118b66060830184611446565b95945050505050565b600060208201905081810360008301526118d88161150f565b9050919050565b600060208201905081810360008301526118f881611555565b9050919050565b6000602082019050818103600083015261191881611578565b9050919050565b600060208201905081810360008301526119388161159b565b9050919050565b60006020820190508181036000830152611958816115e1565b9050919050565b6000602082019050818103600083015261197881611604565b9050919050565b6000602082019050818103600083015261199881611627565b9050919050565b60006119a96119ba565b90506119b58282611b7a565b919050565b6000604051905090565b600067ffffffffffffffff8211156119df576119de611c5b565b5b602082029050602081019050919050565b600067ffffffffffffffff821115611a0b57611a0a611c5b565b5b611a1482611c8a565b9050602081019050919050565b600067ffffffffffffffff821115611a3c57611a3b611c5b565b5b611a4582611c8a565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000611ae482611b01565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015611b65578082015181840152602081019050611b4a565b83811115611b74576000848401525b50505050565b611b8382611c8a565b810181811067ffffffffffffffff82111715611ba257611ba1611c5b565b5b80604052505050565b6000611bb682611b21565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611be957611be8611c2c565b5b600182019050919050565b6000611bff82611c10565b9050919050565b6000819050919050565b6000611c1b82611c9b565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f496e76616c696420686173682100000000000000000000000000000000000000600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2073756368207374616b696e67207265636f726421000000000000000000600082015250565b7f496e76616c6964207369676e6174757265210000000000000000000000000000600082015250565b7f7374616b655f3732314100000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c6964207369676e6174757265206c656e6774682100000000000000600082015250565b7f4e6f6e636520616c726561647920657869737421000000000000000000000000600082015250565b7f72656465656d5f37323141000000000000000000000000000000000000000000600082015250565b611e7181611ad9565b8114611e7c57600080fd5b50565b611e8881611af7565b8114611e9357600080fd5b50565b611e9f81611b21565b8114611eaa57600080fd5b5056fea264697066735822122056f0e42c7363993e5d63a45bce9475e3e3e98840ffa570b5c385e2a1f8c86e4664736f6c63430008040033
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.