Skip to content

Latest commit

 

History

History
152 lines (137 loc) · 5.18 KB

ERC721Mintable.md

File metadata and controls

152 lines (137 loc) · 5.18 KB

ERC721Mintable (ERC721Mintable.sol)

View Source: contracts/token/ERC721/ERC721Mintable.sol

↗ Extends: ERC721, MinterRole ↘ Derived Contracts: ERC721FullMock, ERC721MintableBurnableImpl

ERC721Mintable

ERC721 minting logic

Functions

mint

Function to mint tokens

function mint(address to, uint256 tokenId) public undefined onlyMinter 
returns(bool)

Returns

A boolean that indicates if the operation was successful.

Arguments

Name Type Description
to address The address that will receive the minted tokens.
tokenId uint256 The token id to mint.

Contracts