Add NO_ABI_DECODER and ContractEvents

This commit is contained in:
Leonid Logvinov
2017-10-03 15:49:37 +03:00
parent 6bbdc98ba2
commit 671bc7c917

View File

@@ -15,6 +15,7 @@ export enum ZeroExError {
InvalidJump = 'INVALID_JUMP',
OutOfGas = 'OUT_OF_GAS',
NoNetworkId = 'NO_NETWORK_ID',
NoAbiDecoder = 'NO_ABI_DECODER',
}
/**
@@ -340,6 +341,8 @@ export enum TokenEvents {
Approval = 'Approval',
}
export type ContractEvents = TokenEvents|ExchangeEvents;
export interface IndexedFilterValues {
[index: string]: ContractEventArg;
}