@dolomite-exchange/dolomite-margin
Version:
Ethereum Smart Contracts and TypeScript library used for the DolomiteMargin trading protocol
13 lines • 369 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OrderMapper = void 0;
class OrderMapper {
constructor(contracts) {
this.contracts = contracts;
}
mapOrder(order) {
throw new Error(`Cannot map order of type ${order.type}`);
}
}
exports.OrderMapper = OrderMapper;
//# sourceMappingURL=OrderMapper.js.map