Venly Widget
Home
Pricing
Your Wallet
Searchโฆ
Venly Widget
๐
Introduction
๐ฆ
Web3 Provider
Getting Started
Power of the Widget
Switching Networks
๐ฆ
Widget
Getting started
Initializing the widget
Retrieve user profile
Retrieve user wallets
Retrieve wallet balance
Retrieve a user account
Retrieve token balance
Retrieve non-fungible tokens
Transfer a native token
Transfer a fungible token
Transfer a non-fungible token
Execute transaction
Sign a message
Sign an EIP712 message
Call a contract
โ๏ธ Widget Advanced
Initializing options
Function Reference
addOnTokenRefreshCallback
authenticate
checkAuthenticated
createSigner
executeContract
executeGasTransfer
executeNftTransfer
executeTokenAssociation
executeTokenTransfer
executeTransfer
getAccount
getAllNonFungibles
getBalance
getBalanceByAddress
getNonfungibles
getNonfungiblesByAddress
getProfile
getTokenBalance
getTokenBalanceByAddress
getTokenBalances
getTokenBalancesByAddress
getTransactionStatus
getWallet
getWallets
importWallet
linkWallets
logout
manageWallets
readContract
unlink
signEip712
signMessage
Object Reference
๐
Deep Dive
Authentication
Chain specific fields
Environments & networks
Powered By
GitBook
getNonfungiblesByAddress
Fetch non-fungible items by wallet address
This function returns the non-fungible (ERC721, ERC1155) items for a given wallet
1
venlyConnect
.
api
.
getNonfungiblesByAddress
(
"ETHEREUM"
,
"0x3ad396dcb86d3a72855f7e1e305eaa144ec9b434"
);
Copied!
Signature
1
getNonfungiblesByAddress
=
(
secretType
:
SecretType
,
walletAddress
:
string
)
:
Promise
<
NFT
[]
>
Copied!
Returns
1
Promise
<
NFT
[]
>
Copied!
Parameters
Parameter
Required
Description
walletAddress
True
Wallet address the wallet you want to fetch the balance of
โ
secretType
โ
True
The relevant blockchain (e.g Ethereum, Matic,..)
Example
1
venlyConnect
.
api
.
getNonfungiblesByAddress
(
"ETHEREUM"
,
"0x3ad396dcb86d3a72855f7e1e305eaa144ec9b434"
);
Copied!
Object Types
NFT
SecretType
โ
โ
Previous
getNonfungibles
Next
getProfile
Last modified
8mo ago
Copy link
Contents
Signature
Returns
Parameters
Example
Object Types