From 22d3981a7419d088f2bef53da77bcfe6771ebd94 Mon Sep 17 00:00:00 2001 From: Fabio Berger Date: Wed, 11 Jul 2018 12:34:13 +0200 Subject: Temporarily remove OrderWatcher from 0x.js --- packages/0x.js/package.json | 1 - packages/0x.js/src/0x.ts | 15 --------------- packages/0x.js/src/index.ts | 2 -- 3 files changed, 18 deletions(-) diff --git a/packages/0x.js/package.json b/packages/0x.js/package.json index 226452dbe..aafd404cd 100644 --- a/packages/0x.js/package.json +++ b/packages/0x.js/package.json @@ -104,7 +104,6 @@ "@0xproject/base-contract": "^0.3.5", "@0xproject/contract-wrappers": "^0.0.5", "@0xproject/order-utils": "^0.0.8", - "@0xproject/order-watcher": "^0.0.7", "@0xproject/sol-compiler": "^0.5.3", "@0xproject/types": "^0.8.2", "@0xproject/typescript-typings": "^0.4.2", diff --git a/packages/0x.js/src/0x.ts b/packages/0x.js/src/0x.ts index 001f336e7..3d2f23002 100644 --- a/packages/0x.js/src/0x.ts +++ b/packages/0x.js/src/0x.ts @@ -15,7 +15,6 @@ import { isValidSignature, signOrderHashAsync, } from '@0xproject/order-utils'; -import { OrderWatcher, OrderWatcherConfig } from '@0xproject/order-watcher'; import { ECSignature, Order, Provider, SignedOrder, TransactionReceiptWithDecodedLogs } from '@0xproject/types'; import { BigNumber } from '@0xproject/utils'; import { Web3Wrapper } from '@0xproject/web3-wrapper'; @@ -211,18 +210,4 @@ export class ZeroEx { ); return transactionReceiptWithDecodedLogs; } - /** - * Instantiates and returns a new OrderWatcher instance. - * Defaults to watching the pending state. - * @param config The configuration object. Look up the type for the description. - * @return An instance of the 0x.js OrderWatcher class. - */ - public async createOrderWatcherAsync(config?: OrderWatcherConfig): Promise { - // Hack: Get Web3Wrapper from ContractWrappers - const web3Wrapper: Web3Wrapper = (this._contractWrappers as any)._web3Wrapper; - const networkId = await web3Wrapper.getNetworkIdAsync(); - const provider = this._contractWrappers.getProvider(); - const orderWatcher = new OrderWatcher(provider, networkId, config); - return orderWatcher; - } } diff --git a/packages/0x.js/src/index.ts b/packages/0x.js/src/index.ts index 5c7ad6e1c..c79dbdb77 100644 --- a/packages/0x.js/src/index.ts +++ b/packages/0x.js/src/index.ts @@ -19,8 +19,6 @@ export { TransactionReceiptWithDecodedLogs, } from '@0xproject/types'; -export { OrderWatcherConfig } from '@0xproject/order-watcher'; - export { EventCallback, ContractEvent, -- cgit