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 *createrawexchange* command.
*/
export interface CreateRawExchangeRequest extends RpcRequest {
readonly method: 'createrawexchange';
readonly params?: any[];
}
/**
* JSON-RPC response for the *createrawexchange* command.
*/
export interface CreateRawExchangeResponse extends RpcResponse {
readonly result: CreateRawExchangeResult | null;
}
/**
* Result of the *createrawexchange* command.
*/
export declare type CreateRawExchangeResult = any;
export declare function CreateRawExchange(...params: any[]): CreateRawExchangeRequest;