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.

account-order.d.ts 418B

1234567891011
  1. import { FormattedOrderSpecification } from '../../common/types/objects';
  2. export declare type FormattedAccountOrder = {
  3. specification: FormattedOrderSpecification;
  4. properties: {
  5. maker: string;
  6. sequence: number;
  7. makerExchangeRate: string;
  8. };
  9. };
  10. export declare function parseAccountOrder(address: string, order: any): FormattedAccountOrder;
  11. //# sourceMappingURL=account-order.d.ts.map