Wallet Search

This document describes how to search wallet information.

Search Wallet

Gets the user's wallet information. Guide for creating a wallet is described in Create/restore wallet.

val wallet = fncyWallet.getWallet()

See Also

getWallet

FncyWallet

Search Value of Assets in Wallet

Gets the total asset value (USD, KRW) of the user's wallet.

val balance = fncyWallet.getWalletAllBalance(
    wid = wid //Wallet ID from getWallet()
)

See Also

getWalletAllBalance

FncyBalance

Search Asset

Search List of Assets

Gets a list of assets you own.

See Also

getAssetList

FncyAsset

Search a Single Asset

If you know the ID of an asset you own, you can search its information.

See Also

getAssetById

FncyAsset

NFT

Search NFT List

Gets a list of NFTs you own.

See Also

getNFTList

FncyNFT

Search a Single NFT

If you know the ID of an NFT you own, you search that its information.

See Also

getNFTById

FncyNFT