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
|
||
|
|};
|