Fix import ordering

This commit is contained in:
fabioberger 2019-11-12 10:52:04 +00:00
parent b2c0f8c158
commit efe8225d18
6 changed files with 6 additions and 6 deletions

View File

@ -13,10 +13,10 @@ import * as chai from 'chai';
import { LogWithDecodedArgs } from 'ethereum-types'; import { LogWithDecodedArgs } from 'ethereum-types';
import * as _ from 'lodash'; import * as _ from 'lodash';
import { Erc1155Wrapper } from '../src/erc1155_wrapper';
import { ERC1155MintableContract } from '../src/wrappers'; import { ERC1155MintableContract } from '../src/wrappers';
import { artifacts } from './artifacts'; import { artifacts } from './artifacts';
import { Erc1155Wrapper } from '../src/erc1155_wrapper';
import { DummyERC1155ReceiverBatchTokenReceivedEventArgs, DummyERC1155ReceiverContract } from './wrappers'; import { DummyERC1155ReceiverBatchTokenReceivedEventArgs, DummyERC1155ReceiverContract } from './wrappers';
chaiSetup.configure(); chaiSetup.configure();
const expect = chai.expect; const expect = chai.expect;

View File

@ -24,8 +24,8 @@ import { SignedOrder, SignedZeroExTransaction } from '@0x/types';
import { BigNumber } from '@0x/utils'; import { BigNumber } from '@0x/utils';
import { TransactionReceiptWithDecodedLogs } from 'ethereum-types'; import { TransactionReceiptWithDecodedLogs } from 'ethereum-types';
import { Actor, actorAddressesByName, FeeRecipient, Maker } from '../actors';
import { DeploymentManager } from '../../src/deployment_manager'; import { DeploymentManager } from '../../src/deployment_manager';
import { Actor, actorAddressesByName, FeeRecipient, Maker } from '../actors';
import { deployCoordinatorAsync } from './deploy_coordinator'; import { deployCoordinatorAsync } from './deploy_coordinator';

View File

@ -20,8 +20,8 @@ import {
import { ForwarderRevertErrors } from '@0x/order-utils'; import { ForwarderRevertErrors } from '@0x/order-utils';
import { BigNumber } from '@0x/utils'; import { BigNumber } from '@0x/utils';
import { Actor, actorAddressesByName, FeeRecipient, Maker } from '../actors';
import { DeploymentManager } from '../../src/deployment_manager'; import { DeploymentManager } from '../../src/deployment_manager';
import { Actor, actorAddressesByName, FeeRecipient, Maker } from '../actors';
import { deployForwarderAsync } from './deploy_forwarder'; import { deployForwarderAsync } from './deploy_forwarder';
import { ForwarderTestFactory } from './forwarder_test_factory'; import { ForwarderTestFactory } from './forwarder_test_factory';

View File

@ -6,8 +6,8 @@ import { OrderInfo, SignedOrder } from '@0x/types';
import { BigNumber, RevertError } from '@0x/utils'; import { BigNumber, RevertError } from '@0x/utils';
import { TransactionReceiptWithDecodedLogs } from 'ethereum-types'; import { TransactionReceiptWithDecodedLogs } from 'ethereum-types';
import { Actor, FeeRecipient, Maker } from '../actors';
import { DeploymentManager } from '../../src/deployment_manager'; import { DeploymentManager } from '../../src/deployment_manager';
import { Actor, FeeRecipient, Maker } from '../actors';
// Necessary bookkeeping to validate Forwarder results // Necessary bookkeeping to validate Forwarder results
interface ForwarderFillState { interface ForwarderFillState {

View File

@ -28,9 +28,9 @@ import { BigNumber } from '@0x/utils';
import { TransactionReceiptWithDecodedLogs } from 'ethereum-types'; import { TransactionReceiptWithDecodedLogs } from 'ethereum-types';
import * as _ from 'lodash'; import * as _ from 'lodash';
import { DeploymentManager } from '../../src/deployment_manager';
import { Actor } from '../actors/base'; import { Actor } from '../actors/base';
import { Maker } from '../actors/maker'; import { Maker } from '../actors/maker';
import { DeploymentManager } from '../../src/deployment_manager';
const { addFillResults, safeGetPartialAmountFloor } = ReferenceFunctions; const { addFillResults, safeGetPartialAmountFloor } = ReferenceFunctions;

View File

@ -20,8 +20,8 @@ import { SignedOrder } from '@0x/types';
import { BigNumber } from '@0x/utils'; import { BigNumber } from '@0x/utils';
import { TransactionReceiptWithDecodedLogs } from 'ethereum-types'; import { TransactionReceiptWithDecodedLogs } from 'ethereum-types';
import { actorAddressesByName, FeeRecipient, Maker, OperatorStakerMaker, StakerKeeper, Taker } from '../actors';
import { DeploymentManager } from '../../src/deployment_manager'; import { DeploymentManager } from '../../src/deployment_manager';
import { actorAddressesByName, FeeRecipient, Maker, OperatorStakerMaker, StakerKeeper, Taker } from '../actors';
const devUtils = new DevUtilsContract(constants.NULL_ADDRESS, provider); const devUtils = new DevUtilsContract(constants.NULL_ADDRESS, provider);
blockchainTests.resets('fillOrder integration tests', env => { blockchainTests.resets('fillOrder integration tests', env => {