mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-26 13:39:39 +00:00
64 lines
2.1 KiB
Dart
64 lines
2.1 KiB
Dart
import 'dart:io';
|
|
|
|
import 'package:cw_core/balance.dart';
|
|
import 'package:cw_core/pathForWallet.dart';
|
|
import 'package:cw_core/transaction_history.dart';
|
|
import 'package:cw_core/transaction_info.dart';
|
|
import 'package:cw_core/wallet_base.dart';
|
|
import 'package:cw_core/wallet_info.dart';
|
|
import 'package:cw_core/wallet_service.dart';
|
|
import 'package:cw_core/wallet_type.dart';
|
|
import 'package:cw_ethereum/ethereum_wallet.dart';
|
|
import 'package:cw_ethereum/ethereum_wallet_creation_credentials.dart';
|
|
import 'package:hive/hive.dart';
|
|
|
|
class EthereumWalletService extends WalletService<EthereumNewWalletCredentials,
|
|
EthereumRestoreWalletFromSeedCredentials, EthereumRestoreWalletFromWIFCredentials> {
|
|
EthereumWalletService(this.walletInfoSource);
|
|
|
|
final Box<WalletInfo> walletInfoSource;
|
|
|
|
@override
|
|
Future<EthereumWallet> create(EthereumNewWalletCredentials credentials) async {
|
|
final path = await pathForWallet(name: credentials.name, type: getType());
|
|
await monero_wallet_manager.createWallet(
|
|
path: path,
|
|
password: credentials.password!,
|
|
);
|
|
final wallet = EthereumWallet(credentials.walletInfo!);
|
|
await wallet.init();
|
|
|
|
return wallet;
|
|
}
|
|
|
|
@override
|
|
WalletType getType() => WalletType.ethereum;
|
|
|
|
@override
|
|
Future<bool> isWalletExit(String name) async =>
|
|
File(await pathForWallet(name: name, type: getType())).existsSync();
|
|
|
|
@override
|
|
Future<WalletBase<Balance, TransactionHistoryBase<TransactionInfo>, TransactionInfo>> openWallet(
|
|
String name, String password) {
|
|
// TODO: implement openWallet
|
|
throw UnimplementedError();
|
|
}
|
|
|
|
@override
|
|
Future<void> remove(String wallet) async =>
|
|
File(await pathForWalletDir(name: wallet, type: getType())).delete(recursive: true);
|
|
|
|
@override
|
|
Future<WalletBase<Balance, TransactionHistoryBase<TransactionInfo>, TransactionInfo>>
|
|
restoreFromKeys(credentials) {
|
|
throw UnimplementedError();
|
|
}
|
|
|
|
@override
|
|
Future<WalletBase<Balance, TransactionHistoryBase<TransactionInfo>, TransactionInfo>>
|
|
restoreFromSeed(credentials) {
|
|
// TODO: implement restoreFromSeed
|
|
throw UnimplementedError();
|
|
}
|
|
}
|