Skip to content

Instantly share code, notes, and snippets.

View JavierMedel's full-sized avatar
🎯
Focusing

Javier Medel, MSc JavierMedel

🎯
Focusing
  • WM
  • Toronto
View GitHub Profile
@JavierMedel
JavierMedel / TheStripesNFT.sol
Created January 20, 2022 01:56
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
pragma solidity ^0.8.7;
import "contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "contracts/access/Ownable.sol";
contract TheStripesNFT is ERC721Enumerable, Ownable {
using Strings for uint256;