You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Ledger.d.ts 627B

123456789101112131415161718192021
  1. import { Transaction, TransactionMetadata } from '../transactions';
  2. import LedgerEntry from './LedgerEntry';
  3. export default interface Ledger {
  4. account_hash: string;
  5. accountState?: LedgerEntry[];
  6. close_flags: number;
  7. close_time: number;
  8. close_time_human: string;
  9. close_time_resolution: number;
  10. closed: boolean;
  11. ledger_hash: string;
  12. ledger_index: string;
  13. parent_close_time: number;
  14. parent_hash: string;
  15. total_coins: string;
  16. transaction_hash: string;
  17. transactions?: Array<Transaction & {
  18. metaData?: TransactionMetadata;
  19. }>;
  20. }
  21. //# sourceMappingURL=Ledger.d.ts.map