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.

accountinfo.d.ts 571B

1234567891011121314
  1. import { RippleAPI } from '..';
  2. export declare type GetAccountInfoOptions = {
  3. ledgerVersion?: number;
  4. };
  5. export declare type FormattedGetAccountInfoResponse = {
  6. sequence: number;
  7. xrpBalance: string;
  8. ownerCount: number;
  9. previousInitiatedTransactionID: string;
  10. previousAffectingTransactionID: string;
  11. previousAffectingTransactionLedgerVersion: number;
  12. };
  13. export default function getAccountInfo(this: RippleAPI, address: string, options?: GetAccountInfoOptions): Promise<FormattedGetAccountInfoResponse>;
  14. //# sourceMappingURL=accountinfo.d.ts.map