@libra-opensource/client-sdk-typescript
Version:
10 lines (9 loc) • 339 B
TypeScript
import { BaseCommand, Logger } from './command';
export interface GetTransactionsCommand extends BaseCommand {
_: ['get_transactions'];
fromVersion: BigInt;
limit: number;
includeEvents: boolean;
prettify: boolean;
}
export declare function getTransactions(argv: GetTransactionsCommand, logger: Logger): Promise<void>;