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)
)
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
)