Construct the output query.
Example:
// get available outputs in account 0 with a minimum amount
let outputs = await wallet.getOutputs({
isSpent: false,
isLocked: false,
accountIndex: 0,
minAmount: 750000n
});
All configuration is optional. All outputs are returned except those that don't meet criteria defined in this query.
Optional
query: Partial<MoneroOutputQuery>Updates this output by merging the latest information from the given output.
Merging can modify or build references to the output given so it should not be re-used or it should be copied before calling this method.
is the output to merge into this one
Generated using TypeDoc
Configuration to query wallet outputs.