mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-26 13:39:39 +00:00
15 lines
538 B
Dart
15 lines
538 B
Dart
import 'package:cw_core/wallet_base.dart';
|
|
import 'package:cw_ethereum/ethereum_balance.dart';
|
|
import 'package:cw_ethereum/ethereum_transaction_history.dart';
|
|
import 'package:cw_ethereum/ethereum_transaction_info.dart';
|
|
import 'package:mobx/mobx.dart';
|
|
|
|
part 'ethereum_wallet.g.dart';
|
|
|
|
class EthereumWallet = EthereumWalletBase with _$EthereumWallet;
|
|
|
|
abstract class EthereumWalletBase
|
|
extends WalletBase<EthereumBalance, EthereumTransactionHistory, EthereumTransactionInfo>
|
|
with Store {
|
|
EthereumWalletBase(super.walletInfo);
|
|
}
|