aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-09-21 07:01:25 +0800
committerGitHub <noreply@github.com>2018-09-21 07:01:25 +0800
commitcbd72b6e3d72ba9a6e7c03bdb824949fdb08fcae (patch)
tree12d1d0bfa3205d818dca6b0ba098f61f98ebbf3f
parent3e70ab015ba2cf00064c985c0b76137b182abf7f (diff)
parent90e28220fafe3912e86502a5d8af50972680900f (diff)
downloaddexon-sol-tools-cbd72b6e3d72ba9a6e7c03bdb824949fdb08fcae.tar
dexon-sol-tools-cbd72b6e3d72ba9a6e7c03bdb824949fdb08fcae.tar.gz
dexon-sol-tools-cbd72b6e3d72ba9a6e7c03bdb824949fdb08fcae.tar.bz2
dexon-sol-tools-cbd72b6e3d72ba9a6e7c03bdb824949fdb08fcae.tar.lz
dexon-sol-tools-cbd72b6e3d72ba9a6e7c03bdb824949fdb08fcae.tar.xz
dexon-sol-tools-cbd72b6e3d72ba9a6e7c03bdb824949fdb08fcae.tar.zst
dexon-sol-tools-cbd72b6e3d72ba9a6e7c03bdb824949fdb08fcae.zip
Merge pull request #1077 from PhABC/patch-1
[ethereum-types] Add BigNumber[] in ContractEventArg Type Definition
-rw-r--r--packages/ethereum-types/src/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/ethereum-types/src/index.ts b/packages/ethereum-types/src/index.ts
index 3b6fdc77b..8f8f4b7e6 100644
--- a/packages/ethereum-types/src/index.ts
+++ b/packages/ethereum-types/src/index.ts
@@ -238,7 +238,7 @@ export enum AbiType {
Fallback = 'fallback',
}
-export type ContractEventArg = string | BigNumber | number | boolean;
+export type ContractEventArg = any;
export interface DecodedLogArgs {
[argName: string]: ContractEventArg;