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