add mintable erc721 token

This commit is contained in:
Francisco Giordano
2018-04-20 11:21:53 -03:00
parent 2010c6b464
commit 85225ef6ae

View File

@ -0,0 +1,13 @@
pragma solidity ^0.4.21;
import "./ERC721Token.sol";
import "../../ownership/Ownable.sol";
/**
* @title Mintable ERC721 Token
*/
contract MintableERC721Token is Ownable, ERC721Token {
function mint(address _to, uint256 _tokenId) onlyOwner public {
_mint(_to, _tokenId);
}
}