UNPKG

@dolomite-exchange/dolomite-margin

Version:

Ethereum Smart Contracts and TypeScript library used for the DolomiteMargin trading protocol

11 lines (10 loc) 294 B
import { Order } from '../types'; import { Contracts } from '../lib/Contracts'; export declare class OrderMapper { protected contracts: Contracts; constructor(contracts: Contracts); mapOrder(order: Order): { bytes: number[]; exchangeWrapperAddress: string; }; }