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 597B

12345678910111213141516171819
  1. import { Ledger } from '../../common/types/objects';
  2. export declare type FormattedLedger = {
  3. stateHash: string;
  4. closeTime: string;
  5. closeTimeResolution: number;
  6. closeFlags: number;
  7. ledgerHash: string;
  8. ledgerVersion: number;
  9. parentLedgerHash: string;
  10. parentCloseTime: string;
  11. totalDrops: string;
  12. transactionHash: string;
  13. transactions?: Array<object>;
  14. transactionHashes?: Array<string>;
  15. rawState?: string;
  16. stateHashes?: Array<string>;
  17. };
  18. export declare function parseLedger(ledger: Ledger): FormattedLedger;
  19. //# sourceMappingURL=ledger.d.ts.map