FNCY Chain
FNCY 2.0.2 (ENG)
FNCY 2.0.2 (ENG)
  • Introduction
  • Getting Started
  • Design
    • Structure
    • Three Main Sets of Participants
    • PoSA Consensus
    • Governance
    • Staking
    • Mining Reward
    • Gas Fee
    • Runtime Upgrade
    • Cross-Chain Bridge
    • Security
  • Build On FNCY Chain
    • RPC Endpoints
    • Testnet Faucet
    • Block Explorer
      • Token Listing
    • BEP20 Token
    • NFT
    • Validator Requirements
    • NFT Market
      • FNCY Marketplace
  • For Developers
    • JSON-RPC
    • FNCY Chain API
      • Wallet API
      • Transaction API
      • Blockchain API
    • Wallet
      • FNCY Wallet
      • Use MetaMask for FNCY Chain
      • SDK
        • Android
          • Install
          • Guide
            • Initialize
            • Create/Restore Wallet
            • Wallet Search
            • Execute SendCoin/Contract
            • Transaction Search
            • Other Features
          • Methods
          • Domain
          • ETC
        • iOS
          • Install
          • Guide
            • Initialize
            • Create/Restore Wallet
            • Wallet Search
            • Execute SendCoin/Contract
            • Transaction Search
            • Other Features
          • Methods
          • Domain
          • ETC
    • Smart Contract
      • Deployment
        • Truffle
        • Hardhat
        • Remix IDE
      • Verify Your Contract on FncyScan
    • Gasless Transaction
    • with FNCY
      • FNCY Login
      • GAME AUTH Login
  • Tokenomics
  • Ecosystem Partner
  • FNCY Governance Partner
Powered by GitBook
On this page
  • Search Wallet
  • Search Value of Assets in Wallet
  • Search Asset
  • Search List of Assets
  • Search a Single Asset
  • NFT
  • Search NFT List
  • Search a Single NFT
  1. For Developers
  2. Wallet
  3. SDK
  4. iOS
  5. Guide

Wallet Search

This document describes how to search wallet information.

PreviousCreate/Restore WalletNextExecute SendCoin/Contract

Search Wallet

Gets the user's wallet information.

Guide for creating a wallet is described in .

let wallet: FncyWallet = try await fncyWallet.getWallet()

See Also

Search Value of Assets in Wallet

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

let balance: FncyBalance = try await fncyWallet.getWalletAllBalance(
wid: wid //Wallet ID from getWallet()
)

See Also

Search Asset

Search List of Assets

Gets a list of assets you own.

let assets: [FncyAsset] = try await 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.

let asset: FncyAsset = try await 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.

let nfts: [FncyNFT] = try await fncyWallet.getNFTList(
wid: wid //Wallet ID from getWallet()
)

See Also

Search a Single NFT

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

let nft: FncyNFT = try await fncyWallet.getNFTById(
wid: wid, //Wallet ID from getWallet()
nftId:NFTID //NFT ID from getAssetList
)

See Also

Create/Restore Wallet
getAssetList
getAssetById
getNFTList
getNFTById
getWallet
getWalletAllBalance
FncyWallet
FncyBalance
FncyAsset
FncyAsset
FncyNFT
FncyNFT