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.

transactions.d.ts 771B

1234567891011121314151617181920
  1. import { FormattedTransactionType } from '../transaction/types';
  2. import { RippleAPI } from '..';
  3. export declare type TransactionsOptions = {
  4. start?: string;
  5. limit?: number;
  6. minLedgerVersion?: number;
  7. maxLedgerVersion?: number;
  8. earliestFirst?: boolean;
  9. excludeFailures?: boolean;
  10. initiated?: boolean;
  11. counterparty?: string;
  12. types?: Array<string>;
  13. includeRawTransactions?: boolean;
  14. binary?: boolean;
  15. startTx?: FormattedTransactionType;
  16. };
  17. export declare type GetTransactionsResponse = Array<FormattedTransactionType>;
  18. declare function getTransactions(this: RippleAPI, address: string, options?: TransactionsOptions): Promise<GetTransactionsResponse>;
  19. export default getTransactions;
  20. //# sourceMappingURL=transactions.d.ts.map