MyCrypto/common/libs/messages.js
Daniel Ternyak e3d3b2c8e8 Refactor Send (#164)
* refactor SendTransaction component and transaction helper lib

* move transaction generation out of component; refactor tx types and simply tx generation

* remove commented out try/catch

* address todo; rename function/types

* fix imports and address comments
2017-09-05 16:28:19 -05:00

8 lines
189 B
JavaScript

// TODO - move this out of transaction; it's only for estimating gas costs
export type TransactionWithoutGas = {|
to: string,
value: string | number,
data: string,
from: string
|};