Ran prettier...on development code! wtf?
Maybe something weird happened in the merge conflict resolution? Though I didn't see anything in particular.
This commit is contained in:
@@ -8,10 +8,22 @@ import { difference } from '../utils';
|
||||
|
||||
import { BUY_SOURCES, DEFAULT_GET_MARKET_ORDERS_OPTS, FEE_QUOTE_SOURCES, ONE_ETHER, SELL_SOURCES } from './constants';
|
||||
import { createFillPaths, getPathAdjustedRate, getPathAdjustedSlippage } from './fills';
|
||||
import { createOrdersFromPath, createSignedOrdersFromRfqtIndicativeQuotes, createSignedOrdersWithFillableAmounts, getNativeOrderTokens } from './orders';
|
||||
import {
|
||||
createOrdersFromPath,
|
||||
createSignedOrdersFromRfqtIndicativeQuotes,
|
||||
createSignedOrdersWithFillableAmounts,
|
||||
getNativeOrderTokens,
|
||||
} from './orders';
|
||||
import { findOptimalPath } from './path_optimizer';
|
||||
import { DexOrderSampler, getSampleAmounts } from './sampler';
|
||||
import { AggregationError, DexSample, ERC20BridgeSource, GetMarketOrdersOpts, OptimizedMarketOrder, OrderDomain } from './types';
|
||||
import {
|
||||
AggregationError,
|
||||
DexSample,
|
||||
ERC20BridgeSource,
|
||||
GetMarketOrdersOpts,
|
||||
OptimizedMarketOrder,
|
||||
OrderDomain,
|
||||
} from './types';
|
||||
|
||||
async function getRfqtIndicativeQuotesAsync(
|
||||
makerAssetData: string,
|
||||
|
||||
@@ -7,9 +7,25 @@ import { MarketOperation, SignedOrderWithFillableAmounts } from '../../types';
|
||||
import { RfqtIndicativeQuoteResponse } from '../quote_requestor';
|
||||
import { getCurveInfo, isCurveSource } from '../source_utils';
|
||||
|
||||
import { ERC20_PROXY_ID, NULL_ADDRESS, NULL_BYTES, ONE_HOUR_IN_SECONDS, ONE_SECOND_MS, WALLET_SIGNATURE, ZERO_AMOUNT } from './constants';
|
||||
import {
|
||||
ERC20_PROXY_ID,
|
||||
NULL_ADDRESS,
|
||||
NULL_BYTES,
|
||||
ONE_HOUR_IN_SECONDS,
|
||||
ONE_SECOND_MS,
|
||||
WALLET_SIGNATURE,
|
||||
ZERO_AMOUNT,
|
||||
} from './constants';
|
||||
import { collapsePath } from './fills';
|
||||
import { AggregationError, CollapsedFill, ERC20BridgeSource, Fill, NativeCollapsedFill, OptimizedMarketOrder, OrderDomain } from './types';
|
||||
import {
|
||||
AggregationError,
|
||||
CollapsedFill,
|
||||
ERC20BridgeSource,
|
||||
Fill,
|
||||
NativeCollapsedFill,
|
||||
OptimizedMarketOrder,
|
||||
OrderDomain,
|
||||
} from './types';
|
||||
|
||||
// tslint:disable completed-docs no-unnecessary-type-assertion
|
||||
|
||||
|
||||
Reference in New Issue
Block a user