Skip to content

Instantly share code, notes, and snippets.

View theshadowagent's full-sized avatar

theshad.eth theshadowagent

View GitHub Profile
@theshadowagent
theshadowagent / .deps...github...buildship-dev...nft-contracts...contracts...AvatarNFT.sol
Created November 10, 2021 00:50
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// Adapted from World of Women: https://etherscan.io/token/0xe785e82358879f061bc3dcac6f0444462d4b5330#readContract
pragma solidity ^0.8.2;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
// Want to launch your own collection ? Check out https://buildship.dev
contract AvatarNFT is ERC721, ERC721Enumerable, Ownable {