|
|
|
|
|
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
interface IERC721Receiver {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function onERC721Received(
|
|
address operator,
|
|
address from,
|
|
uint256 tokenId,
|
|
bytes calldata data
|
|
) external returns (bytes4);
|
|
}
|
|
|
|
|
|
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);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
abstract contract Context {
|
|
function _msgSender() internal view virtual returns (address) {
|
|
return msg.sender;
|
|
}
|
|
|
|
function _msgData() internal view virtual returns (bytes calldata) {
|
|
return msg.data;
|
|
}
|
|
}
|
|
|
|
|
|
abstract contract Ownable is Context {
|
|
address private _owner;
|
|
uint256 public totalOwners;
|
|
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
|
|
|
|
mapping(address => bool) private owners;
|
|
|
|
constructor() {
|
|
_transferOwnership(_msgSender());
|
|
owners[_msgSender()] = true;
|
|
totalOwners++;
|
|
}
|
|
|
|
|
|
function owner() public view virtual returns (address) {
|
|
return _owner;
|
|
}
|
|
|
|
modifier onlySuperOwner(){
|
|
require(owner() == _msgSender(), "Ownable: caller is not the super owner");
|
|
_;
|
|
}
|
|
|
|
modifier onlyOwner() {
|
|
require(owners[_msgSender()] == true, "Ownable: caller is not the owner");
|
|
_;
|
|
}
|
|
|
|
function transferOwnership(address newOwner) public virtual onlySuperOwner {
|
|
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);
|
|
}
|
|
|
|
function addOwner(address newOwner) public onlyOwner {
|
|
require(owners[newOwner] == false, "This address have already owner rights.");
|
|
owners[newOwner] = true;
|
|
totalOwners++;
|
|
}
|
|
|
|
function removeOwner(address _Owner) public onlyOwner {
|
|
require(owners[_Owner] == true, "This address have not any owner rights.");
|
|
owners[_Owner] = false;
|
|
totalOwners--;
|
|
}
|
|
|
|
function verifyOwner(address _ownerAddress) public view returns(bool){
|
|
return owners[_ownerAddress];
|
|
}
|
|
}
|
|
|
|
|
|
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);
|
|
}
|
|
}
|
|
|
|
|
|
interface IERC165 {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function supportsInterface(bytes4 interfaceId) external view returns (bool);
|
|
}
|
|
|
|
|
|
abstract contract ERC165 is IERC165 {
|
|
|
|
|
|
|
|
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
|
|
return interfaceId == type(IERC165).interfaceId;
|
|
}
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
}
|
|
|
|
|
|
|
|
|
|
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, Ownable{
|
|
using Address for address;
|
|
using Strings for uint256;
|
|
|
|
|
|
string private _name;
|
|
|
|
|
|
string private _symbol;
|
|
|
|
|
|
|
|
mapping(uint256 => address) private _owners;
|
|
|
|
|
|
mapping(address => uint256) private _balances;
|
|
|
|
|
|
mapping(uint256 => address) private _tokenApprovals;
|
|
|
|
|
|
mapping(address => mapping(address => bool)) private _operatorApprovals;
|
|
|
|
|
|
string private baseUri;
|
|
|
|
|
|
string private notRevealedUri;
|
|
|
|
|
|
bool public revealed = false;
|
|
|
|
|
|
|
|
|
|
constructor(string memory name_, string memory symbol_) {
|
|
_name = name_;
|
|
_symbol = symbol_;
|
|
}
|
|
|
|
|
|
|
|
|
|
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
|
|
return
|
|
interfaceId == type(IERC721).interfaceId ||
|
|
interfaceId == type(IERC721Metadata).interfaceId ||
|
|
super.supportsInterface(interfaceId);
|
|
}
|
|
|
|
|
|
|
|
|
|
function balanceOf(address owner) public view virtual override returns (uint256) {
|
|
require(owner != address(0), "ERC721: balance query for the zero address");
|
|
return _balances[owner];
|
|
}
|
|
|
|
|
|
|
|
|
|
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
|
|
address owner = _owners[tokenId];
|
|
require(owner != address(0), "ERC721: owner query for nonexistent token");
|
|
return owner;
|
|
}
|
|
|
|
|
|
|
|
|
|
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");
|
|
|
|
if(revealed == false && tokenId <= 10000){
|
|
|
|
return bytes(notRevealedUri).length > 0 ? string(abi.encodePacked(notRevealedUri)) : "";
|
|
}
|
|
else{
|
|
return bytes(baseUri).length > 0 ? string(abi.encodePacked(baseUri, tokenId.toString(),".json")) : "";
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function approve(address to, uint256 tokenId) public virtual override {
|
|
address owner = ERC721.ownerOf(tokenId);
|
|
require(to != owner, "ERC721: approval to current owner");
|
|
|
|
require(
|
|
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
|
|
"ERC721: approve caller is not owner nor approved for all"
|
|
);
|
|
|
|
_approve(to, tokenId);
|
|
}
|
|
|
|
|
|
|
|
|
|
function getApproved(uint256 tokenId) public view virtual override returns (address) {
|
|
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
|
|
|
|
return _tokenApprovals[tokenId];
|
|
}
|
|
|
|
|
|
|
|
|
|
function setApprovalForAll(address operator, bool approved) public virtual override {
|
|
require(operator != _msgSender(), "ERC721: 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 virtual override {
|
|
|
|
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
|
|
|
|
_transfer(from, to, tokenId);
|
|
}
|
|
|
|
|
|
|
|
|
|
function safeTransferFrom(
|
|
address from,
|
|
address to,
|
|
uint256 tokenId
|
|
) public virtual override {
|
|
safeTransferFrom(from, to, tokenId, "");
|
|
}
|
|
|
|
|
|
|
|
|
|
function safeTransferFrom(
|
|
address from,
|
|
address to,
|
|
uint256 tokenId,
|
|
bytes memory _data
|
|
) public virtual override {
|
|
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
|
|
_safeTransfer(from, to, tokenId, _data);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _safeTransfer(
|
|
address from,
|
|
address to,
|
|
uint256 tokenId,
|
|
bytes memory _data
|
|
) internal virtual {
|
|
_transfer(from, to, tokenId);
|
|
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _exists(uint256 tokenId) public view virtual returns (bool) {
|
|
return _owners[tokenId] != address(0);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
|
|
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
|
|
address owner = ERC721.ownerOf(tokenId);
|
|
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _safeMint(address to, uint256 tokenId) internal virtual {
|
|
_safeMint(to, tokenId, "");
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function _safeMint(
|
|
address to,
|
|
uint256 tokenId,
|
|
bytes memory _data
|
|
) internal virtual {
|
|
_mint(to, tokenId);
|
|
require(
|
|
_checkOnERC721Received(address(0), to, tokenId, _data),
|
|
"ERC721: transfer to non ERC721Receiver implementer"
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _mint(address to, uint256 tokenId) internal virtual {
|
|
require(to != address(0), "ERC721: mint to the zero address");
|
|
require(!_exists(tokenId), "ERC721: token already minted");
|
|
|
|
_beforeTokenTransfer(address(0), to, tokenId);
|
|
|
|
_balances[to] += 1;
|
|
_owners[tokenId] = to;
|
|
|
|
emit Transfer(address(0), to, tokenId);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _burn(uint256 tokenId) internal virtual {
|
|
address owner = ERC721.ownerOf(tokenId);
|
|
|
|
_beforeTokenTransfer(owner, address(0), tokenId);
|
|
|
|
|
|
_approve(address(0), tokenId);
|
|
|
|
_balances[owner] -= 1;
|
|
delete _owners[tokenId];
|
|
|
|
emit Transfer(owner, address(0), tokenId);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _transfer(
|
|
address from,
|
|
address to,
|
|
uint256 tokenId
|
|
) internal virtual {
|
|
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
|
|
require(to != address(0), "ERC721: transfer to the zero address");
|
|
|
|
_beforeTokenTransfer(from, to, tokenId);
|
|
|
|
|
|
_approve(address(0), tokenId);
|
|
|
|
_balances[from] -= 1;
|
|
_balances[to] += 1;
|
|
_owners[tokenId] = to;
|
|
|
|
emit Transfer(from, to, tokenId);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _approve(address to, uint256 tokenId) internal virtual {
|
|
_tokenApprovals[tokenId] = to;
|
|
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.onERC721Received.selector;
|
|
} catch (bytes memory reason) {
|
|
if (reason.length == 0) {
|
|
revert("ERC721: transfer to non ERC721Receiver implementer");
|
|
} else {
|
|
assembly {
|
|
revert(add(32, reason), mload(reason))
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function _beforeTokenTransfer(
|
|
address from,
|
|
address to,
|
|
uint256 tokenId
|
|
) internal virtual {}
|
|
|
|
function _setbaseURI(string memory _baseUri) external onlyOwner{
|
|
baseUri = _baseUri;
|
|
}
|
|
|
|
function _setNotRevealURI(string memory _notRevealUri) external onlyOwner{
|
|
notRevealedUri = _notRevealUri;
|
|
}
|
|
}
|
|
|
|
|
|
contract TraderSpirits is ERC721{
|
|
|
|
uint256 public totalMinted = 0;
|
|
|
|
uint256 public publicMinted = 0;
|
|
uint256 public giftMinted = 0;
|
|
uint256 public airDropMinted = 0;
|
|
|
|
uint256 public publicMintLimit = 10000;
|
|
uint256 public giftMintLimit = 75;
|
|
|
|
uint256 public giftMintId = 10001;
|
|
uint256 public publicMintId = 1;
|
|
|
|
uint256 public mintPrice = 1 * 10 ** 17;
|
|
uint256 public perTxQuantity = 20;
|
|
uint256 public perWalletQuantity = 20;
|
|
|
|
bool public publicSaleIsActive = false;
|
|
bool public privateSaleIsActive = false;
|
|
bool public isPaused = false;
|
|
bool public isHalted = false;
|
|
|
|
|
|
mapping(address => uint256) public walletMinted;
|
|
|
|
modifier isPause(){
|
|
require(isPaused == false, "Token is Paused.");
|
|
_;
|
|
}
|
|
|
|
modifier isHalt(){
|
|
require(isHalted == false, "Token is Halted.");
|
|
_;
|
|
}
|
|
|
|
constructor() ERC721("TraderSpirits", "TRSP"){}
|
|
|
|
function getMessageHash(address _to) public pure returns (bytes32) {
|
|
return keccak256(abi.encodePacked(_to));
|
|
}
|
|
|
|
function getEthSignedMessageHash(bytes32 _messageHash) private pure returns (bytes32){
|
|
|
|
return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", _messageHash));
|
|
}
|
|
|
|
function recoverSigner(bytes32 _ethSignedMessageHash, bytes memory _signature) private pure returns (address) {
|
|
(bytes32 r, bytes32 s, uint8 v) = splitSignature(_signature);
|
|
return ecrecover(_ethSignedMessageHash, v, r, s);
|
|
}
|
|
|
|
function splitSignature(bytes memory sig) private pure returns (bytes32 r, bytes32 s, uint8 v) {
|
|
require(sig.length == 65, "invalid signature length");
|
|
|
|
assembly {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
r := mload(add(sig, 32))
|
|
|
|
s := mload(add(sig, 64))
|
|
|
|
v := byte(0, mload(add(sig, 96)))
|
|
}
|
|
|
|
|
|
}
|
|
|
|
function verify(address _signer, address _to, bytes memory signature) private view returns (bool) {
|
|
require(_signer == owner() || verifyOwner(_signer) == true, "Signer should be owner only.");
|
|
bytes32 messageHash = getMessageHash(_to);
|
|
bytes32 ethSignedMessageHash = getEthSignedMessageHash(messageHash);
|
|
return recoverSigner(ethSignedMessageHash, signature) == _signer;
|
|
}
|
|
|
|
function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override isHalt{}
|
|
|
|
function mintByUser(uint256 quantity, bytes memory signature, address signer) public isPause isHalt payable{
|
|
if(privateSaleIsActive == true){
|
|
require(verify(signer, msg.sender, signature) == true, "User is not whitelisted");
|
|
}
|
|
else{
|
|
require(publicSaleIsActive == true, "Public Sale is not Started");
|
|
require(publicMinted + quantity <= publicMintLimit, "Max Limit To Total Sale");
|
|
}
|
|
|
|
require(quantity > 0 && quantity <= perTxQuantity, "Invalid Mint Quantity");
|
|
require(walletMinted[msg.sender] + quantity <= perWalletQuantity, "Max NFT per wallet exceeded.");
|
|
require( msg.value >= mintPrice * quantity, "Invalid Price To Mint");
|
|
|
|
(bool success,) = owner().call{value: msg.value}("");
|
|
|
|
if(!success) {
|
|
revert("Payment Sending Failed");
|
|
}
|
|
else{
|
|
uint256 count = quantity;
|
|
while(count > 0) {
|
|
if(!_exists(publicMintId)){
|
|
totalMinted++;
|
|
publicMinted++;
|
|
_safeMint(msg.sender, publicMintId);
|
|
publicMintId++;
|
|
count--;
|
|
}else{
|
|
publicMintId++;
|
|
}
|
|
}
|
|
walletMinted[msg.sender] += quantity;
|
|
}
|
|
}
|
|
|
|
function reveal() public onlyOwner {
|
|
revealed = !revealed;
|
|
}
|
|
|
|
|
|
function setSaleStatus() external onlyOwner {
|
|
publicSaleIsActive = privateSaleIsActive;
|
|
privateSaleIsActive = !publicSaleIsActive;
|
|
}
|
|
|
|
function setMintPrice(uint256 newPrice) external onlyOwner {
|
|
mintPrice = newPrice;
|
|
}
|
|
|
|
function setPauseStatus() public onlyOwner{
|
|
isPaused = !isPaused;
|
|
}
|
|
|
|
function setHaltStatus() public onlyOwner{
|
|
isHalted = !isHalted;
|
|
}
|
|
|
|
function setPublicMintLimit(uint256 _publicMintLimit) public onlyOwner{
|
|
require(_publicMintLimit > 0, "You have passed wrong value.");
|
|
publicMintLimit = _publicMintLimit;
|
|
}
|
|
|
|
function setGiftMintLimit(uint256 _giftMintLimit) public onlyOwner{
|
|
require(_giftMintLimit > 0, "You have passed wrong value.");
|
|
giftMintLimit = _giftMintLimit;
|
|
}
|
|
|
|
function setGiftMintId(uint256 _giftMintId) public onlyOwner{
|
|
require(_giftMintId > 0, "You have passed wrong value.");
|
|
giftMintId = _giftMintId;
|
|
}
|
|
|
|
function setPerTxQuantity(uint256 _perTxQuantity) public onlyOwner{
|
|
require(_perTxQuantity > 0, "You have passed wrong value.");
|
|
perTxQuantity = _perTxQuantity;
|
|
}
|
|
|
|
function setPerWalletQuantity(uint256 _perWalletQuantity) public onlyOwner{
|
|
require(_perWalletQuantity > 0, "You have passed wrong value.");
|
|
perWalletQuantity = _perWalletQuantity;
|
|
}
|
|
|
|
function mintByOwner(uint256 quantity) public isHalt onlyOwner {
|
|
require(publicSaleIsActive == true, "Public Sale is not Started");
|
|
require(publicMinted + quantity <= publicMintLimit, "Max Limit To Total Sale");
|
|
uint256 count = quantity;
|
|
while(count > 0) {
|
|
if(!_exists(publicMintId)){
|
|
totalMinted++;
|
|
publicMinted++;
|
|
_safeMint(msg.sender, publicMintId);
|
|
publicMintId++;
|
|
count--;
|
|
}else{
|
|
publicMintId++;
|
|
}
|
|
}
|
|
}
|
|
|
|
function giftMint(address _address, uint256 quantity) public isHalt onlyOwner{
|
|
require((giftMinted + quantity) <= giftMintLimit, "You are exceeding gift mint limit.");
|
|
uint256 count = quantity;
|
|
while(count > 0){
|
|
if(!_exists(giftMintId)){
|
|
giftMinted++;
|
|
totalMinted++;
|
|
_safeMint(_address, giftMintId);
|
|
giftMintId++;
|
|
count--;
|
|
}else{
|
|
giftMintId++;
|
|
}
|
|
}
|
|
}
|
|
|
|
function airDropToken(address _address, uint256 _tokenID) public isHalt onlyOwner{
|
|
require(_tokenID > 0 && _tokenID <= (publicMintLimit + giftMintLimit), "You have passed wrong value");
|
|
airDropMinted++;
|
|
totalMinted++;
|
|
_safeMint(_address, _tokenID);
|
|
}
|
|
|
|
function totalSupply() public view returns(uint256) {
|
|
return publicMintLimit;
|
|
}
|
|
} |