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
  • Requesting Transaction List
  • Single Transaction Search
  1. For Developers
  2. Wallet
  3. SDK
  4. iOS
  5. Guide

Transaction Search

This article explains how to view your wallet's previous transaction history.

PreviousExecute SendCoin/ContractNextOther Features

Requesting Transaction List

Request the past transaction history of my wallet.

let array: [FncyTransaction] = try await fncyWallet.getTransferHistoryList(
wid: 10000, //wallet ID
assetId: 6, //Asset ID to Search (Optional)
pageNo: 1, //Page Number. default: 1 (Optional)
pageSize: 6, //Page Size. default: 6 (Optional)
filter: InOutDcd.all //Filter (Optional)
)

Filter

  • InOutDcd.all = All

  • InOutDcd.deposit = Deposit

  • InOutDcd.withdrawal = Withdraw

See Also

Single Transaction Search

ou can search a single transaction by passing the transaction's history number (historySeq).

let transaction: FncyTransaction = try await fncyWallet.getTransferHistoryDetail(
wid: 10000, //wallet wid
historySeq: 10000 //FncyTransaion의 historySeq
)

See Also

InOutDcd
FncyTransaction
FncyTransaction
getTransferHistoryList
getTransferHistoryDetail