dev
dart 23 lines 504 Bytes
Raw
1 import 'package:cw_core/wallet_info.dart';
2
3 abstract class WalletCredentials {
4 WalletCredentials({
5 required this.name,
6 this.height,
7 this.seedPhraseLength,
8 this.walletInfo,
9 this.password,
10 this.passphrase,
11 this.derivationInfo,
12 this.hardwareWalletType,
13 });
14
15 final String name;
16 final int? height;
17 int? seedPhraseLength;
18 String? password;
19 String? passphrase;
20 WalletInfo? walletInfo;
21 DerivationInfo? derivationInfo;
22 HardwareWalletType? hardwareWalletType;
23 }