UNPKG

bitcoin-cli-ts

Version:

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

15 lines (14 loc) 367 B
import { Bitcoind } from '../../types'; type KeypoolRefillParams = { bitcoind: Bitcoind; newsize?: number; }; /** * keypoolrefill ( newsize ) * * Fills the keypool. * Requires wallet passphrase to be set with walletpassphrase call if wallet is encrypted. * */ export declare function keypoolRefill(params: KeypoolRefillParams): Promise<any>; export {};