cake_wallet/cw_core/lib/wallet_credentials.dart

20 lines
389 B
Dart
Raw Normal View History

import 'package:cw_core/wallet_info.dart';
abstract class WalletCredentials {
2022-10-12 17:09:57 +00:00
WalletCredentials({
required this.name,
this.height,
this.walletInfo,
2023-08-25 15:12:07 +00:00
this.password,
this.derivationType,
this.derivationPath,
});
final String name;
2022-10-12 17:09:57 +00:00
final int? height;
String? password;
2023-08-25 15:12:07 +00:00
DerivationType? derivationType;
String? derivationPath;
2022-10-12 17:09:57 +00:00
WalletInfo? walletInfo;
}