Skip to content

Instantly share code, notes, and snippets.

View 0xInuarashi's full-sized avatar

0xInuarashi 0xInuarashi

View GitHub Profile
@0xInuarashi
0xInuarashi / gittrees.sol
Created August 5, 2021 13:55
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.4+commit.c7e474f2.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol";
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol";
contract gittrees is ERC721Enumerable, Ownable {
uint public mintingCost = 0.2 ether;