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.

val assets = fncyWallet.getAssetList(
    wid = wid //Wallet ID from getWallet()
)

See Also

getAssetList

FncyAsset

Search a Single Asset

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

val asset = fncyWallet.getAssetById(
    wid = wid, //Wallet ID from getWallet()
    assetId = assetID //Asset ID from getAssetList()
)

See Also

getAssetById

FncyAsset

NFT

Search NFT List

Gets a list of NFTs you own.

val nfts = fncyWallet.getNFTList(
    wid = wid //Wallet ID from getWallet()
    filter = NFTOption.All,
    pageNo = 1,
    pageSize = 20
)

See Also

getNFTList

FncyNFT

Search a Single NFT

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

val nft = fncyWallet.getNFTById(
    wid = wid, //Wallet ID from getWallet()
    nftId = nftId //NFT ID from getAssetList
)

See Also

getNFTById

FncyNFT

Last updated