diff options
author | Jacob Evans <jacob@dekz.net> | 2018-02-07 03:59:47 +0800 |
---|---|---|
committer | Jacob Evans <jacob@dekz.net> | 2018-02-07 05:17:14 +0800 |
commit | e17ace397cd5d0f4b24d3af868eef8ae55889456 (patch) | |
tree | 19293a228c6efbd34e8e4e56e85b3a48683d921c /packages/0x.js/src/contract_wrappers | |
parent | df8de7ff517ba1386671c658d402fa7436ff4f74 (diff) | |
download | dexon-sol-tools-e17ace397cd5d0f4b24d3af868eef8ae55889456.tar dexon-sol-tools-e17ace397cd5d0f4b24d3af868eef8ae55889456.tar.gz dexon-sol-tools-e17ace397cd5d0f4b24d3af868eef8ae55889456.tar.bz2 dexon-sol-tools-e17ace397cd5d0f4b24d3af868eef8ae55889456.tar.lz dexon-sol-tools-e17ace397cd5d0f4b24d3af868eef8ae55889456.tar.xz dexon-sol-tools-e17ace397cd5d0f4b24d3af868eef8ae55889456.tar.zst dexon-sol-tools-e17ace397cd5d0f4b24d3af868eef8ae55889456.zip |
Move BlockParamLiteral to shared types package
Also BlockParam
Diffstat (limited to 'packages/0x.js/src/contract_wrappers')
-rw-r--r-- | packages/0x.js/src/contract_wrappers/contract_wrapper.ts | 3 | ||||
-rw-r--r-- | packages/0x.js/src/contract_wrappers/exchange_wrapper.ts | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/packages/0x.js/src/contract_wrappers/contract_wrapper.ts b/packages/0x.js/src/contract_wrappers/contract_wrapper.ts index d913e8d9b..b313273b5 100644 --- a/packages/0x.js/src/contract_wrappers/contract_wrapper.ts +++ b/packages/0x.js/src/contract_wrappers/contract_wrapper.ts @@ -1,4 +1,4 @@ -import { LogWithDecodedArgs, RawLog } from '@0xproject/types'; +import { BlockParamLiteral, LogWithDecodedArgs, RawLog } from '@0xproject/types'; import { AbiDecoder, intervalUtils } from '@0xproject/utils'; import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Block, BlockAndLogStreamer } from 'ethereumjs-blockstream'; @@ -7,7 +7,6 @@ import * as Web3 from 'web3'; import { Artifact, - BlockParamLiteral, BlockRange, ContractEventArgs, ContractEvents, diff --git a/packages/0x.js/src/contract_wrappers/exchange_wrapper.ts b/packages/0x.js/src/contract_wrappers/exchange_wrapper.ts index 63c0d073a..e0c85505c 100644 --- a/packages/0x.js/src/contract_wrappers/exchange_wrapper.ts +++ b/packages/0x.js/src/contract_wrappers/exchange_wrapper.ts @@ -1,5 +1,5 @@ import { schemas } from '@0xproject/json-schemas'; -import { DecodedLogArgs, LogWithDecodedArgs } from '@0xproject/types'; +import { BlockParamLiteral, DecodedLogArgs, LogWithDecodedArgs } from '@0xproject/types'; import { AbiDecoder, BigNumber } from '@0xproject/utils'; import { Web3Wrapper } from '@0xproject/web3-wrapper'; import * as _ from 'lodash'; @@ -7,7 +7,6 @@ import * as Web3 from 'web3'; import { artifacts } from '../artifacts'; import { - BlockParamLiteral, BlockRange, ECSignature, EventCallback, |