Skip to content

Instantly share code, notes, and snippets.

@obernardovieira
Created March 18, 2020 17:22
Show Gist options
  • Save obernardovieira/025d20558ddc5dfc865013e63d8fabcd to your computer and use it in GitHub Desktop.
Save obernardovieira/025d20558ddc5dfc865013e63d8fabcd to your computer and use it in GitHub Desktop.
pragma solidity ^0.5.0;
import "@openzeppelin/contracts/token/ERC721/ERC721Full.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721Mintable.sol";
contract MyNFT is ERC721Full, ERC721Mintable {
constructor() ERC721Full("MyNFT", "MNFT") public {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment