UNPKG

@bithomp/xrpl-api

Version:

A Bithomp JavaScript/TypeScript library for interacting with the XRP Ledger

11 lines (10 loc) 367 B
import { FormattedOrderSpecification } from '../../common/types/objects'; export type FormattedAccountOrder = { specification: FormattedOrderSpecification; properties: { maker: string; sequence: number; makerExchangeRate: string; }; }; export declare function parseAccountOrder(address: string, order: any): FormattedAccountOrder;