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