UNPKG

multichain-api

Version:
21 lines (20 loc) 719 B
import { RpcRequest } from '../RpcRequest'; import { RpcResponse } from '../RpcResponse'; /** * JSON-RPC request for the *preparelockunspentfrom* command. */ export interface PrepareLockUnspentFromRequest extends RpcRequest { readonly method: 'preparelockunspentfrom'; readonly params?: any[]; } /** * JSON-RPC response for the *preparelockunspentfrom* command. */ export interface PrepareLockUnspentFromResponse extends RpcResponse { readonly result: PrepareLockUnspentFromResult | null; } /** * Result of the *preparelockunspentfrom* command. */ export declare type PrepareLockUnspentFromResult = any; export declare function PrepareLockUnspentFrom(...params: any[]): PrepareLockUnspentFromRequest;