UNPKG

bitcoin-cli-ts

Version:

Auto-generated Bitcoin client library for bitcoind JSON-RPC API

16 lines (15 loc) 545 B
// Auto synced from github actions. Don't change this file import { __rest } from "tslib"; import request from '../../rpc-request'; /** * listaddressgroupings * * Lists groups of addresses which have had their common ownership * made public by common use as inputs or as the resulting change * in past transactions * */ export function listAddressGroupings(params) { var bitcoind = params.bitcoind, methodParams = __rest(params, ["bitcoind"]); return request({ method: 'listaddressgroupings', params: methodParams }, bitcoind); }