mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-27 03:15:55 +00:00
e3d3b2c8e8
* 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
8 lines
189 B
JavaScript
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
|
|
|};
|