-
Notifications
You must be signed in to change notification settings - Fork 0
/
nft.sol
90 lines (68 loc) · 3.71 KB
/
nft.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
contract NFT is ERC721, Ownable {
using Strings for uint256;
uint256 public constant MAX_TOKENS = 10000; // tüm token miktarı
uint256 private constant TOKENS_RESERVED = 5; // rezerve tokenler
uint256 public price = 80000000000000000; // token ücreti
uint256 public constant MAX_MINT_PER_TX = 10; // zorunluluk
bool public isSaleActive;
uint256 public totalSupply;
mapping(address => uint256) private mintedPerWallet;
string public baseUri;
string public baseExtension = ".json";
constructor () ERC721("NFT Name", "SYMBOL") {
// base OPFS URI of the NFTs
baseUri = "ipfs://xxxxxxxxxxxxxxxxxxxxxxxxxxxxx/";
for (uint256 i= 1; i <= TOKENS_RESERVED; ++i) { // ne kadar token rezerve edildi
_safeMint(msg.sender, i);
}
totalSupply = TOKENS_RESERVED;
}
function mint(uint256 _numTokens) external payable {
require(isSaleActive, "The sale is paused"); // isSaleActive False olursa satış durur fonksiyonu durdurur
require(_numTokens <= MAX_MINT_PER_TX, "You can only mint a maximum of 10 NFTs per transaction"); // En fazla 10 tane üretilebilir
require(mintedPerWallet[msg.sender] + _numTokens <= 10, "You can only mint 10 per wallet."); // cüzdan başına 10 tane
uint256 curTotalSupply = totalSupply;
require(curTotalSupply + _numTokens <= MAX_TOKENS , "Exceeds 'MAX_TOKENS'");
require(_numTokens * price <= msg.value, "Unsufficient funds you need more ETH!"); // Yetersiz ETH
for (uint256 i = 1; i <= _numTokens; ++i) {
_safeMint(msg.sender, curTotalSupply + i);
}
mintedPerWallet[msg.sender] += _numTokens;
totalSupply += _numTokens;
}
function flipSaleState() external onlyOwner{
isSaleActive = !isSaleActive; // Satışın durmasını sadece kontrat sahibi gerçekleştirebilir
}
function setBaseURI(string memory _baseUri) external onlyOwner {
baseUri = _baseUri; // URI(kaynağı ve dosyaları benzersiz bir şekilde tanımlamamızı sağlar ve bu fonksiyon sayesinde değişimlerde bulunabiliriz)
}
function setPrice(uint256 _price) external onlyOwner {
price = _price; // fiyatı güncelleyebileceğimiz fonksiyon ( sadece kontrat sahibi)
}
function withdrawAll() external payable onlyOwner {
uint256 balance = address(this).balance; // Kontrat bakiyesi
uint256 balanceOne = balance * 70 / 100; // bakiyeyinin yüzde 70'i
uint256 balanceTwo = balance * 30 / 100; // bakiyenin yüzde 30'u
(bool transferOne, ) = payable(0x5B38Da6a701c568545dCfcB03FcB875f56beddC4).call{value: balanceOne}(""); // %70 bakiyenin geçeceği cüzdan
(bool transferTwo, ) = payable(0x5B38Da6a701c568545dCfcB03FcB875f56beddC4).call{value: balanceTwo}(""); // %30 bakiyenin geçeceği cüzdan
require(transferOne && transferTwo, "Transfer"); // gereklilik, kontrol
}
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { // temel fonksiyon
require(
_exists(tokenId),
"ERC721MetaData: URI query for nonexistent token"
);
string memory currentBaseURI = _baseURI();
return bytes(currentBaseURI).length > 0
? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
: "";
}
// Internal Functions
function _baseURI() internal view virtual override returns (string memory) { // temel URI fonksiyon
return baseUri;
}
}