aboutsummaryrefslogtreecommitdiffstats
path: root/packages/connect/src/types.ts
diff options
context:
space:
mode:
authorBrandon Millman <brandon.millman@gmail.com>2017-12-08 02:35:18 +0800
committerBrandon Millman <brandon.millman@gmail.com>2017-12-08 06:40:16 +0800
commit3c64b33f5c12e565b1567095034ff4cee86005b4 (patch)
treeaf3225d0f3236d2682a923d347d679f82b11a4f8 /packages/connect/src/types.ts
parentf1ecdcf6029debbd2183511080b302a4fccc6703 (diff)
downloaddexon-sol-tools-3c64b33f5c12e565b1567095034ff4cee86005b4.tar
dexon-sol-tools-3c64b33f5c12e565b1567095034ff4cee86005b4.tar.gz
dexon-sol-tools-3c64b33f5c12e565b1567095034ff4cee86005b4.tar.bz2
dexon-sol-tools-3c64b33f5c12e565b1567095034ff4cee86005b4.tar.lz
dexon-sol-tools-3c64b33f5c12e565b1567095034ff4cee86005b4.tar.xz
dexon-sol-tools-3c64b33f5c12e565b1567095034ff4cee86005b4.tar.zst
dexon-sol-tools-3c64b33f5c12e565b1567095034ff4cee86005b4.zip
Update connect types in preperation for publishing
Diffstat (limited to 'packages/connect/src/types.ts')
-rw-r--r--packages/connect/src/types.ts4
1 files changed, 1 insertions, 3 deletions
diff --git a/packages/connect/src/types.ts b/packages/connect/src/types.ts
index 0657a1d63..d02444a3e 100644
--- a/packages/connect/src/types.ts
+++ b/packages/connect/src/types.ts
@@ -63,7 +63,7 @@ export interface OrderbookChannelHandler {
order: SignedOrder) => void;
onError: (channel: OrderbookChannel, subscriptionOpts: OrderbookChannelSubscriptionOpts,
err: Error) => void;
- onClose: (channel: OrderbookChannel) => void;
+ onClose: (channel: OrderbookChannel, subscriptionOpts: OrderbookChannelSubscriptionOpts) => void;
}
export type OrderbookChannelMessage =
@@ -128,8 +128,6 @@ export interface OrdersRequest {
tokenAddress?: string;
makerTokenAddress?: string;
takerTokenAddress?: string;
- tokenA?: string;
- tokenB?: string;
maker?: string;
taker?: string;
trader?: string;