mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-26 13:39:39 +00:00
27 lines
541 B
Dart
27 lines
541 B
Dart
import 'package:cw_core/transaction_info.dart';
|
|
|
|
class EthereumTransactionInfo extends TransactionInfo {
|
|
@override
|
|
String amountFormatted() {
|
|
// TODO: implement amountFormatted
|
|
throw UnimplementedError();
|
|
}
|
|
|
|
@override
|
|
void changeFiatAmount(String amount) {
|
|
// TODO: implement changeFiatAmount
|
|
}
|
|
|
|
@override
|
|
String? feeFormatted() {
|
|
// TODO: implement feeFormatted
|
|
throw UnimplementedError();
|
|
}
|
|
|
|
@override
|
|
String fiatAmount() {
|
|
// TODO: implement fiatAmount
|
|
throw UnimplementedError();
|
|
}
|
|
|
|
}
|