-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0120309
commit ff68bdf
Showing
20 changed files
with
46,635 additions
and
5,301 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,3 +32,11 @@ yarn-error.log* | |
|
||
# vercel | ||
.vercel | ||
|
||
node_modules | ||
|
||
#Hardhat files | ||
cache | ||
artifacts | ||
|
||
.secret |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export const nftmarketaddress = "0x5FbDB2315678afecb367f032d93F642f64180aa3"; | ||
export const nftaddress = "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512"; |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
//SPDX-License-Identifier: Unlicense | ||
pragma solidity ^0.8.0; | ||
|
||
import "hardhat/console.sol"; | ||
|
||
|
||
contract Greeter { | ||
string greeting; | ||
|
||
constructor(string memory _greeting) { | ||
console.log("Deploying a Greeter with greeting:", _greeting); | ||
greeting = _greeting; | ||
} | ||
|
||
function greet() public view returns (string memory) { | ||
return greeting; | ||
} | ||
|
||
function setGreeting(string memory _greeting) public { | ||
console.log("Changing greeting from '%s' to '%s'", greeting, _greeting); | ||
greeting = _greeting; | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,168 @@ | ||
// contracts/Market.sol | ||
// SPDX-License-Identifier: MIT OR Apache-2.0 | ||
pragma solidity ^0.8.3; | ||
|
||
import "@openzeppelin/contracts/utils/Counters.sol"; | ||
import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; | ||
import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; | ||
|
||
import "hardhat/console.sol"; | ||
|
||
contract NFTMarket is ReentrancyGuard { | ||
using Counters for Counters.Counter; | ||
Counters.Counter private _itemIds; | ||
Counters.Counter private _itemsSold; | ||
|
||
address payable owner; | ||
uint256 listingPrice = 0.025 ether; | ||
|
||
constructor() { | ||
owner = payable(msg.sender); | ||
} | ||
|
||
struct MarketItem { | ||
uint itemId; | ||
address nftContract; | ||
uint256 tokenId; | ||
address payable seller; | ||
address payable owner; | ||
uint256 price; | ||
bool sold; | ||
} | ||
|
||
mapping(uint256 => MarketItem) private idToMarketItem; | ||
|
||
event MarketItemCreated ( | ||
uint indexed itemId, | ||
address indexed nftContract, | ||
uint256 indexed tokenId, | ||
address seller, | ||
address owner, | ||
uint256 price, | ||
bool sold | ||
); | ||
|
||
/* Returns the listing price of the contract */ | ||
function getListingPrice() public view returns (uint256) { | ||
return listingPrice; | ||
} | ||
|
||
/* Places an item for sale on the marketplace */ | ||
function createMarketItem( | ||
address nftContract, | ||
uint256 tokenId, | ||
uint256 price | ||
) public payable nonReentrant { | ||
require(price > 0, "Price must be at least 1 wei"); | ||
require(msg.value == listingPrice, "Price must be equal to listing price"); | ||
|
||
_itemIds.increment(); | ||
uint256 itemId = _itemIds.current(); | ||
|
||
idToMarketItem[itemId] = MarketItem( | ||
itemId, | ||
nftContract, | ||
tokenId, | ||
payable(msg.sender), | ||
payable(address(0)), | ||
price, | ||
false | ||
); | ||
|
||
IERC721(nftContract).transferFrom(msg.sender, address(this), tokenId); | ||
|
||
emit MarketItemCreated( | ||
itemId, | ||
nftContract, | ||
tokenId, | ||
msg.sender, | ||
address(0), | ||
price, | ||
false | ||
); | ||
} | ||
|
||
/* Creates the sale of a marketplace item */ | ||
/* Transfers ownership of the item, as well as funds between parties */ | ||
function createMarketSale( | ||
address nftContract, | ||
uint256 itemId | ||
) public payable nonReentrant { | ||
uint price = idToMarketItem[itemId].price; | ||
uint tokenId = idToMarketItem[itemId].tokenId; | ||
require(msg.value == price, "Please submit the asking price in order to complete the purchase"); | ||
|
||
idToMarketItem[itemId].seller.transfer(msg.value); | ||
IERC721(nftContract).transferFrom(address(this), msg.sender, tokenId); | ||
idToMarketItem[itemId].owner = payable(msg.sender); | ||
idToMarketItem[itemId].sold = true; | ||
_itemsSold.increment(); | ||
payable(owner).transfer(listingPrice); | ||
} | ||
|
||
/* Returns all unsold market items */ | ||
function fetchMarketItems() public view returns (MarketItem[] memory) { | ||
uint itemCount = _itemIds.current(); | ||
uint unsoldItemCount = _itemIds.current() - _itemsSold.current(); | ||
uint currentIndex = 0; | ||
|
||
MarketItem[] memory items = new MarketItem[](unsoldItemCount); | ||
for (uint i = 0; i < itemCount; i++) { | ||
if (idToMarketItem[i + 1].owner == address(0)) { | ||
uint currentId = i + 1; | ||
MarketItem storage currentItem = idToMarketItem[currentId]; | ||
items[currentIndex] = currentItem; | ||
currentIndex += 1; | ||
} | ||
} | ||
return items; | ||
} | ||
|
||
/* Returns only items that a user has purchased */ | ||
function fetchMyNFTs() public view returns (MarketItem[] memory) { | ||
uint totalItemCount = _itemIds.current(); | ||
uint itemCount = 0; | ||
uint currentIndex = 0; | ||
|
||
for (uint i = 0; i < totalItemCount; i++) { | ||
if (idToMarketItem[i + 1].owner == msg.sender) { | ||
itemCount += 1; | ||
} | ||
} | ||
|
||
MarketItem[] memory items = new MarketItem[](itemCount); | ||
for (uint i = 0; i < totalItemCount; i++) { | ||
if (idToMarketItem[i + 1].owner == msg.sender) { | ||
uint currentId = i + 1; | ||
MarketItem storage currentItem = idToMarketItem[currentId]; | ||
items[currentIndex] = currentItem; | ||
currentIndex += 1; | ||
} | ||
} | ||
return items; | ||
} | ||
|
||
/* Returns only items a user has created */ | ||
function fetchItemsCreated() public view returns (MarketItem[] memory) { | ||
uint totalItemCount = _itemIds.current(); | ||
uint itemCount = 0; | ||
uint currentIndex = 0; | ||
|
||
for (uint i = 0; i < totalItemCount; i++) { | ||
if (idToMarketItem[i + 1].seller == msg.sender) { | ||
itemCount += 1; | ||
} | ||
} | ||
|
||
MarketItem[] memory items = new MarketItem[](itemCount); | ||
for (uint i = 0; i < totalItemCount; i++) { | ||
if (idToMarketItem[i + 1].seller == msg.sender) { | ||
uint currentId = i + 1; | ||
MarketItem storage currentItem = idToMarketItem[currentId]; | ||
items[currentIndex] = currentItem; | ||
currentIndex += 1; | ||
} | ||
} | ||
return items; | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// contracts/NFT.sol | ||
// SPDX-License-Identifier: MIT OR Apache-2.0 | ||
pragma solidity ^0.8.3; | ||
|
||
import "@openzeppelin/contracts/utils/Counters.sol"; | ||
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; | ||
import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; | ||
|
||
import "hardhat/console.sol"; | ||
|
||
contract NFT is ERC721URIStorage { | ||
using Counters for Counters.Counter; | ||
Counters.Counter private _tokenIds; | ||
address contractAddress; | ||
|
||
constructor(address marketplaceAddress) ERC721("Metaverse Tokens", "METT") { | ||
contractAddress = marketplaceAddress; | ||
} | ||
|
||
function createToken(string memory tokenURI) public returns (uint) { | ||
_tokenIds.increment(); | ||
uint256 newItemId = _tokenIds.current(); | ||
|
||
_mint(msg.sender, newItemId); | ||
_setTokenURI(newItemId, tokenURI); | ||
setApprovalForAll(contractAddress, true); | ||
return newItemId; | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
require("@nomiclabs/hardhat-waffle") | ||
const fs = require('fs') | ||
const privateKey = fs.readFileSync(".secret").toString().trim() || "01234567890123456789" | ||
|
||
module.exports = { | ||
defaultNetwork: "hardhat", | ||
networks: { | ||
hardhat: { | ||
chainId: 1337 | ||
}, | ||
mumbai: { | ||
url: "https://rpc-mumbai.matic.today", | ||
accounts: [privateKey] | ||
} | ||
}, | ||
solidity: { | ||
version: "0.8.4", | ||
settings: { | ||
optimizer: { | ||
enabled: true, | ||
runs: 200 | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.