Skip to content

Instantly share code, notes, and snippets.

View YashNagiReddy7's full-sized avatar
🎯
Focusing

YashNagiReddy7

🎯
Focusing
View GitHub Profile
@YashNagiReddy7
YashNagiReddy7 / marketplace.sol
Created February 26, 2022 04:46 — forked from dabit3/marketplace.sol
NFT Marketplace Smart Contract
// SPDX-License-Identifier: MIT
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";