aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js/test/order_validation_test.ts
diff options
context:
space:
mode:
authorJacob Evans <jacob@dekz.net>2018-02-07 03:59:47 +0800
committerJacob Evans <jacob@dekz.net>2018-02-07 05:17:14 +0800
commite17ace397cd5d0f4b24d3af868eef8ae55889456 (patch)
tree19293a228c6efbd34e8e4e56e85b3a48683d921c /packages/0x.js/test/order_validation_test.ts
parentdf8de7ff517ba1386671c658d402fa7436ff4f74 (diff)
downloaddexon-0x-contracts-e17ace397cd5d0f4b24d3af868eef8ae55889456.tar
dexon-0x-contracts-e17ace397cd5d0f4b24d3af868eef8ae55889456.tar.gz
dexon-0x-contracts-e17ace397cd5d0f4b24d3af868eef8ae55889456.tar.bz2
dexon-0x-contracts-e17ace397cd5d0f4b24d3af868eef8ae55889456.tar.lz
dexon-0x-contracts-e17ace397cd5d0f4b24d3af868eef8ae55889456.tar.xz
dexon-0x-contracts-e17ace397cd5d0f4b24d3af868eef8ae55889456.tar.zst
dexon-0x-contracts-e17ace397cd5d0f4b24d3af868eef8ae55889456.zip
Move BlockParamLiteral to shared types package
Also BlockParam
Diffstat (limited to 'packages/0x.js/test/order_validation_test.ts')
-rw-r--r--packages/0x.js/test/order_validation_test.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/0x.js/test/order_validation_test.ts b/packages/0x.js/test/order_validation_test.ts
index 934e2e51f..b3dc42396 100644
--- a/packages/0x.js/test/order_validation_test.ts
+++ b/packages/0x.js/test/order_validation_test.ts
@@ -1,11 +1,12 @@
import { BlockchainLifecycle, devConstants, web3Factory } from '@0xproject/dev-utils';
+import { BlockParamLiteral } from '@0xproject/types';
import { BigNumber } from '@0xproject/utils';
import * as chai from 'chai';
import * as Sinon from 'sinon';
import * as Web3 from 'web3';
import { ExchangeContractErrs, SignedOrder, Token, ZeroEx, ZeroExError } from '../src';
-import { BlockParamLiteral, TradeSide, TransferType } from '../src/types';
+import { TradeSide, TransferType } from '../src/types';
import { ExchangeTransferSimulator } from '../src/utils/exchange_transfer_simulator';
import { OrderValidationUtils } from '../src/utils/order_validation_utils';