@vafanassieff/bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
14 lines • 614 B
JavaScript
// Auto synced from github actions. Don't change this file
import request from '../../rpc-request.js';
/**
* listtransactions ( "label" count skip include_watchonly )
*
* If a label name is provided, this will return only incoming transactions paying to addresses with the specified label.
* Returns up to 'count' most recent transactions skipping the first 'from' transactions.
*
*/
export function listTransactions(params) {
const { bitcoind, ...methodParams } = params;
return request({ method: 'listtransactions', params: methodParams }, bitcoind);
}
//# sourceMappingURL=list-transactions.js.map