UNPKG

koinos-rpc

Version:

Typescript library to communicate with Koinos API via RPC

19 lines (18 loc) 531 B
import { Client } from '../Client'; export interface GetAccountHistoryResponse { values: any[]; } interface GetAccountHistoryParams { address: string; seq_num: null | number; limit?: number; ascending?: boolean; irreversible?: boolean; } export declare class AccountHistory { private readonly client; constructor(client: Client); getAccountHistory({ address, seq_num, limit, ascending, irreversible }: GetAccountHistoryParams): Promise<GetAccountHistoryResponse>; private call; } export {};