Add as an option to

This commit is contained in:
Leonid Logvinov 2018-02-26 16:33:12 -08:00
parent 0bb0bff0b3
commit 1657451f37
No known key found for this signature in database
GPG Key ID: 0DD294BFDE8C95D4
2 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@
## v0.2.4 - _TBD, 2018_ ## v0.2.4 - _TBD, 2018_
* Add `data` to `TxData` (#413) * Add `data` to `TxData` (#413)
* Add `number` as an option to `ContractEventArg` (#413)
## v0.2.1 - _February 9, 2018_ ## v0.2.1 - _February 9, 2018_

View File

@ -39,7 +39,7 @@ export enum AbiType {
Fallback = 'fallback', Fallback = 'fallback',
} }
export type ContractEventArg = string | BigNumber; export type ContractEventArg = string | BigNumber | number;
export interface DecodedLogArgs { export interface DecodedLogArgs {
[argName: string]: ContractEventArg; [argName: string]: ContractEventArg;