aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-06-14 17:27:33 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-06-14 17:27:33 +0800
commitba289c28430478c66ca7f755efeb307b56d4ffb5 (patch)
tree0d2b50fea0a26e489ca528eb3efb83e795a676b7 /src
parentaea8c7f7dfbd03eadc27bae94e2a6bdf2039afbf (diff)
downloaddexon-sol-tools-ba289c28430478c66ca7f755efeb307b56d4ffb5.tar
dexon-sol-tools-ba289c28430478c66ca7f755efeb307b56d4ffb5.tar.gz
dexon-sol-tools-ba289c28430478c66ca7f755efeb307b56d4ffb5.tar.bz2
dexon-sol-tools-ba289c28430478c66ca7f755efeb307b56d4ffb5.tar.lz
dexon-sol-tools-ba289c28430478c66ca7f755efeb307b56d4ffb5.tar.xz
dexon-sol-tools-ba289c28430478c66ca7f755efeb307b56d4ffb5.tar.zst
dexon-sol-tools-ba289c28430478c66ca7f755efeb307b56d4ffb5.zip
Remove types that are not used in public interface from export and rename EventEmitter to ContractEventEmitter and IndexFilterValues to IndexedFilterValues
Diffstat (limited to 'src')
-rw-r--r--src/contract_wrappers/exchange_wrapper.ts14
-rw-r--r--src/index.ts8
-rw-r--r--src/types.ts6
3 files changed, 12 insertions, 16 deletions
diff --git a/src/contract_wrappers/exchange_wrapper.ts b/src/contract_wrappers/exchange_wrapper.ts
index 14d633d66..4698089eb 100644
--- a/src/contract_wrappers/exchange_wrapper.ts
+++ b/src/contract_wrappers/exchange_wrapper.ts
@@ -14,9 +14,9 @@ import {
SignedOrder,
ContractEvent,
ExchangeEvents,
- EventEmitter,
+ ContractEventEmitter,
SubscriptionOpts,
- IndexFilterValues,
+ IndexedFilterValues,
CreateContractEvent,
ContractEventObj,
ContractResponse,
@@ -47,7 +47,7 @@ export class ExchangeWrapper extends ContractWrapper {
[ExchangeContractErrCodes.ERROR_FILL_BALANCE_ALLOWANCE]: ExchangeContractErrs.FILL_BALANCE_ALLOWANCE_ERROR,
};
private _exchangeContractIfExists?: ExchangeContract;
- private _exchangeLogEventEmitters: EventEmitter[];
+ private _exchangeLogEventEmitters: ContractEventEmitter[];
private _tokenWrapper: TokenWrapper;
private static _getOrderAddressesAndValues(order: Order): [OrderAddresses, OrderValues] {
const orderAddresses: OrderAddresses = [
@@ -517,11 +517,11 @@ export class ExchangeWrapper extends ContractWrapper {
* @param subscriptionOpts Subscriptions options that let you configure the subscription.
* @param indexFilterValues A JS object where the keys are indexed args returned by the event and
* the value is the value you are interested in. E.g `{maker: aUserAddressHex}`
- * @return EventEmitter object
+ * @return ContractEventEmitter object
*/
public async subscribeAsync(eventName: ExchangeEvents, subscriptionOpts: SubscriptionOpts,
- indexFilterValues: IndexFilterValues):
- Promise<EventEmitter> {
+ indexFilterValues: IndexedFilterValues):
+ Promise<ContractEventEmitter> {
const exchangeContract = await this._getExchangeContractAsync();
let createLogEvent: CreateContractEvent;
switch (eventName) {
@@ -561,7 +561,7 @@ export class ExchangeWrapper extends ContractWrapper {
await Promise.all(stopWatchingPromises);
this._exchangeLogEventEmitters = [];
}
- private _wrapEventEmitter(event: ContractEventObj): EventEmitter {
+ private _wrapEventEmitter(event: ContractEventObj): ContractEventEmitter {
const zeroExEvent = {
watch: event.watch.bind(event),
stopWatchingAsync: async () => {
diff --git a/src/index.ts b/src/index.ts
index b2963aca7..48e83fc19 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -8,19 +8,15 @@ export {
EventCallback,
EventCallbackAsync,
EventCallbackSync,
- ContractEventObj,
- CreateContractEvent,
- ExchangeContractErrCodes,
ExchangeContractErrs,
ContractEvent,
Token,
ExchangeEvents,
- IndexFilterValues,
+ IndexedFilterValues,
SubscriptionOpts,
BlockParam,
OrderFillOrKillRequest,
OrderCancellationRequest,
OrderFillRequest,
- DoneCallback,
- EventEmitter,
+ ContractEventEmitter,
} from './types';
diff --git a/src/types.ts b/src/types.ts
index 2197fbfc3..11d3182d8 100644
--- a/src/types.ts
+++ b/src/types.ts
@@ -44,7 +44,7 @@ export interface ContractEventObj {
watch: (eventWatch: EventCallback) => void;
stopWatching: () => void;
}
-export type CreateContractEvent = (indexFilterValues: IndexFilterValues,
+export type CreateContractEvent = (indexFilterValues: IndexedFilterValues,
subscriptionOpts: SubscriptionOpts) => ContractEventObj;
export interface ExchangeContract extends ContractInstance {
isValidSignature: {
@@ -238,7 +238,7 @@ export const ExchangeEvents = strEnum([
]);
export type ExchangeEvents = keyof typeof ExchangeEvents;
-export interface IndexFilterValues {
+export interface IndexedFilterValues {
[index: string]: any;
}
@@ -276,7 +276,7 @@ export interface Artifact {
networks: {[networkId: number]: any};
}
-export interface EventEmitter {
+export interface ContractEventEmitter {
watch: (eventCallback: EventCallback) => void;
stopWatchingAsync: () => Promise<void>;
}