// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)
pragma solidity ^0.8.0;
/**
* @dev These functions deal with verification of Merkle Trees proofs.
*
* The proofs can be generated using the JavaScript library
* https://github.com/miguelmota/merkletreejs[merkletreejs].
* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
*
* See `test/utils/cryptography/MerkleProof.test.js` for some examples.
*/
library MerkleProof {
/**
* @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
* defined by `root`. For this, a `proof` must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
function verify(
bytes32[] memory proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProof(proof, leaf) == root;
}
/**
* @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
* from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
* hash matches the root of the tree. When processing the proof, the pairs
* of leafs & pre-images are assumed to be sorted.
*
* _Available since v4.4._
*/
function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
bytes32 proofElement = proof[i];
if (computedHash <= proofElement) {
// Hash(current computed hash + current element of the proof)
computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
} else {
// Hash(current element of the proof + current computed hash)
computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
}
}
return computedHash;
}
}
// SPDX-License-Identifier: MIT
// Developed by KG Technologies (https://kgtechnologies.io)
pragma solidity 0.8.11;
/**
__ __ ______ _______ _____ __ _______ ____ _____ _____ _____ _ ______
| \/ | ____|__ __|/\ / ____| /\ \ / /_ _/ __ \| __ \ / ____| / ____| /\ | | | ____|
| \ / | |__ | | / \ | (___ / \ \ / / | || | | | |__) | (___ | (___ / \ | | | |__
| |\/| | __| | | / /\ \ \___ \ / /\ \ \/ / | || | | | _ / \___ \ \___ \ / /\ \ | | | __|
| | | | |____ | |/ ____ \ ____) / ____ \ / _| || |__| | | \ \ ____) | ____) / ____ \| |____| |____
|_| |_|______| |_/_/ \_\_____/_/ \_\/ |_____\____/|_| \_\_____/ |_____/_/ \_\______|______|
*/
import "@openzeppelin/contracts/access/Ownable.sol";
import { MerkleProof } from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
/**
* @notice Represents NFT Smart Contract
*/
contract IMetaSaviorsERC721 {
/**
* @dev ERC-721 INTERFACE
*/
function ownerOf(uint256 tokenId) public view virtual returns (address) {}
/**
* @dev CUSTOM INTERFACE
*/
function mintTo(uint256 amount, address _to) external {}
function maxMintPerTransaction() public returns (uint256) {}
}
/**
* @title MetaSaviorsPreSaleLimitedContract.
*
* @author KG Technologies (https://kgtechnologies.io).
*
* @notice This Smart Contract can be used to sell a fixed amount of NFTs where some of them are
* sold to permissioned wallets and the others are sold to the general public.
*
* @dev The primary mode of verifying permissioned actions is through Merkle Proofs
* which are generated off-chain.
*/
contract MetaSaviorsPreSaleLimitedContract is Ownable {
/**
* @notice The Smart Contract of the NFT being sold
* @dev ERC-721 Smart Contract
*/
IMetaSaviorsERC721 public immutable nft;
/**
* @dev MINT DATA
*/
uint256 public reserved = 150;
uint256 public maxSupplyPermissioned = 2500;
uint256 public maxSupplyOpen = 8004 - maxSupplyPermissioned - reserved;
uint256 public mintedPermissioned = 0;
uint256 public mintedOpen = 0;
uint256 public limitOpen = 2;
uint256 public priceOpen = 0.18 ether;
bool public isOpen = false;
mapping(address => uint256) public addressToMintsPermissioned;
mapping(address => uint256) public addressToMints;
/**
* @dev MERKLE ROOTS
*
* @dev Initial value is randomly generated from https://www.random.org/
*/
bytes32 public merkleRoot = "";
/**
* @dev Events
*/
event ReceivedEther(address indexed sender, uint256 indexed amount);
event Purchase(address indexed buyer, uint256 indexed amount, bool indexed permissioned);
event setMaxSupplyPermissionedEvent(uint256 indexed maxSupply);
event setMaxSupplyOpenEvent(uint256 indexed maxSupply);
event setLimitOpenEvent(uint256 indexed limit);
event setPriceOpenEvent(uint256 indexed price);
event setMerkleRootEvent(bytes32 indexed merkleRoot);
event setIsOpenEvent(bool indexed open);
event WithdrawAllEvent(address indexed to, uint256 amount);
constructor(
address _nftaddress
) Ownable() {
nft = IMetaSaviorsERC721(_nftaddress);
}
/**
* @dev SALE
*/
/**
* @notice Function to buy one or more NFTs.
* @dev First the Merkle Proof is verified.
* Then the mint is verified with the data embedded in the Merkle Proof.
* Finally the NFTs are minted to the user's wallet.
*
* @param amount. The amount of NFTs to buy.
* @param mintStart. The start date of the mint.
* @param mintEnd. The end date of the mint.
* @param mintPrice. The mint price for the user.
* @param mintMaxAmount. The max amount the user can mint.
* @param proof. The Merkle Proof of the user.
*/
function buyPermissioned(uint256 amount, uint256 mintStart, uint256 mintEnd, uint256 mintPrice, uint256 mintMaxAmount, bytes32[] calldata proof)
external
payable {
/// @dev Verifies that user can perform permissioned mint based on the provided parameters.
require(address(nft) != address(0), "NFT SMART CONTRACT NOT SET");
require(merkleRoot != "", "PERMISSIONED SALE CLOSED");
require(block.timestamp >= mintStart, "PERMISSIONED SALE HASN'T STARTED YET");
require(block.timestamp < mintEnd, "PERMISSIONED SALE IS CLOSED");
require(amount > 0, "HAVE TO BUY AT LEAST 1");
require(amount <= nft.maxMintPerTransaction(), "CANNOT MINT MORE PER TX");
require(addressToMintsPermissioned[_msgSender()] + amount <= mintMaxAmount, "MINT AMOUNT EXCEEDS MAX FOR USER");
require(mintedPermissioned + amount <= maxSupplyPermissioned, "MINT AMOUNT GOES OVER MAX SUPPLY");
require(msg.value >= mintPrice * amount, "ETHER SENT NOT CORRECT");
/// @dev Verifies Merkle Proof submitted by user.
/// @dev All mint data is embedded in the merkle proof.
bytes32 leaf = keccak256(abi.encodePacked(msg.sender, mintStart, mintEnd, mintPrice, mintMaxAmount));
require(MerkleProof.verify(proof, merkleRoot, leaf), "INVALID PROOF");
/// @dev Updates contract variables and mints `amount` NFTs to users wallet
mintedPermissioned += amount;
addressToMintsPermissioned[msg.sender] += amount;
nft.mintTo(amount, msg.sender);
emit Purchase(msg.sender, amount, true);
}
/**
* @notice Function to buy one or more NFTs.
*
* @param amount. The amount of NFTs to buy.
*/
function buyOpen(uint256 amount)
external
payable {
/// @dev Verifies that user can perform open mint based on the provided parameters.
require(address(nft) != address(0), "NFT SMART CONTRACT NOT SET");
require(isOpen, "OPEN SALE CLOSED");
require(amount > 0, "HAVE TO BUY AT LEAST 1");
require(amount <= nft.maxMintPerTransaction(), "CANNOT MINT MORE PER TX");
require(addressToMints[_msgSender()] + amount <= limitOpen, "MINT AMOUNT EXCEEDS MAX FOR USER");
require(mintedOpen + amount <= maxSupplyOpen, "MINT AMOUNT GOES OVER MAX SUPPLY");
require(msg.value >= priceOpen * amount, "ETHER SENT NOT CORRECT");
/// @dev Updates contract variables and mints `amount` NFTs to users wallet
mintedOpen += amount;
addressToMints[msg.sender] += amount;
nft.mintTo(amount, msg.sender);
emit Purchase(msg.sender, amount, false);
}
/**
* @dev OWNER ONLY
*/
/**
* @notice Change the maximum supply of NFTs that are for sale in permissioned sale.
*
* @param newMaxSupply. The new max supply.
*/
function setMaxSupplyPermissioned(uint256 newMaxSupply) external onlyOwner {
maxSupplyPermissioned = newMaxSupply;
emit setMaxSupplyPermissionedEvent(newMaxSupply);
}
/**
* @notice Change the maximum supply of NFTs that are for sale in open sale.
*
* @param newMaxSupply. The new max supply.
*/
function setMaxSupplyOpen(uint256 newMaxSupply) external onlyOwner {
maxSupplyOpen = newMaxSupply;
emit setMaxSupplyOpenEvent(newMaxSupply);
}
/**
* @notice Change the limit of NFTs per wallet in open sale.
*
* @param newLimitOpen. The new max supply.
*/
function setLimitOpen(uint256 newLimitOpen) external onlyOwner {
limitOpen = newLimitOpen;
emit setLimitOpenEvent(newLimitOpen);
}
/**
* @notice Change the price of NFTs that are for sale in open sale.
*
* @param newPriceOpen. The new max supply.
*/
function setPriceOpen(uint256 newPriceOpen) external onlyOwner {
priceOpen = newPriceOpen;
emit setPriceOpenEvent(newPriceOpen);
}
/**
* @notice Change the merkleRoot of the sale.
*
* @param newRoot. The new merkleRoot.
*/
function setMerkleRoot(bytes32 newRoot) external onlyOwner {
merkleRoot = newRoot;
emit setMerkleRootEvent(newRoot);
}
/**
* @notice Change the state of the sale.
*
* @param open. The new state.
*/
function setIsOpen(bool open) external onlyOwner {
isOpen = open;
emit setIsOpenEvent(open);
}
/**
* @dev FINANCE
*/
/**
* @notice Allows owner to withdraw funds generated from sale.
*
* @param _to. The address to send the funds to.
*/
function withdrawAll(address _to) external onlyOwner {
require(_to != address(0), "CANNOT WITHDRAW TO ZERO ADDRESS");
uint256 contractBalance = address(this).balance;
require(contractBalance > 0, "NO ETHER TO WITHDRAW");
payable(_to).transfer(contractBalance);
emit WithdrawAllEvent(_to, contractBalance);
}
/**
* @dev Fallback function for receiving Ether
*/
receive() external payable {
emit ReceivedEther(msg.sender, msg.value);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
{
"compilationTarget": {
"contracts/MetaSaviorsPreSaleLimitedContract.sol": "MetaSaviorsPreSaleLimitedContract"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs",
"useLiteralContent": true
},
"optimizer": {
"enabled": true,
"runs": 1000
},
"remappings": []
}
[{"inputs":[{"internalType":"address","name":"_nftaddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"bool","name":"permissioned","type":"bool"}],"name":"Purchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ReceivedEther","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawAllEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"open","type":"bool"}],"name":"setIsOpenEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setLimitOpenEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"setMaxSupplyOpenEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"setMaxSupplyPermissionedEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setMerkleRootEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPriceOpenEvent","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressToMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressToMintsPermissioned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"buyOpen","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"mintStart","type":"uint256"},{"internalType":"uint256","name":"mintEnd","type":"uint256"},{"internalType":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"uint256","name":"mintMaxAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"buyPermissioned","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"isOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitOpen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyOpen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyPermissioned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedOpen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedPermissioned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nft","outputs":[{"internalType":"contract IMetaSaviorsERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceOpen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"open","type":"bool"}],"name":"setIsOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimitOpen","type":"uint256"}],"name":"setLimitOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupplyOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupplyPermissioned","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPriceOpen","type":"uint256"}],"name":"setPriceOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]