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.

balances.d.ts 580B

123456789101112131415161718
  1. import type { Client } from '..';
  2. import { LedgerIndex } from '../models/common';
  3. declare function getXrpBalance(this: Client, address: string, options?: {
  4. ledger_hash?: string;
  5. ledger_index?: LedgerIndex;
  6. }): Promise<string>;
  7. declare function getBalances(this: Client, address: string, options?: {
  8. ledger_hash?: string;
  9. ledger_index?: LedgerIndex;
  10. peer?: string;
  11. limit?: number;
  12. }): Promise<Array<{
  13. value: string;
  14. currency: string;
  15. issuer?: string | undefined;
  16. }>>;
  17. export { getXrpBalance, getBalances };
  18. //# sourceMappingURL=balances.d.ts.map