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.

orders.d.ts 354B

12345678
  1. import { FormattedAccountOrder } from './parse/account-order';
  2. import { RippleAPI } from '..';
  3. export declare type GetOrdersOptions = {
  4. limit?: number;
  5. ledgerVersion?: number;
  6. };
  7. export default function getOrders(this: RippleAPI, address: string, options?: GetOrdersOptions): Promise<FormattedAccountOrder[]>;
  8. //# sourceMappingURL=orders.d.ts.map