All ERC721 functions are members of DefiWalletCoreActor. The Target should be Defi Wallet Core Actor.
Get erc-721 balance, minted token total count of this address
Contract Address
: erc721 contract addressAccount Address
: account address to fetch balanceBalance
: to get balance of this addressSuccess
: whether succeed or notOutput message
: error message, "" if succeed
Get erc-721 name
Contract Address
: erc721 contract addressName
:: get nameSuccess
: whether succeed or notOutput message
: error message, "" if succeed
Get erc-721 symbol
Contract Address
: contract addressSymbol
:: get symbolSuccess
: whether succeed or notOutput message
: error message, "" if succeed
Get erc-721 uri
Contract Address
: erc721 contract addressToken ID
: token idUri
: get uriSuccess
: whether succeed or notOutput message
: error message, "" if succeed
Get erc-721 Approved
Contract Address
: erc721 contract addressToken ID
: token idResult
: approvedSuccess
: whether succeed or notOutput message
: error message, "" if succeed
Get erc-721 IsApprovedForAll
Contract Address
: erc721 contract addressErc 721owner
: owner addressErc 721approvedaddress
: approved addressResult
: is approved for allSuccess
: whether succeed or notOutput message
: error message, "" if succeed
Get erc-721 owner
Contract Address
: erc 721 contract addressToken ID
: token idErcowner
: get ownerSuccess
: whether succeed or notOutput message
: error message, "" if succeed
Get erc-721 total suppy
Contract Address
: erc 721 contract addressTotalsupply
: total suppySuccess
: whether succeed or notOutput message
: error message, "" if succeed
Returns a token ID at a given index of all the tokens stored by the contract. Use along with totalSupply to enumerate all tokens.
Contract Address
: erc 721 contract addressErc 721index
: which indexToken
: a token ID at a given indexSuccess
: whether succeed or notOutput message
: error message, "" if succeed
Returns a token ID owned by owner at a given index of its token list. Use along with balanceOf to enumerate all of owner's tokens.
Contract Address
: erc 721 contract addressErc 721owner
: ownerErc 721index
: which indexToken
a token ID at a given indexSuccess
: whether succeed or notOutput message
: error message, "" if succeed
erc721 Moves amount
tokens from from_address
to to_address
using the allowance mechanism.
Contract Address
: erc721 contractWalletindex
: wallet index which starts from 0From Address
: from address to moveTo Address
: to addressTokenid
: token idOut
: Erc721TransferFrom callback
Safely transfers token_id
token from from_address
to to_address
.
Contract Address
: erc721 contractWalletindex
: wallet index which starts from 0From Address
: from address to moveTo Address
: to addressToken
id: token idOut
: Erc721SafeTransferFrom callback
Safely transfers token_id
token from from_address
to to_address
with additional_data
.
Contract Address
: erc721 contractWalletindex
: wallet index which starts from 0From Address
: from address to moveTo Address
: to addressToken
id: token idOut
: Erc721SafeTransferFromWithData callback
erc721 Allows approved_address
to withdraw from your account multiple times, up to the amount
amount.
Contract Address
: erc721 contractWalletindex
: wallet index which starts from 0Approved Address
: address to approveToken
id: token idOut
: Erc721Approve callback