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