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