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