multichain-api
Version:
MultiChain JSON-RPC Client
21 lines (20 loc) • 579 B
TypeScript
import { RpcRequest } from '../RpcRequest';
import { RpcResponse } from '../RpcResponse';
/**
* JSON-RPC request for the *sendfrom* command.
*/
export interface SendFromRequest extends RpcRequest {
readonly method: 'sendfrom';
readonly params?: any[];
}
/**
* JSON-RPC response for the *sendfrom* command.
*/
export interface SendFromResponse extends RpcResponse {
readonly result: SendFromResult | null;
}
/**
* Result of the *sendfrom* command.
*/
export declare type SendFromResult = any;
export declare function SendFrom(...params: any[]): SendFromRequest;