Search Wallet
Gets the user's wallet information.
Guide for creating a wallet is described in .
val wallet = fncyWallet.getWallet()
See Also
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
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
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
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
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