UNPKG

@vafanassieff/bitcoin-cli-ts

Version:

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

14 lines 507 B
// Auto synced from github actions. Don't change this file import request from '../../rpc-request.js'; /** * getaddressinfo "address" * * Return information about the given bitcoin address. * Some of the information will only be present if the address is in the active wallet. * */ export function getAddressInfo(params) { const { bitcoind, ...methodParams } = params; return request({ method: 'getaddressinfo', params: methodParams }, bitcoind); } //# sourceMappingURL=get-address-info.js.map