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. Android
  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.

val transactionList = fncyWallet.getTransferHistoryList(
    wid = 10000L, //Wallet ID
    assetId = 6L, //Searching Asset ID (Optional)
    pageNo = 1, //Page Number. default: 1 (Optional)
    pageSize = 6, //Page Size. default: 1 (Optional)
    filter = InOut.All //Filter (Optional)
)

  • InOut.all = All

  • InOut.deposit = Deposit

  • InOut.withdrawal = Withdraw

See Also

Single Transaction Search

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

val transaction = fncyWallet.getTransferHistoryDetail(
    wid = 10000L, //Wallet wid
    historySeq = 10000L //FncyTransaion's historySeq
)

See Also

getTransferHistoryDetail
getTransferHistoryList
FncyTransaction
FncyTransaction
Filter