Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 165 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 15808228 | 817 days ago | IN | 0 ETH | 0.00041098 | ||||
Bid | 15807662 | 817 days ago | IN | 10 ETH | 0.00057049 | ||||
Bid | 15807660 | 817 days ago | IN | 0.5 ETH | 0.00062918 | ||||
Bid | 15807648 | 817 days ago | IN | 30 ETH | 0.00065619 | ||||
Bid | 15807626 | 817 days ago | IN | 12 ETH | 0.00062292 | ||||
Bid | 15807621 | 817 days ago | IN | 207.9 ETH | 0.0012452 | ||||
Bid | 15807614 | 817 days ago | IN | 207.66 ETH | 0.00127154 | ||||
Bid | 15807590 | 817 days ago | IN | 9 ETH | 0.00060273 | ||||
Bid | 15807579 | 817 days ago | IN | 13 ETH | 0.00064439 | ||||
Bid | 15807578 | 817 days ago | IN | 12.12 ETH | 0.00062379 | ||||
Bid | 15807572 | 817 days ago | IN | 30.58 ETH | 0.00065326 | ||||
Bid | 15807567 | 817 days ago | IN | 30 ETH | 0.00064498 | ||||
Bid | 15807564 | 817 days ago | IN | 3 ETH | 0.00071864 | ||||
Bid | 15807556 | 817 days ago | IN | 10 ETH | 0.00065035 | ||||
Bid | 15807550 | 817 days ago | IN | 188.78 ETH | 0.0014667 | ||||
Bid | 15807546 | 817 days ago | IN | 49.42 ETH | 0.00074933 | ||||
Bid | 15807533 | 817 days ago | IN | 10 ETH | 0.00057094 | ||||
Bid | 15807528 | 817 days ago | IN | 4 ETH | 0.00061984 | ||||
Bid | 15807522 | 817 days ago | IN | 186 ETH | 0.00133886 | ||||
Bid | 15807520 | 817 days ago | IN | 20 ETH | 0.00053928 | ||||
Bid | 15807520 | 817 days ago | IN | 30 ETH | 0.00058524 | ||||
Bid | 15807485 | 817 days ago | IN | 3.19 ETH | 0.00069304 | ||||
Bid | 15807484 | 817 days ago | IN | 30 ETH | 0.00062409 | ||||
Bid | 15807474 | 817 days ago | IN | 5 ETH | 0.00065257 | ||||
Bid | 15807466 | 817 days ago | IN | 230 ETH | 0.0014313 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
15808228 | 817 days ago | 1,901.06 ETH | ||||
15807621 | 817 days ago | 189 ETH | ||||
15807614 | 817 days ago | 188.78 ETH | ||||
15807550 | 817 days ago | 171.61 ETH | ||||
15807522 | 817 days ago | 169.06 ETH | ||||
15807466 | 817 days ago | 165 ETH | ||||
15807456 | 817 days ago | 156 ETH | ||||
15807435 | 817 days ago | 153.69 ETH | ||||
15807400 | 817 days ago | 150 ETH | ||||
15807396 | 817 days ago | 145 ETH | ||||
15807393 | 817 days ago | 140 ETH | ||||
15807386 | 817 days ago | 139.71 ETH | ||||
15807377 | 817 days ago | 132 ETH | ||||
15807372 | 817 days ago | 130.69 ETH | ||||
15807361 | 817 days ago | 130 ETH | ||||
15807351 | 817 days ago | 128.3 ETH | ||||
15807340 | 817 days ago | 127 ETH | ||||
15807337 | 817 days ago | 125.5 ETH | ||||
15807333 | 817 days ago | 120 ETH | ||||
15807325 | 817 days ago | 118 ETH | ||||
15807316 | 817 days ago | 117 ETH | ||||
15807299 | 817 days ago | 115 ETH | ||||
15806858 | 817 days ago | 111.57 ETH | ||||
15804536 | 817 days ago | 101.42 ETH | ||||
15804460 | 818 days ago | 100 ETH |
Loading...
Loading
Contract Name:
AuctionHouse
Compiler Version
v0.8.16+commit.07a7930e
Optimization Enabled:
Yes with 500 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./SkateboardTicket.sol"; error AuctionSettled(); error AuctionNotInitialized(); error AuctionNotLive(); error ReservePriceNotMet(); error IncrementalPriceNotMet(); error BidsNotSorted(); error NonExistentBid(); error AuctionStillLive(); error WithdrawFailed(); error BidIncrementTooLow(); error NotEOA(); contract AuctionHouse is Ownable, ReentrancyGuard { struct Bid { address bidder; uint192 amount; uint64 bidTime; } struct BidIndex { uint8 index; bool isSet; } event NewBid(address bidder, uint256 value); event BidIncreased(address bidder, uint256 oldValue, uint256 increment); event AuctionExtended(); // The max number of top bids the auction will accept uint256 public constant MAX_NUM_BIDS = 8; // The token contract to mint from SkateboardTicket public st; // The minimum amount of time left in an auction after a new bid is created uint256 public timeBuffer; // The minimum price accepted in an auction uint256 public reservePrice; // The minimum percentage difference between the last bid amount and the current bid uint8 public minBidIncrementPercentage; // The minimum amount a user needs to submit for a stacked bid uint256 public minStackedBidIncrement; // The start time of the auction uint256 public startTime; // The end time of the auction uint256 public endTime; // Whether or not the auction has settled. bool public auctionSettled; // The current highest bids made in the auction Bid[MAX_NUM_BIDS] public activeBids; // The mapping between an address and its active bid. The isSet flag differentiates the default // uint value 0 from an actual 0 value. mapping(address => BidIndex) public bidIndexes; constructor( SkateboardTicket _st, uint256 _timeBuffer, uint256 _reservePrice, uint8 _minBidIncrementPercentage, uint256 _minStackedBidIncrement, uint256 _startTime, uint256 _endTime ) { st = _st; timeBuffer = _timeBuffer; reservePrice = _reservePrice; minBidIncrementPercentage = _minBidIncrementPercentage; minStackedBidIncrement = _minStackedBidIncrement; startTime = _startTime; endTime = _endTime; } modifier onlyEOA() { if (tx.origin != msg.sender) { revert NotEOA(); } _; } /** * @notice Handle users' bids * @dev Bids must be made while the auction is live. Bids must meet a minimum reserve price. * * The first 8 bids made will be accepted as valid. Subsequent bids must be a percentage * higher than the lowest of the 8 active bids. When a low bid is replaced, the ETH will * be refunded back to the original bidder. * * If a valid bid comes in within the last `timeBuffer` seconds, the auction will be extended * for another `timeBuffer` seconds. This will continue until no new active bids come in. * * If a wallet makes a bid while it still has an active bid, the second bid will * stack on top of the first bid. If the second bid doesn't meet the `minStackedBidIncrement` * threshold, an error will be thrown. A wallet will only have one active bid at at time. */ function bid() public payable nonReentrant onlyEOA { if (auctionSettled) { revert AuctionSettled(); } if (startTime == 0 || endTime == 0) { revert AuctionNotInitialized(); } if (block.timestamp < startTime || block.timestamp > endTime) { revert AuctionNotLive(); } BidIndex memory existingIndex = bidIndexes[msg.sender]; if (existingIndex.isSet) { // Case when the user already has an active bid if (msg.value < minStackedBidIncrement || msg.value == 0) { revert BidIncrementTooLow(); } uint192 oldValue = activeBids[existingIndex.index].amount; unchecked { activeBids[existingIndex.index].amount = oldValue + uint192(msg.value); } activeBids[existingIndex.index].bidTime = uint64(block.timestamp); emit BidIncreased(msg.sender, oldValue, msg.value); } else { if (msg.value < reservePrice || msg.value == 0) { revert ReservePriceNotMet(); } uint8 lowestBidIndex = getBidIndexToUpdate(); uint256 lowestBidAmount = activeBids[lowestBidIndex].amount; address lowestBidder = activeBids[lowestBidIndex].bidder; unchecked { if ( msg.value < lowestBidAmount + (lowestBidAmount * minBidIncrementPercentage) / 100 ) { revert IncrementalPriceNotMet(); } } // Refund lowest bidder and remove bidIndexes entry if (lowestBidder != address(0)) { delete bidIndexes[lowestBidder]; _transferETH(lowestBidder, lowestBidAmount); } activeBids[lowestBidIndex] = Bid({ bidder: msg.sender, amount: uint192(msg.value), bidTime: uint64(block.timestamp) }); bidIndexes[msg.sender] = BidIndex({ index: lowestBidIndex, isSet: true }); emit NewBid(msg.sender, msg.value); } // Extend the auction if the bid was received within `timeBuffer` of the auction end time if (endTime - block.timestamp < timeBuffer) { unchecked { endTime = block.timestamp + timeBuffer; } emit AuctionExtended(); } } /** * @notice Gets the index of the entry in activeBids to update * @dev The index to return will be decided by the following rules: * If there are less than MAX_NUM_BIDS bids, the index of the first empty slot is returned. * If there are MAX_NUM_BIDS or more bids, the index of the lowest value bid is returned. If * there is a tie, the most recent bid with the low amount will be returned. If there is a tie * among bidTimes, the highest index is chosen. */ function getBidIndexToUpdate() public view returns (uint8) { uint256 minAmount = activeBids[0].amount; // If the first value is 0 then we can assume that no bids have been submitted if (minAmount == 0) { return 0; } uint8 minIndex = 0; uint64 minBidTime = activeBids[0].bidTime; for (uint8 i = 1; i < MAX_NUM_BIDS; ) { uint256 bidAmount = activeBids[i].amount; uint64 bidTime = activeBids[i].bidTime; // A zero bidAmount means the slot is empty because we enforce non-zero bid amounts if (bidAmount == 0) { return i; } else if ( bidAmount < minAmount || (bidAmount == minAmount && bidTime >= minBidTime) ) { minAmount = bidAmount; minIndex = i; minBidTime = bidTime; } unchecked { ++i; } } return minIndex; } /** * @notice Get all active bids. * @dev Useful for ethers client to get the entire array at once. */ function getAllActiveBids() external view returns (Bid[MAX_NUM_BIDS] memory) { return activeBids; } /** * @notice Settles the auction and mints a skateboard ticket NFT to each winner. * @dev Bids will be sorted in descending order off-chain due to constraints with * sorting structs on-chain via a field on the struct, however we will validate the * input on-chain before minting the NFTs. The input bids must be in descending order * by amount and all input bids must correspond to a bid in the `activeBids` mapping. * @dev Duplicate bids can be passed in to circumvent the validation logic. We are ok * with this loophole since this function is ownerOnly. * @dev Settlement is only possible once the auction is over. */ function settleAuction(Bid[MAX_NUM_BIDS] calldata sortedBids) external onlyOwner nonReentrant { if (block.timestamp <= endTime) { revert AuctionStillLive(); } if (auctionSettled) { revert AuctionSettled(); } // Validate the input bids for (uint256 i = 0; i < MAX_NUM_BIDS; ) { Bid memory inputBid = sortedBids[i]; BidIndex memory bidIndex = bidIndexes[inputBid.bidder]; if ( !bidIndex.isSet || activeBids[bidIndex.index].bidder != inputBid.bidder || activeBids[bidIndex.index].amount != inputBid.amount || activeBids[bidIndex.index].bidTime != inputBid.bidTime ) { revert NonExistentBid(); } // The zero-th index has nothing to compare against if (i != 0) { Bid memory prevBid = sortedBids[i - 1]; if (inputBid.amount > prevBid.amount) { revert BidsNotSorted(); } } unchecked { ++i; } } // Mint tickets to auction winners for (uint256 i; i < MAX_NUM_BIDS; ) { st.mint(sortedBids[i].bidder); unchecked { ++i; } } auctionSettled = true; } /** * @notice Transfers ETH to a specified address. * @dev This function can only be called internally. */ function _transferETH(address to, uint256 value) internal returns (bool) { (bool success, ) = to.call{value: value, gas: 30000}(new bytes(0)); return success; } /** * @notice Sets the start and end time of the auction. * @dev Only callable by the owner. */ function setAuctionTimes(uint256 _startTime, uint256 _endTime) external onlyOwner { startTime = _startTime; endTime = _endTime; } /** * @notice Set the auction time buffer. * @dev Only callable by the owner. */ function setTimeBuffer(uint256 _timeBuffer) external onlyOwner { timeBuffer = _timeBuffer; } /** * @notice Set the auction reserve price. * @dev Only callable by the owner. */ function setReservePrice(uint256 _reservePrice) external onlyOwner { reservePrice = _reservePrice; } /** * @notice Set the auction minimum bid increment percentage. * @dev Only callable by the owner. */ function setMinBidIncrementPercentage(uint8 _minBidIncrementPercentage) external onlyOwner { minBidIncrementPercentage = _minBidIncrementPercentage; } /** * @notice Set the auction replacing bid buffer amount. * @dev Only callable by the owner. */ function setMinReplacementIncrease(uint256 _minStackedBidIncrement) external onlyOwner { minStackedBidIncrement = _minStackedBidIncrement; } /** * @notice Withdraws the contract value to the owner */ function withdraw() external onlyOwner { bool success = _transferETH(msg.sender, address(this).balance); if (!success) { revert WithdrawFailed(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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 pragma solidity ^0.8.13; import "@openzeppelin/contracts/access/Ownable.sol"; import "erc721a/contracts/ERC721A.sol"; error NotAuctionHouseOrOwner(); error MaxSupplyReached(); error AuctionHouseNotSet(); error InvalidTokenOwner(); contract SkateboardTicket is Ownable, ERC721A { uint256 public constant MAX_SUPPLY = 9; // The auction house contract that will do all the minting address public auctionHouse; string private _baseTokenURI; mapping(uint256 => address) public redeemedTickets; constructor() ERC721A("SkateboardTicket", "SKATETICKET") {} /** * @notice Only allow the auction house contract or owner to mint. * Owner minting is needed for the final skateboard token which is * not part of the auction. */ modifier onlyAuctionHouseOrOwner() { if (auctionHouse == address(0)) revert AuctionHouseNotSet(); if (msg.sender != auctionHouse && msg.sender != owner()) { revert NotAuctionHouseOrOwner(); } _; } function mint(address to) public onlyAuctionHouseOrOwner { if (_totalMinted() >= MAX_SUPPLY) revert MaxSupplyReached(); _mint(to, 1); } function redeemTickets(uint256[] calldata tokenIds) external { for (uint256 i = 0; i < tokenIds.length; ) { uint256 tokenId = tokenIds[i]; if (ownerOf(tokenId) != msg.sender) { revert InvalidTokenOwner(); } _burn(tokenId); redeemedTickets[tokenId] = msg.sender; unchecked { ++i; } } } /** * @notice Get all redeemed ticket addresses. * @dev Useful for ethers client to get the entire array at once. */ function getAllRedeemedTickets() external view returns (address[MAX_SUPPLY] memory) { return [ redeemedTickets[0], redeemedTickets[1], redeemedTickets[2], redeemedTickets[3], redeemedTickets[4], redeemedTickets[5], redeemedTickets[6], redeemedTickets[7], redeemedTickets[8] ]; } function setAuctionHouse(address _auctionHouse) external onlyOwner { auctionHouse = _auctionHouse; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } }
// 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; } }
// 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); }
{ "optimizer": { "enabled": true, "runs": 500 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract SkateboardTicket","name":"_st","type":"address"},{"internalType":"uint256","name":"_timeBuffer","type":"uint256"},{"internalType":"uint256","name":"_reservePrice","type":"uint256"},{"internalType":"uint8","name":"_minBidIncrementPercentage","type":"uint8"},{"internalType":"uint256","name":"_minStackedBidIncrement","type":"uint256"},{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AuctionNotInitialized","type":"error"},{"inputs":[],"name":"AuctionNotLive","type":"error"},{"inputs":[],"name":"AuctionSettled","type":"error"},{"inputs":[],"name":"AuctionStillLive","type":"error"},{"inputs":[],"name":"BidIncrementTooLow","type":"error"},{"inputs":[],"name":"BidsNotSorted","type":"error"},{"inputs":[],"name":"IncrementalPriceNotMet","type":"error"},{"inputs":[],"name":"NonExistentBid","type":"error"},{"inputs":[],"name":"NotEOA","type":"error"},{"inputs":[],"name":"ReservePriceNotMet","type":"error"},{"inputs":[],"name":"WithdrawFailed","type":"error"},{"anonymous":false,"inputs":[],"name":"AuctionExtended","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"bidder","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"increment","type":"uint256"}],"name":"BidIncreased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"bidder","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"NewBid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"MAX_NUM_BIDS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"activeBids","outputs":[{"internalType":"address","name":"bidder","type":"address"},{"internalType":"uint192","name":"amount","type":"uint192"},{"internalType":"uint64","name":"bidTime","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auctionSettled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bid","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bidIndexes","outputs":[{"internalType":"uint8","name":"index","type":"uint8"},{"internalType":"bool","name":"isSet","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllActiveBids","outputs":[{"components":[{"internalType":"address","name":"bidder","type":"address"},{"internalType":"uint192","name":"amount","type":"uint192"},{"internalType":"uint64","name":"bidTime","type":"uint64"}],"internalType":"struct AuctionHouse.Bid[8]","name":"","type":"tuple[8]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBidIndexToUpdate","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minBidIncrementPercentage","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minStackedBidIncrement","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"}],"name":"setAuctionTimes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_minBidIncrementPercentage","type":"uint8"}],"name":"setMinBidIncrementPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minStackedBidIncrement","type":"uint256"}],"name":"setMinReplacementIncrease","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reservePrice","type":"uint256"}],"name":"setReservePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_timeBuffer","type":"uint256"}],"name":"setTimeBuffer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"bidder","type":"address"},{"internalType":"uint192","name":"amount","type":"uint192"},{"internalType":"uint64","name":"bidTime","type":"uint64"}],"internalType":"struct AuctionHouse.Bid[8]","name":"sortedBids","type":"tuple[8]"}],"name":"settleAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"st","outputs":[{"internalType":"contract SkateboardTicket","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timeBuffer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5060405161174a38038061174a83398101604081905261002f916100db565b6100383361008b565b60018055600280546001600160a01b0319166001600160a01b0398909816979097179096556003949094556004929092556005805460ff191660ff92909216919091179055600655600755600855610158565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080600080600080600060e0888a0312156100f657600080fd5b87516001600160a01b038116811461010d57600080fd5b809750506020880151955060408801519450606088015160ff8116811461013357600080fd5b809450506080880151925060a0880151915060c0880151905092959891949750929550565b6115e3806101676000396000f3fe60806040526004361061018b5760003560e01c806378e97925116100d6578063ce9c7c0d1161007f578063db2e1eed11610059578063db2e1eed1461047a578063ec91f2a414610490578063f2fde38b146104a657600080fd5b8063ce9c7c0d146103de578063d3e761a4146103fe578063d8f81b351461042857600080fd5b8063b1fdec6a116100b0578063b1fdec6a14610388578063b296024d146103af578063ba980f32146103c957600080fd5b806378e97925146103345780638da5cb5b1461034a5780639f1b2fc11461036857600080fd5b80633ccfd60b116101385780637120334b116101125780637120334b146102c7578063715018a6146102e757806373f0cc2d146102fc57600080fd5b80633ccfd60b1461023b57806358b8bad614610250578063672b07741461027057600080fd5b8063294bc0e711610169578063294bc0e7146101e35780633197cbb61461020557806336ebdb381461021b57600080fd5b806309f981af1461019057806316617c0a146101b95780631998aeef146101db575b600080fd5b34801561019c57600080fd5b506101a660065481565b6040519081526020015b60405180910390f35b3480156101c557600080fd5b506101d96101d4366004611362565b6104c6565b005b6101d9610876565b3480156101ef57600080fd5b506101f8610d55565b6040516101b0919061138d565b34801561021157600080fd5b506101a660085481565b34801561022757600080fd5b506101d96102363660046113f4565b610dde565b34801561024757600080fd5b506101d9610e3c565b34801561025c57600080fd5b506101d961026b36600461141e565b610eb3565b34801561027c57600080fd5b5061029061028b36600461141e565b610f00565b604080516001600160a01b0390941684526001600160c01b03909216602084015267ffffffffffffffff16908201526060016101b0565b3480156102d357600080fd5b506101d96102e236600461141e565b610f48565b3480156102f357600080fd5b506101d9610f95565b34801561030857600080fd5b5060025461031c906001600160a01b031681565b6040516001600160a01b0390911681526020016101b0565b34801561034057600080fd5b506101a660075481565b34801561035657600080fd5b506000546001600160a01b031661031c565b34801561037457600080fd5b506101d9610383366004611437565b610fe9565b34801561039457600080fd5b5061039d61103c565b60405160ff90911681526020016101b0565b3480156103bb57600080fd5b5060055461039d9060ff1681565b3480156103d557600080fd5b506101a6600881565b3480156103ea57600080fd5b506101d96103f936600461141e565b611142565b34801561040a57600080fd5b506009546104189060ff1681565b60405190151581526020016101b0565b34801561043457600080fd5b50610461610443366004611475565b601a6020526000908152604090205460ff8082169161010090041682565b6040805160ff90931683529015156020830152016101b0565b34801561048657600080fd5b506101a660045481565b34801561049c57600080fd5b506101a660035481565b3480156104b257600080fd5b506101d96104c1366004611475565b61118f565b6000546001600160a01b031633146105135760405162461bcd60e51b8152602060048201819052602482015260008051602061158e83398151915260448201526064015b60405180910390fd5b6002600154036105655760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050a565b6002600155600854421161058c5760405163139480c760e31b815260040160405180910390fd5b60095460ff16156105b057604051637d39d27f60e11b815260040160405180910390fd5b60005b600881101561079e5760008282600881106105d0576105d0611490565b606002018036038101906105e491906114a6565b80516001600160a01b03166000908152601a602090815260409182902082518084019093525460ff808216845261010090910416158015918301919091529192509080610665575081600001516001600160a01b0316600a826000015160ff166008811061065457610654611490565b60020201546001600160a01b031614155b806106a7575081602001516001600160c01b0316600a826000015160ff166008811061069357610693611490565b60020201600101546001600160c01b031614155b806106ff5750816040015167ffffffffffffffff16600a826000015160ff16600881106106d6576106d6611490565b6002020160010160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1614155b1561071d57604051632b0e0d1760e01b815260040160405180910390fd5b82156107945760008461073160018661153d565b6008811061074157610741611490565b6060020180360381019061075591906114a6565b905080602001516001600160c01b031683602001516001600160c01b0316111561079257604051630b149fe560e01b815260040160405180910390fd5b505b50506001016105b3565b5060005b6008811015610860576002546001600160a01b0316636a6278428383600881106107ce576107ce611490565b6060020160000160208101906107e49190611475565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b15801561083d57600080fd5b505af1158015610851573d6000803e3d6000fd5b505050508060010190506107a2565b50506009805460ff191660019081179091558055565b6002600154036108c85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050a565b60026001553233146108ed57604051635d04968b60e11b815260040160405180910390fd5b60095460ff161561091157604051637d39d27f60e11b815260040160405180910390fd5b60075415806109205750600854155b1561093e576040516301a7194b60e51b815260040160405180910390fd5b60075442108061094f575060085442115b1561096d576040516358fd8d1160e01b815260040160405180910390fd5b336000908152601a602090815260409182902082518084019093525460ff80821684526101009091041615801591830191909152610ae2576006543410806109b3575034155b156109d157604051630ec4b5eb60e31b815260040160405180910390fd5b6000600a826000015160ff16600881106109ed576109ed611490565b6002020160010160009054906101000a90046001600160c01b03169050348101600a836000015160ff1660088110610a2757610a27611490565b6002020160010160006101000a8154816001600160c01b0302191690836001600160c01b0316021790555042600a836000015160ff1660088110610a6d57610a6d611490565b6002020160010180546001600160c01b03908116600160c01b67ffffffffffffffff94909416939093029290921790556040805133815291831660208301523482820152517fabdd90c2558a13a111c790b3e52da9a52768834a1139e2993b68b6db09c071c59181900360600190a150610d05565b600454341080610af0575034155b15610b0e576040516379bb5b6160e01b815260040160405180910390fd5b6000610b1861103c565b90506000600a8260ff1660088110610b3257610b32611490565b60020201600101546001600160c01b031690506000600a60ff841660088110610b5d57610b5d611490565b60020201546005546001600160a01b03909116915060649060ff168302048201341015610b9d57604051632b5bd98760e11b815260040160405180910390fd5b6001600160a01b03811615610bd9576001600160a01b0381166000908152601a60205260409020805461ffff19169055610bd78183611245565b505b6040518060600160405280336001600160a01b03168152602001346001600160c01b031681526020014267ffffffffffffffff16815250600a8460ff1660088110610c2657610c26611490565b82516002919091029190910180546001600160a01b0390921673ffffffffffffffffffffffffffffffffffffffff1990921691909117815560208083015160409384015167ffffffffffffffff16600160c01b026001600160c01b03909116176001928301558251808401845260ff8781168252818301938452336000818152601a855286902092518354955115156101000261ffff19909616921691909117939093179055825191825234908201527fdd0b6c6a77960e2066c96171b4d7ac9e8b4c184011f38544afa36a5bb63ec59f910160405180910390a15050505b60035442600854610d16919061153d565b1015610d4e5760035442016008556040517fab9c9a8aeadcc64e09e3ec376616fdcd4dd4a5e728535b290e272c2f1792056f90600090a15b5060018055565b610d5d611322565b604080516101008101909152600a60086000835b82821015610dd5576040805160608101825260028402860180546001600160a01b031682526001908101546001600160c01b038116602080850191909152600160c01b90910467ffffffffffffffff16938301939093529083529092019101610d71565b50505050905090565b6000546001600160a01b03163314610e265760405162461bcd60e51b8152602060048201819052602482015260008051602061158e833981519152604482015260640161050a565b6005805460ff191660ff92909216919091179055565b6000546001600160a01b03163314610e845760405162461bcd60e51b8152602060048201819052602482015260008051602061158e833981519152604482015260640161050a565b6000610e903347611245565b905080610eb057604051631d42c86760e21b815260040160405180910390fd5b50565b6000546001600160a01b03163314610efb5760405162461bcd60e51b8152602060048201819052602482015260008051602061158e833981519152604482015260640161050a565b600655565b600a8160088110610f1057600080fd5b6002020180546001909101546001600160a01b0390911691506001600160c01b03811690600160c01b900467ffffffffffffffff1683565b6000546001600160a01b03163314610f905760405162461bcd60e51b8152602060048201819052602482015260008051602061158e833981519152604482015260640161050a565b600355565b6000546001600160a01b03163314610fdd5760405162461bcd60e51b8152602060048201819052602482015260008051602061158e833981519152604482015260640161050a565b610fe760006112c5565b565b6000546001600160a01b031633146110315760405162461bcd60e51b8152602060048201819052602482015260008051602061158e833981519152604482015260640161050a565b600791909155600855565b600b546000906001600160c01b031680820361105a57600091505090565b600b54600090600160c01b900467ffffffffffffffff1660015b60088160ff161015611139576000600a8260ff166008811061109857611098611490565b60020201600101546001600160c01b031690506000600a60ff8416600881106110c3576110c3611490565b6002020160010160189054906101000a900467ffffffffffffffff169050816000036110f457509095945050505050565b858210806111205750858214801561112057508367ffffffffffffffff168167ffffffffffffffff1610155b1561112f578195508294508093505b5050600101611074565b50909392505050565b6000546001600160a01b0316331461118a5760405162461bcd60e51b8152602060048201819052602482015260008051602061158e833981519152604482015260640161050a565b600455565b6000546001600160a01b031633146111d75760405162461bcd60e51b8152602060048201819052602482015260008051602061158e833981519152604482015260640161050a565b6001600160a01b03811661123c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161050a565b610eb0816112c5565b6040805160008082526020820190925281906001600160a01b03851690617530908590604051611275919061155e565b600060405180830381858888f193505050503d80600081146112b3576040519150601f19603f3d011682016040523d82523d6000602084013e6112b8565b606091505b5090925050505b92915050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040518061010001604052806008905b60408051606081018252600080825260208083018290529282015282526000199092019101816113325790505090565b600061030080838503121561137657600080fd5b83818401111561138557600080fd5b509092915050565b6103008101818360005b60088110156113eb57815180516001600160a01b031684526020808201516001600160c01b03168186015260409182015167ffffffffffffffff169185019190915260609093019290910190600101611397565b50505092915050565b60006020828403121561140657600080fd5b813560ff8116811461141757600080fd5b9392505050565b60006020828403121561143057600080fd5b5035919050565b6000806040838503121561144a57600080fd5b50508035926020909101359150565b80356001600160a01b038116811461147057600080fd5b919050565b60006020828403121561148757600080fd5b61141782611459565b634e487b7160e01b600052603260045260246000fd5b6000606082840312156114b857600080fd5b6040516060810167ffffffffffffffff82821081831117156114ea57634e487b7160e01b600052604160045260246000fd5b816040526114f785611459565b8352602085013591506001600160c01b038216821461151557600080fd5b81602084015260408501359150808216821461153057600080fd5b5060408201529392505050565b818103818111156112bf57634e487b7160e01b600052601160045260246000fd5b6000825160005b8181101561157f5760208186018101518583015201611565565b50600092019182525091905056fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220a921ec2aa9daa4e705258810270fd731dacfe37c603046bba2f4f2f105c3458d64736f6c63430008100033000000000000000000000000479e02b7102bf374de3b9dc3f53817d0db99d0e000000000000000000000000000000000000000000000000000000000000002580000000000000000000000000000000000000000000000000de0b6b3a7640000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000006f05b59d3b2000000000000000000000000000000000000000000000000000000000000635340900000000000000000000000000000000000000000000000000000000063549210
Deployed Bytecode
0x60806040526004361061018b5760003560e01c806378e97925116100d6578063ce9c7c0d1161007f578063db2e1eed11610059578063db2e1eed1461047a578063ec91f2a414610490578063f2fde38b146104a657600080fd5b8063ce9c7c0d146103de578063d3e761a4146103fe578063d8f81b351461042857600080fd5b8063b1fdec6a116100b0578063b1fdec6a14610388578063b296024d146103af578063ba980f32146103c957600080fd5b806378e97925146103345780638da5cb5b1461034a5780639f1b2fc11461036857600080fd5b80633ccfd60b116101385780637120334b116101125780637120334b146102c7578063715018a6146102e757806373f0cc2d146102fc57600080fd5b80633ccfd60b1461023b57806358b8bad614610250578063672b07741461027057600080fd5b8063294bc0e711610169578063294bc0e7146101e35780633197cbb61461020557806336ebdb381461021b57600080fd5b806309f981af1461019057806316617c0a146101b95780631998aeef146101db575b600080fd5b34801561019c57600080fd5b506101a660065481565b6040519081526020015b60405180910390f35b3480156101c557600080fd5b506101d96101d4366004611362565b6104c6565b005b6101d9610876565b3480156101ef57600080fd5b506101f8610d55565b6040516101b0919061138d565b34801561021157600080fd5b506101a660085481565b34801561022757600080fd5b506101d96102363660046113f4565b610dde565b34801561024757600080fd5b506101d9610e3c565b34801561025c57600080fd5b506101d961026b36600461141e565b610eb3565b34801561027c57600080fd5b5061029061028b36600461141e565b610f00565b604080516001600160a01b0390941684526001600160c01b03909216602084015267ffffffffffffffff16908201526060016101b0565b3480156102d357600080fd5b506101d96102e236600461141e565b610f48565b3480156102f357600080fd5b506101d9610f95565b34801561030857600080fd5b5060025461031c906001600160a01b031681565b6040516001600160a01b0390911681526020016101b0565b34801561034057600080fd5b506101a660075481565b34801561035657600080fd5b506000546001600160a01b031661031c565b34801561037457600080fd5b506101d9610383366004611437565b610fe9565b34801561039457600080fd5b5061039d61103c565b60405160ff90911681526020016101b0565b3480156103bb57600080fd5b5060055461039d9060ff1681565b3480156103d557600080fd5b506101a6600881565b3480156103ea57600080fd5b506101d96103f936600461141e565b611142565b34801561040a57600080fd5b506009546104189060ff1681565b60405190151581526020016101b0565b34801561043457600080fd5b50610461610443366004611475565b601a6020526000908152604090205460ff8082169161010090041682565b6040805160ff90931683529015156020830152016101b0565b34801561048657600080fd5b506101a660045481565b34801561049c57600080fd5b506101a660035481565b3480156104b257600080fd5b506101d96104c1366004611475565b61118f565b6000546001600160a01b031633146105135760405162461bcd60e51b8152602060048201819052602482015260008051602061158e83398151915260448201526064015b60405180910390fd5b6002600154036105655760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050a565b6002600155600854421161058c5760405163139480c760e31b815260040160405180910390fd5b60095460ff16156105b057604051637d39d27f60e11b815260040160405180910390fd5b60005b600881101561079e5760008282600881106105d0576105d0611490565b606002018036038101906105e491906114a6565b80516001600160a01b03166000908152601a602090815260409182902082518084019093525460ff808216845261010090910416158015918301919091529192509080610665575081600001516001600160a01b0316600a826000015160ff166008811061065457610654611490565b60020201546001600160a01b031614155b806106a7575081602001516001600160c01b0316600a826000015160ff166008811061069357610693611490565b60020201600101546001600160c01b031614155b806106ff5750816040015167ffffffffffffffff16600a826000015160ff16600881106106d6576106d6611490565b6002020160010160189054906101000a900467ffffffffffffffff1667ffffffffffffffff1614155b1561071d57604051632b0e0d1760e01b815260040160405180910390fd5b82156107945760008461073160018661153d565b6008811061074157610741611490565b6060020180360381019061075591906114a6565b905080602001516001600160c01b031683602001516001600160c01b0316111561079257604051630b149fe560e01b815260040160405180910390fd5b505b50506001016105b3565b5060005b6008811015610860576002546001600160a01b0316636a6278428383600881106107ce576107ce611490565b6060020160000160208101906107e49190611475565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b15801561083d57600080fd5b505af1158015610851573d6000803e3d6000fd5b505050508060010190506107a2565b50506009805460ff191660019081179091558055565b6002600154036108c85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050a565b60026001553233146108ed57604051635d04968b60e11b815260040160405180910390fd5b60095460ff161561091157604051637d39d27f60e11b815260040160405180910390fd5b60075415806109205750600854155b1561093e576040516301a7194b60e51b815260040160405180910390fd5b60075442108061094f575060085442115b1561096d576040516358fd8d1160e01b815260040160405180910390fd5b336000908152601a602090815260409182902082518084019093525460ff80821684526101009091041615801591830191909152610ae2576006543410806109b3575034155b156109d157604051630ec4b5eb60e31b815260040160405180910390fd5b6000600a826000015160ff16600881106109ed576109ed611490565b6002020160010160009054906101000a90046001600160c01b03169050348101600a836000015160ff1660088110610a2757610a27611490565b6002020160010160006101000a8154816001600160c01b0302191690836001600160c01b0316021790555042600a836000015160ff1660088110610a6d57610a6d611490565b6002020160010180546001600160c01b03908116600160c01b67ffffffffffffffff94909416939093029290921790556040805133815291831660208301523482820152517fabdd90c2558a13a111c790b3e52da9a52768834a1139e2993b68b6db09c071c59181900360600190a150610d05565b600454341080610af0575034155b15610b0e576040516379bb5b6160e01b815260040160405180910390fd5b6000610b1861103c565b90506000600a8260ff1660088110610b3257610b32611490565b60020201600101546001600160c01b031690506000600a60ff841660088110610b5d57610b5d611490565b60020201546005546001600160a01b03909116915060649060ff168302048201341015610b9d57604051632b5bd98760e11b815260040160405180910390fd5b6001600160a01b03811615610bd9576001600160a01b0381166000908152601a60205260409020805461ffff19169055610bd78183611245565b505b6040518060600160405280336001600160a01b03168152602001346001600160c01b031681526020014267ffffffffffffffff16815250600a8460ff1660088110610c2657610c26611490565b82516002919091029190910180546001600160a01b0390921673ffffffffffffffffffffffffffffffffffffffff1990921691909117815560208083015160409384015167ffffffffffffffff16600160c01b026001600160c01b03909116176001928301558251808401845260ff8781168252818301938452336000818152601a855286902092518354955115156101000261ffff19909616921691909117939093179055825191825234908201527fdd0b6c6a77960e2066c96171b4d7ac9e8b4c184011f38544afa36a5bb63ec59f910160405180910390a15050505b60035442600854610d16919061153d565b1015610d4e5760035442016008556040517fab9c9a8aeadcc64e09e3ec376616fdcd4dd4a5e728535b290e272c2f1792056f90600090a15b5060018055565b610d5d611322565b604080516101008101909152600a60086000835b82821015610dd5576040805160608101825260028402860180546001600160a01b031682526001908101546001600160c01b038116602080850191909152600160c01b90910467ffffffffffffffff16938301939093529083529092019101610d71565b50505050905090565b6000546001600160a01b03163314610e265760405162461bcd60e51b8152602060048201819052602482015260008051602061158e833981519152604482015260640161050a565b6005805460ff191660ff92909216919091179055565b6000546001600160a01b03163314610e845760405162461bcd60e51b8152602060048201819052602482015260008051602061158e833981519152604482015260640161050a565b6000610e903347611245565b905080610eb057604051631d42c86760e21b815260040160405180910390fd5b50565b6000546001600160a01b03163314610efb5760405162461bcd60e51b8152602060048201819052602482015260008051602061158e833981519152604482015260640161050a565b600655565b600a8160088110610f1057600080fd5b6002020180546001909101546001600160a01b0390911691506001600160c01b03811690600160c01b900467ffffffffffffffff1683565b6000546001600160a01b03163314610f905760405162461bcd60e51b8152602060048201819052602482015260008051602061158e833981519152604482015260640161050a565b600355565b6000546001600160a01b03163314610fdd5760405162461bcd60e51b8152602060048201819052602482015260008051602061158e833981519152604482015260640161050a565b610fe760006112c5565b565b6000546001600160a01b031633146110315760405162461bcd60e51b8152602060048201819052602482015260008051602061158e833981519152604482015260640161050a565b600791909155600855565b600b546000906001600160c01b031680820361105a57600091505090565b600b54600090600160c01b900467ffffffffffffffff1660015b60088160ff161015611139576000600a8260ff166008811061109857611098611490565b60020201600101546001600160c01b031690506000600a60ff8416600881106110c3576110c3611490565b6002020160010160189054906101000a900467ffffffffffffffff169050816000036110f457509095945050505050565b858210806111205750858214801561112057508367ffffffffffffffff168167ffffffffffffffff1610155b1561112f578195508294508093505b5050600101611074565b50909392505050565b6000546001600160a01b0316331461118a5760405162461bcd60e51b8152602060048201819052602482015260008051602061158e833981519152604482015260640161050a565b600455565b6000546001600160a01b031633146111d75760405162461bcd60e51b8152602060048201819052602482015260008051602061158e833981519152604482015260640161050a565b6001600160a01b03811661123c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161050a565b610eb0816112c5565b6040805160008082526020820190925281906001600160a01b03851690617530908590604051611275919061155e565b600060405180830381858888f193505050503d80600081146112b3576040519150601f19603f3d011682016040523d82523d6000602084013e6112b8565b606091505b5090925050505b92915050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040518061010001604052806008905b60408051606081018252600080825260208083018290529282015282526000199092019101816113325790505090565b600061030080838503121561137657600080fd5b83818401111561138557600080fd5b509092915050565b6103008101818360005b60088110156113eb57815180516001600160a01b031684526020808201516001600160c01b03168186015260409182015167ffffffffffffffff169185019190915260609093019290910190600101611397565b50505092915050565b60006020828403121561140657600080fd5b813560ff8116811461141757600080fd5b9392505050565b60006020828403121561143057600080fd5b5035919050565b6000806040838503121561144a57600080fd5b50508035926020909101359150565b80356001600160a01b038116811461147057600080fd5b919050565b60006020828403121561148757600080fd5b61141782611459565b634e487b7160e01b600052603260045260246000fd5b6000606082840312156114b857600080fd5b6040516060810167ffffffffffffffff82821081831117156114ea57634e487b7160e01b600052604160045260246000fd5b816040526114f785611459565b8352602085013591506001600160c01b038216821461151557600080fd5b81602084015260408501359150808216821461153057600080fd5b5060408201529392505050565b818103818111156112bf57634e487b7160e01b600052601160045260246000fd5b6000825160005b8181101561157f5760208186018101518583015201611565565b50600092019182525091905056fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220a921ec2aa9daa4e705258810270fd731dacfe37c603046bba2f4f2f105c3458d64736f6c63430008100033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000479e02b7102bf374de3b9dc3f53817d0db99d0e000000000000000000000000000000000000000000000000000000000000002580000000000000000000000000000000000000000000000000de0b6b3a7640000000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000006f05b59d3b2000000000000000000000000000000000000000000000000000000000000635340900000000000000000000000000000000000000000000000000000000063549210
-----Decoded View---------------
Arg [0] : _st (address): 0x479e02b7102Bf374DE3B9dc3f53817d0Db99d0e0
Arg [1] : _timeBuffer (uint256): 600
Arg [2] : _reservePrice (uint256): 1000000000000000000
Arg [3] : _minBidIncrementPercentage (uint8): 10
Arg [4] : _minStackedBidIncrement (uint256): 500000000000000000
Arg [5] : _startTime (uint256): 1666400400
Arg [6] : _endTime (uint256): 1666486800
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000479e02b7102bf374de3b9dc3f53817d0db99d0e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000258
Arg [2] : 0000000000000000000000000000000000000000000000000de0b6b3a7640000
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 00000000000000000000000000000000000000000000000006f05b59d3b20000
Arg [5] : 0000000000000000000000000000000000000000000000000000000063534090
Arg [6] : 0000000000000000000000000000000000000000000000000000000063549210
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.