diff --git a/contracts/test-utils/src/types.ts b/contracts/test-utils/src/types.ts index 8ba632cf33..acdcea433d 100644 --- a/contracts/test-utils/src/types.ts +++ b/contracts/test-utils/src/types.ts @@ -2,6 +2,8 @@ import { OrderWithoutDomain } from '@0x/types'; import { BigNumber } from '@0x/utils'; import { AbiDefinition } from 'ethereum-types'; +export { OrderStatus } from '@0x/types'; + export interface ERC20BalancesByOwner { [ownerAddress: string]: { [tokenAddress: string]: BigNumber; @@ -90,16 +92,6 @@ export interface Token { swarmHash: string; } -export enum OrderStatus { - Invalid, - InvalidMakerAssetAmount, - InvalidTakerAssetAmount, - Fillable, - Expired, - FullyFilled, - Cancelled, -} - export enum ContractName { TokenRegistry = 'TokenRegistry', MultiSigWalletWithTimeLock = 'MultiSigWalletWithTimeLock',