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.

transaction.d.ts 441B

12345678910
  1. import { FormattedTransactionType } from '../transaction/types';
  2. import { RippleAPI } from '..';
  3. export declare type TransactionOptions = {
  4. minLedgerVersion?: number;
  5. maxLedgerVersion?: number;
  6. includeRawTransaction?: boolean;
  7. };
  8. declare function getTransaction(this: RippleAPI, id: string, options?: TransactionOptions): Promise<FormattedTransactionType>;
  9. export default getTransaction;
  10. //# sourceMappingURL=transaction.d.ts.map