|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
abstract contract ReentrancyGuard {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uint256 private constant _NOT_ENTERED = 1;
|
|
uint256 private constant _ENTERED = 2;
|
|
|
|
uint256 private _status;
|
|
|
|
constructor() {
|
|
_status = _NOT_ENTERED;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
modifier nonReentrant() {
|
|
|
|
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
|
|
|
|
|
|
_status = _ENTERED;
|
|
|
|
_;
|
|
|
|
|
|
|
|
_status = _NOT_ENTERED;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
library Strings {
|
|
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
|
|
uint8 private constant _ADDRESS_LENGTH = 20;
|
|
|
|
|
|
|
|
|
|
function toString(uint256 value) internal pure returns (string memory) {
|
|
|
|
|
|
|
|
if (value == 0) {
|
|
return "0";
|
|
}
|
|
uint256 temp = value;
|
|
uint256 digits;
|
|
while (temp != 0) {
|
|
digits++;
|
|
temp /= 10;
|
|
}
|
|
bytes memory buffer = new bytes(digits);
|
|
while (value != 0) {
|
|
digits -= 1;
|
|
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
|
|
value /= 10;
|
|
}
|
|
return string(buffer);
|
|
}
|
|
|
|
|
|
|
|
|
|
function toHexString(uint256 value) internal pure returns (string memory) {
|
|
if (value == 0) {
|
|
return "0x00";
|
|
}
|
|
uint256 temp = value;
|
|
uint256 length = 0;
|
|
while (temp != 0) {
|
|
length++;
|
|
temp >>= 8;
|
|
}
|
|
return toHexString(value, length);
|
|
}
|
|
|
|
|
|
|
|
|
|
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
|
|
bytes memory buffer = new bytes(2 * length + 2);
|
|
buffer[0] = "0";
|
|
buffer[1] = "x";
|
|
for (uint256 i = 2 * length + 1; i > 1; --i) {
|
|
buffer[i] = _HEX_SYMBOLS[value & 0xf];
|
|
value >>= 4;
|
|
}
|
|
require(value == 0, "Strings: hex length insufficient");
|
|
return string(buffer);
|
|
}
|
|
|
|
|
|
|
|
|
|
function toHexString(address addr) internal pure returns (string memory) {
|
|
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
abstract contract Context {
|
|
function _msgSender() internal view virtual returns (address) {
|
|
return msg.sender;
|
|
}
|
|
|
|
function _msgData() internal view virtual returns (bytes calldata) {
|
|
return msg.data;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
abstract contract Ownable is Context {
|
|
address private _owner;
|
|
|
|
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
|
|
|
|
|
|
|
|
|
|
constructor() {
|
|
_transferOwnership(_msgSender());
|
|
}
|
|
|
|
|
|
|
|
|
|
modifier onlyOwner() {
|
|
_checkOwner();
|
|
_;
|
|
}
|
|
|
|
|
|
|
|
|
|
function owner() public view virtual returns (address) {
|
|
return _owner;
|
|
}
|
|
|
|
|
|
|
|
|
|
function _checkOwner() internal view virtual {
|
|
require(owner() == _msgSender(), "Ownable: caller is not the owner");
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function renounceOwnership() public virtual onlyOwner {
|
|
_transferOwnership(address(0));
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function transferOwnership(address newOwner) public virtual onlyOwner {
|
|
require(newOwner != address(0), "Ownable: new owner is the zero address");
|
|
_transferOwnership(newOwner);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function _transferOwnership(address newOwner) internal virtual {
|
|
address oldOwner = _owner;
|
|
_owner = newOwner;
|
|
emit OwnershipTransferred(oldOwner, newOwner);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.4;
|
|
|
|
|
|
|
|
|
|
interface IERC721A {
|
|
|
|
|
|
|
|
error ApprovalCallerNotOwnerNorApproved();
|
|
|
|
|
|
|
|
|
|
error ApprovalQueryForNonexistentToken();
|
|
|
|
|
|
|
|
|
|
error ApproveToCaller();
|
|
|
|
|
|
|
|
|
|
error BalanceQueryForZeroAddress();
|
|
|
|
|
|
|
|
|
|
error MintToZeroAddress();
|
|
|
|
|
|
|
|
|
|
error MintZeroQuantity();
|
|
|
|
|
|
|
|
|
|
error OwnerQueryForNonexistentToken();
|
|
|
|
|
|
|
|
|
|
error TransferCallerNotOwnerNorApproved();
|
|
|
|
|
|
|
|
|
|
error TransferFromIncorrectOwner();
|
|
|
|
|
|
|
|
|
|
error TransferToNonERC721ReceiverImplementer();
|
|
|
|
|
|
|
|
|
|
error TransferToZeroAddress();
|
|
|
|
|
|
|
|
|
|
error URIQueryForNonexistentToken();
|
|
|
|
|
|
|
|
|
|
error MintERC2309QuantityExceedsLimit();
|
|
|
|
|
|
|
|
|
|
error OwnershipNotInitializedForExtraData();
|
|
|
|
struct TokenOwnership {
|
|
|
|
address addr;
|
|
|
|
uint64 startTimestamp;
|
|
|
|
bool burned;
|
|
|
|
uint24 extraData;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function totalSupply() external view returns (uint256);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function supportsInterface(bytes4 interfaceId) external view returns (bool);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
|
|
|
|
|
|
|
|
|
|
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
|
|
|
|
|
|
|
|
|
|
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
|
|
|
|
|
|
|
|
|
|
function balanceOf(address owner) external view returns (uint256 balance);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function ownerOf(uint256 tokenId) external view returns (address owner);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function safeTransferFrom(
|
|
address from,
|
|
address to,
|
|
uint256 tokenId,
|
|
bytes calldata data
|
|
) external;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function safeTransferFrom(
|
|
address from,
|
|
address to,
|
|
uint256 tokenId
|
|
) external;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function transferFrom(
|
|
address from,
|
|
address to,
|
|
uint256 tokenId
|
|
) external;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function approve(address to, uint256 tokenId) external;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function setApprovalForAll(address operator, bool _approved) external;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function getApproved(uint256 tokenId) external view returns (address operator);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function isApprovedForAll(address owner, address operator) external view returns (bool);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function name() external view returns (string memory);
|
|
|
|
|
|
|
|
|
|
function symbol() external view returns (string memory);
|
|
|
|
|
|
|
|
|
|
function tokenURI(uint256 tokenId) external view returns (string memory);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.4;
|
|
|
|
|
|
|
|
|
|
|
|
interface ERC721A__IERC721Receiver {
|
|
function onERC721Received(
|
|
address operator,
|
|
address from,
|
|
uint256 tokenId,
|
|
bytes calldata data
|
|
) external returns (bytes4);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
contract ERC721A is IERC721A {
|
|
|
|
uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;
|
|
|
|
|
|
uint256 private constant BITPOS_NUMBER_MINTED = 64;
|
|
|
|
|
|
uint256 private constant BITPOS_NUMBER_BURNED = 128;
|
|
|
|
|
|
uint256 private constant BITPOS_AUX = 192;
|
|
|
|
|
|
uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;
|
|
|
|
|
|
uint256 private constant BITPOS_START_TIMESTAMP = 160;
|
|
|
|
|
|
uint256 private constant BITMASK_BURNED = 1 << 224;
|
|
|
|
|
|
uint256 private constant BITPOS_NEXT_INITIALIZED = 225;
|
|
|
|
|
|
uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;
|
|
|
|
|
|
uint256 private constant BITPOS_EXTRA_DATA = 232;
|
|
|
|
|
|
uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;
|
|
|
|
|
|
uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;
|
|
|
|
|
|
|
|
|
|
|
|
uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;
|
|
|
|
|
|
uint256 private _currentIndex;
|
|
|
|
|
|
uint256 private _burnCounter;
|
|
|
|
|
|
string private _name;
|
|
|
|
|
|
string private _symbol;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
mapping(uint256 => uint256) private _packedOwnerships;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
mapping(address => uint256) private _packedAddressData;
|
|
|
|
|
|
mapping(uint256 => address) private _tokenApprovals;
|
|
|
|
|
|
mapping(address => mapping(address => bool)) private _operatorApprovals;
|
|
|
|
constructor(string memory name_, string memory symbol_) {
|
|
_name = name_;
|
|
_symbol = symbol_;
|
|
_currentIndex = _startTokenId();
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function _startTokenId() internal view virtual returns (uint256) {
|
|
return 0;
|
|
}
|
|
|
|
|
|
|
|
|
|
function _nextTokenId() internal view returns (uint256) {
|
|
return _currentIndex;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function totalSupply() public view override returns (uint256) {
|
|
|
|
|
|
unchecked {
|
|
return _currentIndex - _burnCounter - _startTokenId();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
function _totalMinted() internal view returns (uint256) {
|
|
|
|
|
|
unchecked {
|
|
return _currentIndex - _startTokenId();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
function _totalBurned() internal view returns (uint256) {
|
|
return _burnCounter;
|
|
}
|
|
|
|
|
|
|
|
|
|
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
|
|
|
|
|
|
|
|
return
|
|
interfaceId == 0x01ffc9a7 ||
|
|
interfaceId == 0x80ac58cd ||
|
|
interfaceId == 0x5b5e139f;
|
|
}
|
|
|
|
|
|
|
|
|
|
function balanceOf(address owner) public view override returns (uint256) {
|
|
if (owner == address(0)) revert BalanceQueryForZeroAddress();
|
|
return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
|
|
}
|
|
|
|
|
|
|
|
|
|
function _numberMinted(address owner) internal view returns (uint256) {
|
|
return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
|
|
}
|
|
|
|
|
|
|
|
|
|
function _numberBurned(address owner) internal view returns (uint256) {
|
|
return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
|
|
}
|
|
|
|
|
|
|
|
|
|
function _getAux(address owner) internal view returns (uint64) {
|
|
return uint64(_packedAddressData[owner] >> BITPOS_AUX);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function _setAux(address owner, uint64 aux) internal {
|
|
uint256 packed = _packedAddressData[owner];
|
|
uint256 auxCasted;
|
|
|
|
assembly {
|
|
auxCasted := aux
|
|
}
|
|
packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
|
|
_packedAddressData[owner] = packed;
|
|
}
|
|
|
|
|
|
|
|
|
|
function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
|
|
uint256 curr = tokenId;
|
|
|
|
unchecked {
|
|
if (_startTokenId() <= curr)
|
|
if (curr < _currentIndex) {
|
|
uint256 packed = _packedOwnerships[curr];
|
|
|
|
if (packed & BITMASK_BURNED == 0) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
while (packed == 0) {
|
|
packed = _packedOwnerships[--curr];
|
|
}
|
|
return packed;
|
|
}
|
|
}
|
|
}
|
|
revert OwnerQueryForNonexistentToken();
|
|
}
|
|
|
|
|
|
|
|
|
|
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);
|
|
}
|
|
|
|
|
|
|
|
|
|
function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
|
|
return _unpackedOwnership(_packedOwnerships[index]);
|
|
}
|
|
|
|
|
|
|
|
|
|
function _initializeOwnershipAt(uint256 index) internal {
|
|
if (_packedOwnerships[index] == 0) {
|
|
_packedOwnerships[index] = _packedOwnershipOf(index);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
|
|
return _unpackedOwnership(_packedOwnershipOf(tokenId));
|
|
}
|
|
|
|
|
|
|
|
|
|
function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
|
|
assembly {
|
|
|
|
owner := and(owner, BITMASK_ADDRESS)
|
|
|
|
result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
function ownerOf(uint256 tokenId) public view override returns (address) {
|
|
return address(uint160(_packedOwnershipOf(tokenId)));
|
|
}
|
|
|
|
|
|
|
|
|
|
function name() public view virtual override returns (string memory) {
|
|
return _name;
|
|
}
|
|
|
|
|
|
|
|
|
|
function symbol() public view virtual override returns (string memory) {
|
|
return _symbol;
|
|
}
|
|
|
|
|
|
|
|
|
|
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 '';
|
|
}
|
|
|
|
/**
|
|
* @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))
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @dev See {IERC721-approve}.
|
|
*/
|
|
function approve(address to, uint256 tokenId) public override {
|
|
address owner = ownerOf(tokenId);
|
|
|
|
if (_msgSenderERC721A() != owner)
|
|
if (!isApprovedForAll(owner, _msgSenderERC721A())) {
|
|
revert ApprovalCallerNotOwnerNorApproved();
|
|
}
|
|
|
|
_tokenApprovals[tokenId] = to;
|
|
emit Approval(owner, to, tokenId);
|
|
}
|
|
|
|
/**
|
|
* @dev See {IERC721-getApproved}.
|
|
*/
|
|
function getApproved(uint256 tokenId) public view override returns (address) {
|
|
if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();
|
|
|
|
return _tokenApprovals[tokenId];
|
|
}
|
|
|
|
/**
|
|
* @dev See {IERC721-setApprovalForAll}.
|
|
*/
|
|
function setApprovalForAll(address operator, bool approved) public virtual override {
|
|
if (operator == _msgSenderERC721A()) revert ApproveToCaller();
|
|
|
|
_operatorApprovals[_msgSenderERC721A()][operator] = approved;
|
|
emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
|
|
}
|
|
|
|
/**
|
|
* @dev See {IERC721-isApprovedForAll}.
|
|
*/
|
|
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
|
|
return _operatorApprovals[owner][operator];
|
|
}
|
|
|
|
/**
|
|
* @dev See {IERC721-safeTransferFrom}.
|
|
*/
|
|
function safeTransferFrom(
|
|
address from,
|
|
address to,
|
|
uint256 tokenId
|
|
) public virtual override {
|
|
safeTransferFrom(from, to, tokenId, '');
|
|
}
|
|
|
|
/**
|
|
* @dev See {IERC721-safeTransferFrom}.
|
|
*/
|
|
function safeTransferFrom(
|
|
address from,
|
|
address to,
|
|
uint256 tokenId,
|
|
bytes memory _data
|
|
) public virtual override {
|
|
transferFrom(from, to, tokenId);
|
|
if (to.code.length != 0)
|
|
if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
|
|
revert TransferToNonERC721ReceiverImplementer();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @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 (`_mint`),
|
|
*/
|
|
function _exists(uint256 tokenId) internal view returns (bool) {
|
|
return
|
|
_startTokenId() <= tokenId &&
|
|
tokenId < _currentIndex && // If within bounds,
|
|
_packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
|
|
}
|
|
|
|
/**
|
|
* @dev Equivalent to `_safeMint(to, quantity, '')`.
|
|
*/
|
|
function _safeMint(address to, uint256 quantity) internal {
|
|
_safeMint(to, 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 {
|
|
_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 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 {
|
|
uint256 startTokenId = _currentIndex;
|
|
if (to == address(0)) revert MintToZeroAddress();
|
|
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 tokenId = startTokenId;
|
|
uint256 end = startTokenId + quantity;
|
|
do {
|
|
emit Transfer(address(0), to, tokenId++);
|
|
} while (tokenId < end);
|
|
|
|
_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 {
|
|
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 Returns the storage slot and value for the approved address of `tokenId`.
|
|
*/
|
|
function _getApprovedAddress(uint256 tokenId)
|
|
private
|
|
view
|
|
returns (uint256 approvedAddressSlot, address approvedAddress)
|
|
{
|
|
mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
|
|
// The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
|
|
assembly {
|
|
// Compute the slot.
|
|
mstore(0x00, tokenId)
|
|
mstore(0x20, tokenApprovalsPtr.slot)
|
|
approvedAddressSlot := keccak256(0x00, 0x40)
|
|
// Load the slot's value from storage.
|
|
approvedAddress := sload(approvedAddressSlot)
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
function _isOwnerOrApproved(
|
|
address approvedAddress,
|
|
address from,
|
|
address msgSender
|
|
) private pure returns (bool result) {
|
|
assembly {
|
|
|
|
from := and(from, BITMASK_ADDRESS)
|
|
|
|
msgSender := and(msgSender, BITMASK_ADDRESS)
|
|
|
|
result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function transferFrom(
|
|
address from,
|
|
address to,
|
|
uint256 tokenId
|
|
) public virtual override {
|
|
uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
|
|
|
|
if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();
|
|
|
|
(uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);
|
|
|
|
|
|
if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
|
|
if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
|
|
|
|
if (to == address(0)) revert TransferToZeroAddress();
|
|
|
|
_beforeTokenTransfers(from, to, tokenId, 1);
|
|
|
|
|
|
assembly {
|
|
if approvedAddress {
|
|
|
|
sstore(approvedAddressSlot, 0)
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
unchecked {
|
|
|
|
--_packedAddressData[from];
|
|
++_packedAddressData[to];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_packedOwnerships[tokenId] = _packOwnershipData(
|
|
to,
|
|
BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
|
|
);
|
|
|
|
|
|
if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
|
|
uint256 nextTokenId = tokenId + 1;
|
|
|
|
if (_packedOwnerships[nextTokenId] == 0) {
|
|
|
|
if (nextTokenId != _currentIndex) {
|
|
|
|
_packedOwnerships[nextTokenId] = prevOwnershipPacked;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
emit Transfer(from, to, tokenId);
|
|
_afterTokenTransfers(from, to, tokenId, 1);
|
|
}
|
|
|
|
|
|
|
|
|
|
function _burn(uint256 tokenId) internal virtual {
|
|
_burn(tokenId, false);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
|
|
uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
|
|
|
|
address from = address(uint160(prevOwnershipPacked));
|
|
|
|
(uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);
|
|
|
|
if (approvalCheck) {
|
|
|
|
if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
|
|
if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
|
|
}
|
|
|
|
_beforeTokenTransfers(from, address(0), tokenId, 1);
|
|
|
|
|
|
assembly {
|
|
if approvedAddress {
|
|
|
|
sstore(approvedAddressSlot, 0)
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
unchecked {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_packedOwnerships[tokenId] = _packOwnershipData(
|
|
from,
|
|
(BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
|
|
);
|
|
|
|
|
|
if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
|
|
uint256 nextTokenId = tokenId + 1;
|
|
|
|
if (_packedOwnerships[nextTokenId] == 0) {
|
|
|
|
if (nextTokenId != _currentIndex) {
|
|
|
|
_packedOwnerships[nextTokenId] = prevOwnershipPacked;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
emit Transfer(from, address(0), tokenId);
|
|
_afterTokenTransfers(from, address(0), tokenId, 1);
|
|
|
|
|
|
unchecked {
|
|
_burnCounter++;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
function _setExtraDataAt(uint256 index, uint24 extraData) internal {
|
|
uint256 packed = _packedOwnerships[index];
|
|
if (packed == 0) revert OwnershipNotInitializedForExtraData();
|
|
uint256 extraDataCasted;
|
|
|
|
assembly {
|
|
extraDataCasted := extraData
|
|
}
|
|
packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
|
|
_packedOwnerships[index] = packed;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _extraData(
|
|
address from,
|
|
address to,
|
|
uint24 previousExtraData
|
|
) internal view virtual returns (uint24) {}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _beforeTokenTransfers(
|
|
address from,
|
|
address to,
|
|
uint256 startTokenId,
|
|
uint256 quantity
|
|
) internal virtual {}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _afterTokenTransfers(
|
|
address from,
|
|
address to,
|
|
uint256 startTokenId,
|
|
uint256 quantity
|
|
) internal virtual {}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _msgSenderERC721A() internal view virtual returns (address) {
|
|
return msg.sender;
|
|
}
|
|
|
|
|
|
|
|
|
|
function _toString(uint256 value) internal pure returns (string memory ptr) {
|
|
assembly {
|
|
|
|
|
|
|
|
|
|
ptr := add(mload(0x40), 128)
|
|
|
|
mstore(0x40, ptr)
|
|
|
|
|
|
let end := ptr
|
|
|
|
|
|
|
|
|
|
|
|
for {
|
|
|
|
let temp := value
|
|
|
|
ptr := sub(ptr, 1)
|
|
|
|
mstore8(ptr, add(48, mod(temp, 10)))
|
|
temp := div(temp, 10)
|
|
} temp {
|
|
|
|
temp := div(temp, 10)
|
|
} {
|
|
|
|
ptr := sub(ptr, 1)
|
|
mstore8(ptr, add(48, mod(temp, 10)))
|
|
}
|
|
|
|
let length := sub(end, ptr)
|
|
|
|
ptr := sub(ptr, 32)
|
|
|
|
mstore(ptr, length)
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.4;
|
|
|
|
|
|
|
|
|
|
|
|
interface IERC721AQueryable is IERC721A {
|
|
|
|
|
|
|
|
error InvalidQueryRange();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);
|
|
|
|
|
|
|
|
|
|
|
|
function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function tokensOfOwnerIn(
|
|
address owner,
|
|
uint256 start,
|
|
uint256 stop
|
|
) external view returns (uint256[] memory);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function tokensOfOwner(address owner) external view returns (uint256[] memory);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.4;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) {
|
|
TokenOwnership memory ownership;
|
|
if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
|
|
return ownership;
|
|
}
|
|
ownership = _ownershipAt(tokenId);
|
|
if (ownership.burned) {
|
|
return ownership;
|
|
}
|
|
return _ownershipOf(tokenId);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) {
|
|
unchecked {
|
|
uint256 tokenIdsLength = tokenIds.length;
|
|
TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
|
|
for (uint256 i; i != tokenIdsLength; ++i) {
|
|
ownerships[i] = explicitOwnershipOf(tokenIds[i]);
|
|
}
|
|
return ownerships;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function tokensOfOwnerIn(
|
|
address owner,
|
|
uint256 start,
|
|
uint256 stop
|
|
) external view override returns (uint256[] memory) {
|
|
unchecked {
|
|
if (start >= stop) revert InvalidQueryRange();
|
|
uint256 tokenIdsIdx;
|
|
uint256 stopLimit = _nextTokenId();
|
|
|
|
if (start < _startTokenId()) {
|
|
start = _startTokenId();
|
|
}
|
|
|
|
if (stop > stopLimit) {
|
|
stop = stopLimit;
|
|
}
|
|
uint256 tokenIdsMaxLength = balanceOf(owner);
|
|
|
|
|
|
if (start < stop) {
|
|
uint256 rangeLength = stop - start;
|
|
if (rangeLength < tokenIdsMaxLength) {
|
|
tokenIdsMaxLength = rangeLength;
|
|
}
|
|
} else {
|
|
tokenIdsMaxLength = 0;
|
|
}
|
|
uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
|
|
if (tokenIdsMaxLength == 0) {
|
|
return tokenIds;
|
|
}
|
|
|
|
|
|
TokenOwnership memory ownership = explicitOwnershipOf(start);
|
|
address currOwnershipAddr;
|
|
|
|
|
|
if (!ownership.burned) {
|
|
currOwnershipAddr = ownership.addr;
|
|
}
|
|
for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
|
|
ownership = _ownershipAt(i);
|
|
if (ownership.burned) {
|
|
continue;
|
|
}
|
|
if (ownership.addr != address(0)) {
|
|
currOwnershipAddr = ownership.addr;
|
|
}
|
|
if (currOwnershipAddr == owner) {
|
|
tokenIds[tokenIdsIdx++] = i;
|
|
}
|
|
}
|
|
|
|
assembly {
|
|
mstore(tokenIds, tokenIdsIdx)
|
|
}
|
|
return tokenIds;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function tokensOfOwner(address owner) external view override returns (uint256[] memory) {
|
|
unchecked {
|
|
uint256 tokenIdsIdx;
|
|
address currOwnershipAddr;
|
|
uint256 tokenIdsLength = balanceOf(owner);
|
|
uint256[] memory tokenIds = new uint256[](tokenIdsLength);
|
|
TokenOwnership memory ownership;
|
|
for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
|
|
ownership = _ownershipAt(i);
|
|
if (ownership.burned) {
|
|
continue;
|
|
}
|
|
if (ownership.addr != address(0)) {
|
|
currOwnershipAddr = ownership.addr;
|
|
}
|
|
if (currOwnershipAddr == owner) {
|
|
tokenIds[tokenIdsIdx++] = i;
|
|
}
|
|
}
|
|
return tokenIds;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
library MerkleProof {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function verify(
|
|
bytes32[] memory proof,
|
|
bytes32 root,
|
|
bytes32 leaf
|
|
) internal pure returns (bool) {
|
|
return processProof(proof, leaf) == root;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function verifyCalldata(
|
|
bytes32[] calldata proof,
|
|
bytes32 root,
|
|
bytes32 leaf
|
|
) internal pure returns (bool) {
|
|
return processProofCalldata(proof, leaf) == root;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
|
|
bytes32 computedHash = leaf;
|
|
for (uint256 i = 0; i < proof.length; i++) {
|
|
computedHash = _hashPair(computedHash, proof[i]);
|
|
}
|
|
return computedHash;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
|
|
bytes32 computedHash = leaf;
|
|
for (uint256 i = 0; i < proof.length; i++) {
|
|
computedHash = _hashPair(computedHash, proof[i]);
|
|
}
|
|
return computedHash;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function multiProofVerify(
|
|
bytes32[] memory proof,
|
|
bool[] memory proofFlags,
|
|
bytes32 root,
|
|
bytes32[] memory leaves
|
|
) internal pure returns (bool) {
|
|
return processMultiProof(proof, proofFlags, leaves) == root;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function multiProofVerifyCalldata(
|
|
bytes32[] calldata proof,
|
|
bool[] calldata proofFlags,
|
|
bytes32 root,
|
|
bytes32[] memory leaves
|
|
) internal pure returns (bool) {
|
|
return processMultiProofCalldata(proof, proofFlags, leaves) == root;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function processMultiProof(
|
|
bytes32[] memory proof,
|
|
bool[] memory proofFlags,
|
|
bytes32[] memory leaves
|
|
) internal pure returns (bytes32 merkleRoot) {
|
|
|
|
|
|
|
|
|
|
uint256 leavesLen = leaves.length;
|
|
uint256 totalHashes = proofFlags.length;
|
|
|
|
|
|
require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");
|
|
|
|
|
|
|
|
bytes32[] memory hashes = new bytes32[](totalHashes);
|
|
uint256 leafPos = 0;
|
|
uint256 hashPos = 0;
|
|
uint256 proofPos = 0;
|
|
|
|
|
|
|
|
|
|
|
|
for (uint256 i = 0; i < totalHashes; i++) {
|
|
bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
|
|
bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
|
|
hashes[i] = _hashPair(a, b);
|
|
}
|
|
|
|
if (totalHashes > 0) {
|
|
return hashes[totalHashes - 1];
|
|
} else if (leavesLen > 0) {
|
|
return leaves[0];
|
|
} else {
|
|
return proof[0];
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function processMultiProofCalldata(
|
|
bytes32[] calldata proof,
|
|
bool[] calldata proofFlags,
|
|
bytes32[] memory leaves
|
|
) internal pure returns (bytes32 merkleRoot) {
|
|
|
|
|
|
|
|
|
|
uint256 leavesLen = leaves.length;
|
|
uint256 totalHashes = proofFlags.length;
|
|
|
|
|
|
require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");
|
|
|
|
|
|
|
|
bytes32[] memory hashes = new bytes32[](totalHashes);
|
|
uint256 leafPos = 0;
|
|
uint256 hashPos = 0;
|
|
uint256 proofPos = 0;
|
|
|
|
|
|
|
|
|
|
|
|
for (uint256 i = 0; i < totalHashes; i++) {
|
|
bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
|
|
bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
|
|
hashes[i] = _hashPair(a, b);
|
|
}
|
|
|
|
if (totalHashes > 0) {
|
|
return hashes[totalHashes - 1];
|
|
} else if (leavesLen > 0) {
|
|
return leaves[0];
|
|
} else {
|
|
return proof[0];
|
|
}
|
|
}
|
|
|
|
function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
|
|
return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
|
|
}
|
|
|
|
function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
|
|
|
|
assembly {
|
|
mstore(0x00, a)
|
|
mstore(0x20, b)
|
|
value := keccak256(0x00, 0x40)
|
|
}
|
|
}
|
|
}
|
|
pragma solidity ^0.8.0;
|
|
|
|
contract AmandaGenesis is ERC721A, Ownable, ReentrancyGuard {
|
|
|
|
|
|
|
|
using Strings for uint;
|
|
string public hiddenMetadataUri;
|
|
|
|
bytes32 public merkleRoot;
|
|
mapping(address => bool) public whitelistClaimed;
|
|
|
|
string public baseTokenURI = "ipfs://bafybeihn4rdw73zhkcpagcanh3gs6fl";
|
|
uint256 public maxSupply = 555;
|
|
uint256 public MAX_MINTS_PER_TX = 20;
|
|
uint256 public PUBLIC_SALE_PRICE = 0.002 ether;
|
|
uint256 public NUM_FREE_MINTS = 300;
|
|
uint256 public MAX_FREE_PER_WALLET = 1;
|
|
uint256 public freeNFTAlreadyMinted = 0;
|
|
bool public isPublicSaleActive = false;
|
|
bool public whitelistMintEnabled = false;
|
|
|
|
constructor(
|
|
string memory _tokenName,
|
|
string memory _tokenSymbol,
|
|
string memory _hiddenMetadataUri
|
|
) ERC721A(_tokenName, _tokenSymbol) {
|
|
setHiddenMetadataUri(_hiddenMetadataUri);
|
|
}
|
|
|
|
|
|
function mint(uint256 numberOfTokens)
|
|
external
|
|
payable
|
|
{
|
|
require(isPublicSaleActive, "Public sale is not open");
|
|
require(totalSupply() + numberOfTokens < maxSupply + 1, "No more");
|
|
|
|
if(freeNFTAlreadyMinted + numberOfTokens > NUM_FREE_MINTS){
|
|
require(
|
|
(PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value,
|
|
"Incorrect ETH value sent"
|
|
);
|
|
} else {
|
|
if (balanceOf(msg.sender) + numberOfTokens > MAX_FREE_PER_WALLET) {
|
|
require(
|
|
(PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value,
|
|
"Incorrect ETH value sent"
|
|
);
|
|
require(
|
|
numberOfTokens <= MAX_MINTS_PER_TX,
|
|
"Max mints per transaction exceeded"
|
|
);
|
|
} else {
|
|
require(
|
|
numberOfTokens <= MAX_FREE_PER_WALLET,
|
|
"Max mints per transaction exceeded"
|
|
);
|
|
freeNFTAlreadyMinted += numberOfTokens;
|
|
}
|
|
}
|
|
_safeMint(msg.sender, numberOfTokens);
|
|
}
|
|
|
|
function setBaseURI(string memory baseURI)
|
|
public
|
|
onlyOwner
|
|
{
|
|
baseTokenURI = baseURI;
|
|
}
|
|
|
|
function treasuryMint(uint quantity)
|
|
public
|
|
onlyOwner
|
|
{
|
|
require(
|
|
quantity > 0,
|
|
"Invalid mint amount"
|
|
);
|
|
require(
|
|
totalSupply() + quantity <= maxSupply,
|
|
"Maximum supply exceeded"
|
|
);
|
|
_safeMint(msg.sender, quantity);
|
|
}
|
|
|
|
function withdraw() public onlyOwner nonReentrant {
|
|
|
|
|
|
|
|
(bool os, ) = payable(owner()).call{value: address(this).balance}('');
|
|
require(os);
|
|
// =============================================================================
|
|
}
|
|
|
|
function tokenURI(uint _tokenId)
|
|
public
|
|
view
|
|
virtual
|
|
override
|
|
returns (string memory)
|
|
{
|
|
require(
|
|
_exists(_tokenId),
|
|
"ERC721Metadata: URI query for nonexistent token"
|
|
);
|
|
return string(abi.encodePacked(baseTokenURI, "/", _tokenId.toString(), ".json"));
|
|
}
|
|
|
|
function _baseURI()
|
|
internal
|
|
view
|
|
virtual
|
|
override
|
|
returns (string memory)
|
|
{
|
|
return baseTokenURI;
|
|
}
|
|
|
|
function setIsPublicSaleActive(bool _isPublicSaleActive)
|
|
external
|
|
onlyOwner
|
|
{
|
|
isPublicSaleActive = _isPublicSaleActive;
|
|
}
|
|
function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
|
|
hiddenMetadataUri = _hiddenMetadataUri;
|
|
}
|
|
|
|
function setNumFreeMints(uint256 _numfreemints)
|
|
external
|
|
onlyOwner
|
|
{
|
|
NUM_FREE_MINTS = _numfreemints;
|
|
}
|
|
|
|
function setSalePrice(uint256 _price)
|
|
external
|
|
onlyOwner
|
|
{
|
|
PUBLIC_SALE_PRICE = _price;
|
|
}
|
|
function setMaxSupply(uint256 _maxsupply)
|
|
external
|
|
onlyOwner
|
|
{
|
|
maxSupply = _maxsupply;
|
|
}
|
|
|
|
function setMaxLimitPerTransaction(uint256 _limit)
|
|
external
|
|
onlyOwner
|
|
{
|
|
MAX_MINTS_PER_TX = _limit;
|
|
}
|
|
function setwhitelistMintEnabled(bool _wlMintEnabled)
|
|
external
|
|
onlyOwner
|
|
{
|
|
whitelistMintEnabled = _wlMintEnabled;
|
|
}
|
|
function whitelistMint(uint256 _price, bytes32[] calldata _merkleProof) public payable {
|
|
// Verify whitelist requirements
|
|
require(whitelistMintEnabled, 'The whitelist sale is not enabled!');
|
|
require(!whitelistClaimed[_msgSender()], 'Address already claimed!');
|
|
bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
|
|
require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Invalid proof!');
|
|
|
|
whitelistClaimed[_msgSender()] = true;
|
|
_safeMint(_msgSender(), _price);
|
|
}
|
|
|
|
function setFreeLimitPerWallet(uint256 _limit)
|
|
external
|
|
onlyOwner
|
|
{
|
|
MAX_FREE_PER_WALLET = _limit;
|
|
}
|
|
} |