ERC721
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
.png?alt=media)
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
%20(1).png?alt=media)
Contract Address
: erc721 contract addressName
:: get nameSuccess
: whether succeed or notOutput message
: error message, "" if succeed
Get erc-721 symbol
.png?alt=media)
Contract Address
: contract addressSymbol
:: get symbolSuccess
: whether succeed or notOutput message
: error message, "" if succeed
Get erc-721 uri
.png?alt=media)
Contract Address
: erc721 contract addressToken ID
: token idUri
: get uriSuccess
: whether succeed or notOutput message
: error message, "" if succeed
Get erc-721 Approved
%20(2).png?alt=media)
Contract Address
: erc721 contract addressToken ID
: token idResult
: approvedSuccess
: whether succeed or notOutput message
: error message, "" if succeed
Get erc-721 IsApprovedForAll
.png?alt=media)
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
%20(3).png?alt=media)
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
.png?alt=media)
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.
%20(3).png?alt=media)
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.
.png?alt=media)
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.%20(1).png?alt=media)
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
.%20(3).png?alt=media)
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
..png?alt=media)
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.%20(5).png?alt=media)
Contract Address
: erc721 contractWalletindex
: wallet index which starts from 0Approved Address
: address to approveToken
id: token idOut
: Erc721Approve callback
Last modified 11mo ago