Construct the transfer query.
Example:
// get incoming transfers to account 0, subaddress 1
let transfers = await wallet.getTransfers({
accountIndex: 0,
subaddressIndex: 0
});
All configuration is optional. All transfers are returned except those that don't meet criteria defined in this query.
Optional
query: Partial<MoneroTransferQuery>transfer query configuration (optional)
Updates this transaction by merging the latest information from the given transaction.
Merging can modify or build references to the transfer given so it should not be re-used or it should be copied before calling this method.
is the transfer to merge into this one
the merged transfer
Convenience method to query outputs by the locked state of their tx.
specifies if the output's tx must be locked or unlocked (optional)
this query for chaining
Generated using TypeDoc
Configuration to query wallet transfers.