mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-09 18:45:38 +00:00
8 lines
181 B
TypeScript
8 lines
181 B
TypeScript
|
// TODO - move this out of transaction; it's only for estimating gas costs
|
||
|
export interface TransactionWithoutGas {
|
||
|
to: string;
|
||
|
value: string;
|
||
|
data: string;
|
||
|
from: string;
|
||
|
}
|