ERC721 Token
Token ERC721 APIs.
erc721_getBalance
Return an address Token balance.
Parameters
Return Value
Example
erc721_getTokenUri
Return a minted tokenId URI.
Parameters
Return Value
Example
erc721_mint
Create new token with uri data. Only the token owner can do this..
Parameters
Return Value
A transactionId is returned, but that doesn't mean it has been added to the Block yet. You should check that the status is 1 by using net_getTransactionStatus.
Example
erc721_transfer
Transfer NFT owner from from-address to to-address.
Parameters
Return Value
A transactionId is returned, but that doesn't mean it has been added to the Block yet. You should check that the status is 1 by using net_getTransactionStatus.
Example
erc721_transferFrom
Transfer NFT owner from from-address to to-address by spender address.
Parameters
Return Value
A transactionId is returned, but that doesn't mean it has been added to the Block yet. You should check that the status is 1 by using net_getTransactionStatus.
Example
erc721_approve
Approve token from owner-address to spender-address.
Parameters
Return Value
A transactionId is returned, but that doesn't mean it has been added to the Block yet. You should check that the status is 1 by using net_getTransactionStatus.
Example
erc721_getApproved
Returns an allowed token spender from owner address.
Parameters
Return Value
Example
Last updated