UNPKG

bitcoin-cli-ts

Version:

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

14 lines (13 loc) 338 B
import { Bitcoind } from '../../types'; type WalletDisplayAddressParams = { bitcoind: Bitcoind; address: string; }; /** * walletdisplayaddress "address" * * Display address on an external signer for verification. * */ export declare function walletDisplayAddress(params: WalletDisplayAddressParams): Promise<any>; export {};