multichain-api
Version:
MultiChain JSON-RPC Client
21 lines (20 loc) • 627 B
TypeScript
import { RpcRequest } from '../RpcRequest';
import { RpcResponse } from '../RpcResponse';
/**
* JSON-RPC request for the *getmempoolinfo* command.
*/
export interface GetMemPoolInfoRequest extends RpcRequest {
readonly method: 'getmempoolinfo';
readonly params?: undefined;
}
/**
* JSON-RPC response for the *getmempoolinfo* command.
*/
export interface GetMemPoolInfoResponse extends RpcResponse {
readonly result: GetMemPoolInfoResult | null;
}
/**
* Result of the *getmempoolinfo* command.
*/
export declare type GetMemPoolInfoResult = any;
export declare function GetMemPoolInfo(): GetMemPoolInfoRequest;