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.

balance-sheet.d.ts 579B

1234567891011121314151617
  1. import { Amount } from '../common/types/objects';
  2. import { RippleAPI } from '..';
  3. export declare type BalanceSheetOptions = {
  4. excludeAddresses?: Array<string>;
  5. ledgerVersion?: number;
  6. };
  7. export declare type GetBalanceSheet = {
  8. balances?: Array<Amount>;
  9. assets?: Array<Amount>;
  10. obligations?: Array<{
  11. currency: string;
  12. value: string;
  13. }>;
  14. };
  15. declare function getBalanceSheet(this: RippleAPI, address: string, options?: BalanceSheetOptions): Promise<GetBalanceSheet>;
  16. export default getBalanceSheet;
  17. //# sourceMappingURL=balance-sheet.d.ts.map