MyCrypto/common/libs/messages.ts
James Prado d1174fb324 Address Miscellaneous Todos (#534)
* Fix TODO issues

* Update / Removd old comments

* Update types & Fix todos
2017-12-14 16:51:42 -08:00

7 lines
106 B
TypeScript

export interface TransactionWithoutGas {
to: string;
value: string;
data: string;
from: string;
}