MyCrypto/common/libs/transaction.js

15 lines
215 B
JavaScript
Raw Normal View History

// @flow
export type TransactionWithoutGas = {|
from?: string,
to: string,
gasPrice?: string,
value?: string,
data?: string
|};
export type Transaction = {|
...TransactionWithoutGas,
gas: string
|};