cake_wallet/cw_ethereum/lib/ethereum_wallet.dart

16 lines
538 B
Dart
Raw Normal View History

2022-12-28 15:02:04 +00:00
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);
}