Commit 85225ef6 by Francisco Giordano

add mintable erc721 token

parent 2010c6b4
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);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment