mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 12:09:43 +00:00
8237b89d56
* seed phrase option UI * bch seed length option * eth seed lengh option * update preseed info * update localization files
21 lines
441 B
Dart
21 lines
441 B
Dart
import 'package:cw_core/wallet_info.dart';
|
|
|
|
abstract class WalletCredentials {
|
|
WalletCredentials({
|
|
required this.name,
|
|
this.height,
|
|
this.seedPhraseLength,
|
|
this.walletInfo,
|
|
this.password,
|
|
this.derivationType,
|
|
this.derivationPath,
|
|
});
|
|
|
|
final String name;
|
|
final int? height;
|
|
int? seedPhraseLength;
|
|
String? password;
|
|
DerivationType? derivationType;
|
|
String? derivationPath;
|
|
WalletInfo? walletInfo;
|
|
}
|