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