Skip to content

Instantly share code, notes, and snippets.

View bullishgopher's full-sized avatar

bullishgopher

View GitHub Profile
@dabit3
dabit3 / Market.sol
Last active May 18, 2022 21:06
Metaverse Marketplace Smart Contract
// 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";