Add data to TxData

This commit is contained in:
Leonid Logvinov 2018-02-23 10:57:23 -08:00
parent 5fbdf9cfb9
commit f5275d3ad7
No known key found for this signature in database
GPG Key ID: 0DD294BFDE8C95D4
2 changed files with 5 additions and 0 deletions

View File

@ -1,5 +1,9 @@
# CHANGELOG
## v0.2.4 - _TBD, 2018_
* Add `data` to `TxData` (#TBD)
## v0.2.1 - _February 9, 2018_
* Fix publishing issue where .npmignore was not properly excluding undesired content (#389)

View File

@ -2,6 +2,7 @@ import { BigNumber } from 'bignumber.js';
import * as Web3 from 'web3';
export interface TxData {
data?: string;
from?: string;
gas?: number;
gasPrice?: BigNumber;