diff options
author | Fabio Berger <me@fabioberger.com> | 2018-03-08 23:58:16 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-08 23:58:16 +0800 |
commit | 40ca846cdc44efa98ab9db11c16cff301020f11f (patch) | |
tree | 2fdaee2607881c657d2ccf71ddc6d407ed522aca /packages/web3-wrapper/src | |
parent | 03902b0b26fe443705dde20c42e78e1cb4bd3c4b (diff) | |
parent | 2a24f6e2ea9bc4f879c9dff2a60c92dec0e1cc48 (diff) | |
download | dexon-sol-tools-40ca846cdc44efa98ab9db11c16cff301020f11f.tar dexon-sol-tools-40ca846cdc44efa98ab9db11c16cff301020f11f.tar.gz dexon-sol-tools-40ca846cdc44efa98ab9db11c16cff301020f11f.tar.bz2 dexon-sol-tools-40ca846cdc44efa98ab9db11c16cff301020f11f.tar.lz dexon-sol-tools-40ca846cdc44efa98ab9db11c16cff301020f11f.tar.xz dexon-sol-tools-40ca846cdc44efa98ab9db11c16cff301020f11f.tar.zst dexon-sol-tools-40ca846cdc44efa98ab9db11c16cff301020f11f.zip |
Merge pull request #438 from 0xProject/extractDocs
Extract Docs Template To Separate Package
Diffstat (limited to 'packages/web3-wrapper/src')
-rw-r--r-- | packages/web3-wrapper/src/index.ts | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/packages/web3-wrapper/src/index.ts b/packages/web3-wrapper/src/index.ts index a07805344..64a19f531 100644 --- a/packages/web3-wrapper/src/index.ts +++ b/packages/web3-wrapper/src/index.ts @@ -1,19 +1,8 @@ -import { TransactionReceipt, TxData } from '@0xproject/types'; +import { RawLogEntry, TransactionReceipt, TxData } from '@0xproject/types'; import { BigNumber, promisify } from '@0xproject/utils'; import * as _ from 'lodash'; import * as Web3 from 'web3'; -interface RawLogEntry { - logIndex: string | null; - transactionIndex: string | null; - transactionHash: string; - blockHash: string | null; - blockNumber: string | null; - address: string; - data: string; - topics: string[]; -} - export class Web3Wrapper { private _web3: Web3; private _defaults: Partial<TxData>; |