mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-05-08 05:42:27 +00:00
* feat: Enhance Wallet Groups Implementation by using hashedIdentifiers instead of parentAddresses * fix: Call updateWalletGroups even if group has an hash identifier * feat: Add secrets to workflow * feat: Enhance Wallet Groups Implementation by using hashedIdentifiers instead of parentAddresses * Handle wallet grouping edgecase where wallet is restored via non seed medium * fix: Valid wallet/wallet groups not showing up when choosing wallet/groups for creating new wallets
13 lines
257 B
Dart
13 lines
257 B
Dart
import 'package:cw_core/wallet_type.dart';
|
|
|
|
class NewWalletArguments {
|
|
final WalletType type;
|
|
final String? mnemonic;
|
|
final bool isChildWallet;
|
|
|
|
NewWalletArguments({
|
|
required this.type,
|
|
this.mnemonic,
|
|
this.isChildWallet = false,
|
|
});
|
|
}
|