FNCY Chain
FNCY 2.0.2 (KOR)
FNCY 2.0.2 (KOR)
  • 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
          • 설치
          • 사용법
            • 초기화
            • 지갑 생성/복원
            • 지갑 조회
            • 코인보내기/Contract 실행
            • Transaction 조회
            • 기타 기능
          • Methods
          • Domain
          • ETC
        • iOS
          • 설치
          • 사용법
            • 초기화
            • 지갑 생성/복원
            • 지갑 조회
            • 코인보내기/Contract 실행
            • Transaction 조회
            • 기타 기능
          • Methods
          • Domain
          • ETC
    • Smart Contract
      • Deployment
        • Truffle
        • Hardhat
        • Remix IDE
      • Verify Your Contract on FncyScan
    • Gasless Transaction
    • with FNCY
      • FNCY 로그인
      • GAME AUTH 로그인
  • Tokenomics
  • Ecosystem Partner
  • FNCY Governance Partner
Powered by GitBook
On this page
  • 지갑 조회
  • 지갑의 자산 가치 조회
  • 자산 조회
  • 자산 목록 조회
  • 자산 단 건 조회
  • NFT
  • NFT 목록 조회
  • NFT 단 건 조회
  1. For Developers
  2. Wallet
  3. SDK
  4. Android
  5. 사용법

지갑 조회

이 문서는 지갑 조회 방법에 대하여 설명합니다.

Previous지갑 생성/복원Next코인보내기/Contract 실행

지갑 조회

사용자가 보유한 지갑 정보를 가져옵니다.

지갑 생성 방법은 에서 설명합니다.

val wallet = fncyWallet.getWallet()

See Also

지갑의 자산 가치 조회

사용자 지갑의 총 자산 가치(USD, KRW)를 가져옵니다.

val balance = fncyWallet.getWalletAllBalance(
    wid = wid //getWallet()에서 가져온 지갑 ID
)

See Also

자산 조회

자산 목록 조회

소유하고 있는 자산 목록을 가져옵니다.

val assets = fncyWallet.getAssetList(
    wid = wid //getWallet()에서 가져온 지갑 ID
)

See Also

자산 단 건 조회

소유하고 있는 자산의 ID를 알고 있을 경우 해당 자산 정보를 조회할 수 있습니다.

val asset = fncyWallet.getAssetById(
    wid = wid, //getWallet()에서 가져온 지갑 ID
    assetId = assetID //getAssetList()에서 가져온 asset ID
)

See Also

NFT

NFT 목록 조회

소유하고 있는 NFT목록을 가져옵니다.

val nfts = fncyWallet.getNFTList(
    wid = wid //getWallet()에서 가져온 지갑 ID
    filter = NFTOption.All,
    pageNo = 1,
    pageSize = 20
)

See Also

NFT 단 건 조회

소유하고 있는 NFT의 ID를 알고 있을 경우 해당 NFT를 조회할 수 있습니다.

val nft = fncyWallet.getNFTById(
    wid = wid, //getWallet()에서 가져온 지갑 ID
    nftId = nftId //getAssetList에서 가져온 NFT ID
)

See Also

지갑 생성/복원
FncyAsset
FncyAsset
FncyNFT
FncyNFT
FncyWallet
getWalletAllBalance
getWallet
getAssetList
getAssetById
getNFTList
getNFTById
FncyBalance