Created
October 18, 2021 20:06
-
-
Save Turupawn/05e0bef33e0b86fecfb0cc94e15b5389 to your computer and use it in GitHub Desktop.
Okis
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; | |
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; | |
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol"; | |
import "@openzeppelin/contracts/access/Ownable.sol"; | |
import "@openzeppelin/contracts/utils/math/SafeMath.sol"; | |
import "@openzeppelin/contracts/utils/Counters.sol"; | |
/** | |
* @dev Contract module which allows children to implement an emergency stop | |
* mechanism that can be triggered by an authorized account. | |
* | |
* This module is used through inheritance. It will make available the | |
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to | |
* the functions of your contract. Note that they will not be pausable by | |
* simply including this module, only once the modifiers are put in place. | |
*/ | |
abstract contract Pausable is Context { | |
/** | |
* @dev Emitted when the pause is triggered by `account`. | |
*/ | |
event Paused(address account); | |
/** | |
* @dev Emitted when the pause is lifted by `account`. | |
*/ | |
event Unpaused(address account); | |
bool private _paused; | |
/** | |
* @dev Initializes the contract in unpaused state. | |
*/ | |
constructor() { | |
_paused = false; | |
} | |
/** | |
* @dev Returns true if the contract is paused, and false otherwise. | |
*/ | |
function paused() public view virtual returns (bool) { | |
return _paused; | |
} | |
/** | |
* @dev Modifier to make a function callable only when the contract is not paused. | |
* | |
* Requirements: | |
* | |
* - The contract must not be paused. | |
*/ | |
modifier whenNotPaused() { | |
require(!paused(), "Pausable: paused"); | |
_; | |
} | |
/** | |
* @dev Modifier to make a function callable only when the contract is paused. | |
* | |
* Requirements: | |
* | |
* - The contract must be paused. | |
*/ | |
modifier whenPaused() { | |
require(paused(), "Pausable: not paused"); | |
_; | |
} | |
/** | |
* @dev Triggers stopped state. | |
* | |
* Requirements: | |
* | |
* - The contract must not be paused. | |
*/ | |
function _pause() internal virtual whenNotPaused { | |
_paused = true; | |
emit Paused(_msgSender()); | |
} | |
/** | |
* @dev Returns to normal state. | |
* | |
* Requirements: | |
* | |
* - The contract must be paused. | |
*/ | |
function _unpause() internal virtual whenPaused { | |
_paused = false; | |
emit Unpaused(_msgSender()); | |
} | |
} | |
/** | |
* @dev ERC721 token with pausable token transfers, minting and burning. | |
* | |
* Useful for scenarios such as preventing trades until the end of an evaluation | |
* period, or having an emergency switch for freezing all token transfers in the | |
* event of a large bug. | |
*/ | |
abstract contract ERC721Pausable is ERC721, Ownable, Pausable { | |
/** | |
* @dev See {ERC721-_beforeTokenTransfer}. | |
* | |
* Requirements: | |
* | |
* - the contract must not be paused. | |
*/ | |
function _beforeTokenTransfer( | |
address from, | |
address to, | |
uint256 tokenId | |
) internal virtual override { | |
super._beforeTokenTransfer(from, to, tokenId); | |
if (_msgSender() != owner()) { | |
require(!paused(), "ERC721Pausable: token transfer while paused"); | |
} | |
} | |
} | |
contract PudgyPenguins is ERC721Enumerable, Ownable, ERC721Burnable, ERC721Pausable { | |
using SafeMath for uint256; | |
using Counters for Counters.Counter; | |
Counters.Counter private _tokenIdTracker; | |
uint256 public constant MAX_ELEMENTS = 8888; | |
uint256 public constant PRICE = 3 * 10**16; | |
uint256 public constant MAX_BY_MINT = 20; | |
uint256 public constant reveal_timestamp = 1627588800; // Thu Jul 29 2021 20:00:00 GMT+0000 | |
address public constant creatorAddress = 0x6F84Fa72Ca4554E0eEFcB9032e5A4F1FB41b726C; | |
address public constant devAddress = 0xcBCc84766F2950CF867f42D766c43fB2D2Ba3256; | |
string public baseTokenURI; | |
event CreatePenguin(uint256 indexed id); | |
constructor(string memory baseURI) ERC721("PudgyPenguins", "PPG") { | |
setBaseURI(baseURI); | |
pause(true); | |
} | |
modifier saleIsOpen { | |
require(_totalSupply() <= MAX_ELEMENTS, "Sale end"); | |
if (_msgSender() != owner()) { | |
require(!paused(), "Pausable: paused"); | |
} | |
_; | |
} | |
function _totalSupply() internal view returns (uint) { | |
return _tokenIdTracker.current(); | |
} | |
function totalMint() public view returns (uint256) { | |
return _totalSupply(); | |
} | |
function mint(address _to, uint256 _count) public payable saleIsOpen { | |
uint256 total = _totalSupply(); | |
require(total + _count <= MAX_ELEMENTS, "Max limit"); | |
require(total <= MAX_ELEMENTS, "Sale end"); | |
require(_count <= MAX_BY_MINT, "Exceeds number"); | |
require(msg.value >= price(_count), "Value below price"); | |
for (uint256 i = 0; i < _count; i++) { | |
_mintAnElement(_to); | |
} | |
} | |
function _mintAnElement(address _to) private { | |
uint id = _totalSupply(); | |
_tokenIdTracker.increment(); | |
_safeMint(_to, id); | |
emit CreatePenguin(id); | |
} | |
function price(uint256 _count) public pure returns (uint256) { | |
return PRICE.mul(_count); | |
} | |
function _baseURI() internal view virtual override returns (string memory) { | |
return baseTokenURI; | |
} | |
function setBaseURI(string memory baseURI) public onlyOwner { | |
baseTokenURI = baseURI; | |
} | |
function walletOfOwner(address _owner) external view returns (uint256[] memory) { | |
uint256 tokenCount = balanceOf(_owner); | |
uint256[] memory tokensId = new uint256[](tokenCount); | |
for (uint256 i = 0; i < tokenCount; i++) { | |
tokensId[i] = tokenOfOwnerByIndex(_owner, i); | |
} | |
return tokensId; | |
} | |
function pause(bool val) public onlyOwner { | |
if (val == true) { | |
_pause(); | |
return; | |
} | |
_unpause(); | |
} | |
function withdrawAll() public payable onlyOwner { | |
uint256 balance = address(this).balance; | |
require(balance > 0); | |
_widthdraw(devAddress, balance.mul(35).div(100)); | |
_widthdraw(creatorAddress, address(this).balance); | |
} | |
function _widthdraw(address _address, uint256 _amount) private { | |
(bool success, ) = _address.call{value: _amount}(""); | |
require(success, "Transfer failed."); | |
} | |
function _beforeTokenTransfer( | |
address from, | |
address to, | |
uint256 tokenId | |
) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) { | |
super._beforeTokenTransfer(from, to, tokenId); | |
} | |
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) { | |
return super.supportsInterface(interfaceId); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment