UNPKG

bitcoin-cli-ts

Version:

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

15 lines (14 loc) 346 B
import { Bitcoind } from '../../types'; type EchoIpcParams = { bitcoind: Bitcoind; arg: string; }; /** * echoipc "arg" * * Echo back the input argument, passing it through a spawned process in a multiprocess build. * This command is for testing. * */ export declare function echoIpc(params: EchoIpcParams): Promise<any>; export {};