ERC721
Functions
All ERC721 functions are members of DefiWalletCoreActor. The Target should be Defi Wallet Core Actor.
Erc721Balance
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
Erc721Name
Get erc-721 name

Contract Address: erc721 contract addressName:: get nameSuccess: whether succeed or notOutput message: error message, "" if succeed
Erc721Symbol
Get erc-721 symbol

Contract Address: contract addressSymbol:: get symbolSuccess: whether succeed or notOutput message: error message, "" if succeed
Erc721Uri
Get erc-721 uri

Contract Address: erc721 contract addressToken ID: token idUri: get uriSuccess: whether succeed or notOutput message: error message, "" if succeed
Erc721GetApproved
Get erc-721 Approved

Contract Address: erc721 contract addressToken ID: token idResult: approvedSuccess: whether succeed or notOutput message: error message, "" if succeed
Erc721IsApprovedForAll
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
Erc721Owner
Get erc-721 owner

Contract Address: erc 721 contract addressToken ID: token idErcowner: get ownerSuccess: whether succeed or notOutput message: error message, "" if succeed
Erc721TotalSupply
Get erc-721 total suppy

Contract Address: erc 721 contract addressTotalsupply: total suppySuccess: whether succeed or notOutput message: error message, "" if succeed
Erc721TokenByIndex
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
Erc721TokenOwnerByIndex
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 indexTokena token ID at a given indexSuccess: whether succeed or notOutput message: error message, "" if succeed
Erc721TransferFrom
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
Erc721SafeTransferFrom
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 addressTokenid: token idOut: Erc721SafeTransferFrom callback
Erc721SafeTransferFromWithData
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 addressTokenid: token idOut: Erc721SafeTransferFromWithData callback
Erc721Approve
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 approveTokenid: token idOut: Erc721Approve callback
Last updated
Was this helpful?