mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-17 13:37:01 +00:00
* relayout rpc code, start contract helper * Dont ask for estimate if theres no value * Split out conversion of ether to wei hex into lib function. * big.js -> bignumber.js
15 lines
215 B
JavaScript
15 lines
215 B
JavaScript
// @flow
|
|
|
|
export type TransactionWithoutGas = {|
|
|
from?: string,
|
|
to: string,
|
|
gasPrice?: string,
|
|
value?: string,
|
|
data?: string
|
|
|};
|
|
|
|
export type Transaction = {|
|
|
...TransactionWithoutGas,
|
|
gas: string
|
|
|};
|