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.

trustlines.d.ts 450B

1234567891011
  1. import { RippleAPI } from '..';
  2. import { FormattedTrustline } from '../common/types/objects/trustlines';
  3. export declare type GetTrustlinesOptions = {
  4. counterparty?: string;
  5. currency?: string;
  6. limit?: number;
  7. ledgerVersion?: number;
  8. };
  9. declare function getTrustlines(this: RippleAPI, address: string, options?: GetTrustlinesOptions): Promise<FormattedTrustline[]>;
  10. export default getTrustlines;
  11. //# sourceMappingURL=trustlines.d.ts.map