mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-05-17 21:34:38 +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
48 lines
1.6 KiB
Dart
48 lines
1.6 KiB
Dart
part of 'bitcoin_cash.dart';
|
|
|
|
class CWBitcoinCash extends BitcoinCash {
|
|
@override
|
|
String getCashAddrFormat(String address) => AddressUtils.getCashAddrFormat(address);
|
|
|
|
@override
|
|
WalletService createBitcoinCashWalletService(
|
|
Box<WalletInfo> walletInfoSource, Box<UnspentCoinsInfo> unspentCoinSource, bool isDirect) {
|
|
return BitcoinCashWalletService(walletInfoSource, unspentCoinSource, isDirect);
|
|
}
|
|
|
|
@override
|
|
WalletCredentials createBitcoinCashNewWalletCredentials({
|
|
required String name,
|
|
WalletInfo? walletInfo,
|
|
String? password,
|
|
String? passphrase,
|
|
String? mnemonic,
|
|
}) =>
|
|
BitcoinCashNewWalletCredentials(
|
|
name: name,
|
|
walletInfo: walletInfo,
|
|
password: password,
|
|
passphrase: passphrase,
|
|
mnemonic: mnemonic,
|
|
);
|
|
|
|
@override
|
|
WalletCredentials createBitcoinCashRestoreWalletFromSeedCredentials(
|
|
{required String name, required String mnemonic, required String password, String? passphrase}) =>
|
|
BitcoinCashRestoreWalletFromSeedCredentials(
|
|
name: name, mnemonic: mnemonic, password: password, passphrase: passphrase);
|
|
|
|
@override
|
|
TransactionPriority deserializeBitcoinCashTransactionPriority(int raw) =>
|
|
BitcoinCashTransactionPriority.deserialize(raw: raw);
|
|
|
|
@override
|
|
TransactionPriority getDefaultTransactionPriority() => BitcoinCashTransactionPriority.medium;
|
|
|
|
@override
|
|
List<TransactionPriority> getTransactionPriorities() => BitcoinCashTransactionPriority.all;
|
|
|
|
@override
|
|
TransactionPriority getBitcoinCashTransactionPrioritySlow() =>
|
|
BitcoinCashTransactionPriority.slow;
|
|
}
|