您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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