mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-03 14:54:17 +00:00
d1174fb324
* Fix TODO issues * Update / Removd old comments * Update types & Fix todos
7 lines
106 B
TypeScript
7 lines
106 B
TypeScript
export interface TransactionWithoutGas {
|
|
to: string;
|
|
value: string;
|
|
data: string;
|
|
from: string;
|
|
}
|