Skip to content

Instantly share code, notes, and snippets.

View gowthamkumar12's full-sized avatar
🎯
Focusing

Gowtham Kumar gowthamkumar12

🎯
Focusing
View GitHub Profile
@gowthamkumar12
gowthamkumar12 / CrazyBananaUnion.sol
Created March 24, 2022 13:31
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 CrazyBananaUnion is ERC721Enumerable, Ownable {
using Strings for uint256;