bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
16 lines (15 loc) • 407 B
TypeScript
import { Bitcoind } from '../../types';
type AddPeerAddressParams = {
bitcoind: Bitcoind;
address: string;
port: number;
tried?: boolean;
};
/**
* addpeeraddress "address" port ( tried )
*
* Add the address of a potential peer to an address manager table. This RPC is for testing only.
*
*/
export declare function addPeerAddress(params: AddPeerAddressParams): Promise<any>;
export {};