burst-whale-watch
Version:
An account watcher for Burstcoin
20 lines (19 loc) • 575 B
TypeScript
import { View } from "./view";
import { Transaction } from "@burstjs/core";
export interface AccountData {
id: string;
balance: string;
transactions: Transaction[];
}
export declare class TransactionTableView implements View {
private parentView;
private readonly table;
private loadingText;
private titleText;
constructor(parentView: any);
readonly element: any;
update(state: any, accountId: string, transactions: Transaction[]): void;
private getRecipientSenderId;
private getAmount;
private getPrintableTransactions;
}