mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 20:39:51 +00:00
41 lines
1.4 KiB
Dart
41 lines
1.4 KiB
Dart
|
import 'package:cw_core/wallet_credentials.dart';
|
||
|
import 'package:cw_core/wallet_info.dart';
|
||
|
import 'package:cw_core/hardware/hardware_account_data.dart';
|
||
|
|
||
|
class DecredNewWalletCredentials extends WalletCredentials {
|
||
|
DecredNewWalletCredentials({required String name, WalletInfo? walletInfo})
|
||
|
: super(name: name, walletInfo: walletInfo);
|
||
|
}
|
||
|
|
||
|
class DecredRestoreWalletFromSeedCredentials extends WalletCredentials {
|
||
|
DecredRestoreWalletFromSeedCredentials(
|
||
|
{required String name,
|
||
|
required String password,
|
||
|
required this.mnemonic,
|
||
|
WalletInfo? walletInfo})
|
||
|
: super(name: name, password: password, walletInfo: walletInfo);
|
||
|
|
||
|
final String mnemonic;
|
||
|
}
|
||
|
|
||
|
class DecredRestoreWalletFromPubkeyCredentials extends WalletCredentials {
|
||
|
DecredRestoreWalletFromPubkeyCredentials(
|
||
|
{required String name,
|
||
|
required String password,
|
||
|
required String this.pubkey,
|
||
|
WalletInfo? walletInfo})
|
||
|
: super(name: name, password: password, walletInfo: walletInfo);
|
||
|
|
||
|
final String pubkey;
|
||
|
}
|
||
|
|
||
|
class DecredRestoreWalletFromHardwareCredentials extends WalletCredentials {
|
||
|
DecredRestoreWalletFromHardwareCredentials(
|
||
|
{required String name, required this.hwAccountData, WalletInfo? walletInfo})
|
||
|
: t = throw UnimplementedError(),
|
||
|
super(name: name, walletInfo: walletInfo);
|
||
|
|
||
|
final HardwareAccountData hwAccountData;
|
||
|
final void t;
|
||
|
}
|