UNPKG

bitcoin-cli-ts

Version:

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

15 lines (14 loc) 371 B
import { Bitcoind } from '../../types'; type SignMessageWithPrivkeyParams = { bitcoind: Bitcoind; privkey: string; message: string; }; /** * signmessagewithprivkey "privkey" "message" * * Sign a message with the private key of an address * */ export declare function signMessageWithPrivkey(params: SignMessageWithPrivkeyParams): Promise<any>; export {};