Skip to content

Instantly share code, notes, and snippets.

View simond110's full-sized avatar
🏠
Working from home

Software Engineer simond110

🏠
Working from home
View GitHub Profile
@simond110
simond110 / marketplace.sol
Created March 19, 2022 14:06 — forked from dabit3/marketplace.sol
NFT Marketplace Smart Contract (V2)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
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 NFTMarketplace is ERC721URIStorage {