2023-08-04 17:01:49 +00:00
|
|
|
import 'package:cake_wallet/ethereum/ethereum.dart';
|
2023-10-12 22:50:16 +00:00
|
|
|
import 'package:cake_wallet/bitcoin_cash/bitcoin_cash.dart';
|
CW-555-Add-Solana-Wallet (#1272)
* chore: Create cw_solana package and clean up files
* feat: Add Solana Wallet - Create, Restore form seed, restore from Key, Restore from QR, Send, Receive, transaction history, spl tokens
* fix: Make transactions file specific to solana only for solana transactions
* chore: Revert inject app details script
* fix: Fix issue with node and switch current node to main beta instead of testnet
* fix: Fix merge conflicts and adjust migration version
* fix: Fetch spl token error
Signed-off-by: Blazebrain <davidadegoke16@gmail.com>
* fix: Diplay and activate spl tokens bug
* fix: Review and fixes
* fix: reverted formatting for cryptocurrency class
* fix: Review comments, split sending flow into signing and sending separately, fix issues
* fix: Revert throwing unimplenented error
* chore: Fix comment
* chore: Fix comment
* fix: Errors in flow
* Update provider_types.dart [skip ci]
* fix: Issues with solana wallet
* Update solana_wallet.dart [skip ci]
* fix: Review comments
* fix: Date time config
* fix: Revert bash script for app details
* fix: Error with balance, displaying fees, fixing sent or received identifier bug, displaying token symbol with token transaction item in transactions list
* fix: Issues with address validation when sending spl tokens and walletconnect initial setup
* fix: Issues with sending, fetching transactions history, almost wrapping up walletconnect
* fix: Adjust imports that would affect monerocom building successfully
* fix: Refine transaction direction and continue work on walletconnect
* feat: Display SPL token transfers in the transaction history and finally settle the transaction direction
* fix: Delay in transactions history dispaly, show native token transactions first, then process spl token transactions
* feat: Switch node and revert solana chain id to previous id
* fix: Remove print statement
* fix: Remove await for transactions, fetch all transaction histories instantly and adjust solana send success message
* chore: Code refactoring and streamlined wallet type check for solana send success message
* fix: Make timeout error for node silent and add spl token images
---------
Signed-off-by: Blazebrain <davidadegoke16@gmail.com>
Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
2024-02-23 13:39:19 +00:00
|
|
|
import 'package:cake_wallet/solana/solana.dart';
|
2020-07-06 20:09:03 +00:00
|
|
|
import 'package:hive/hive.dart';
|
2020-06-20 07:10:00 +00:00
|
|
|
import 'package:mobx/mobx.dart';
|
2021-12-24 12:37:24 +00:00
|
|
|
import 'package:cake_wallet/monero/monero.dart';
|
2023-10-05 01:09:07 +00:00
|
|
|
import 'package:cake_wallet/nano/nano.dart';
|
2020-09-21 11:50:26 +00:00
|
|
|
import 'package:cake_wallet/store/app_store.dart';
|
2021-12-24 12:37:24 +00:00
|
|
|
import 'package:cw_core/wallet_base.dart';
|
2020-06-20 07:10:00 +00:00
|
|
|
import 'package:cake_wallet/core/wallet_creation_service.dart';
|
2021-12-24 12:37:24 +00:00
|
|
|
import 'package:cw_core/wallet_credentials.dart';
|
|
|
|
import 'package:cw_core/wallet_info.dart';
|
|
|
|
import 'package:cw_core/wallet_type.dart';
|
2020-06-20 07:10:00 +00:00
|
|
|
import 'package:cake_wallet/view_model/wallet_creation_vm.dart';
|
2021-12-24 12:37:24 +00:00
|
|
|
import 'package:cake_wallet/bitcoin/bitcoin.dart';
|
2022-03-30 15:57:04 +00:00
|
|
|
import 'package:cake_wallet/haven/haven.dart';
|
2023-11-22 21:37:05 +00:00
|
|
|
import 'advanced_privacy_settings_view_model.dart';
|
2020-06-20 07:10:00 +00:00
|
|
|
|
2023-12-02 02:26:43 +00:00
|
|
|
import '../polygon/polygon.dart';
|
|
|
|
|
2020-06-20 07:10:00 +00:00
|
|
|
part 'wallet_new_vm.g.dart';
|
|
|
|
|
|
|
|
class WalletNewVM = WalletNewVMBase with _$WalletNewVM;
|
|
|
|
|
|
|
|
abstract class WalletNewVMBase extends WalletCreationVM with Store {
|
2022-07-14 11:48:59 +00:00
|
|
|
WalletNewVMBase(AppStore appStore, WalletCreationService walletCreationService,
|
2023-11-22 21:37:05 +00:00
|
|
|
Box<WalletInfo> walletInfoSource, this.advancedPrivacySettingsViewModel,
|
2022-10-12 17:09:57 +00:00
|
|
|
{required WalletType type})
|
2020-06-20 07:10:00 +00:00
|
|
|
: selectedMnemonicLanguage = '',
|
2022-07-14 11:48:59 +00:00
|
|
|
super(appStore, walletInfoSource, walletCreationService, type: type, isRecovery: false);
|
2020-06-20 07:10:00 +00:00
|
|
|
|
2023-11-22 21:37:05 +00:00
|
|
|
final AdvancedPrivacySettingsViewModel advancedPrivacySettingsViewModel;
|
|
|
|
|
2020-06-20 07:10:00 +00:00
|
|
|
@observable
|
|
|
|
String selectedMnemonicLanguage;
|
|
|
|
|
2022-03-30 15:57:04 +00:00
|
|
|
bool get hasLanguageSelector => type == WalletType.monero || type == WalletType.haven;
|
2020-06-20 07:10:00 +00:00
|
|
|
|
2023-11-22 21:37:05 +00:00
|
|
|
int get seedPhraseWordsLength {
|
CW-555-Add-Solana-Wallet (#1272)
* chore: Create cw_solana package and clean up files
* feat: Add Solana Wallet - Create, Restore form seed, restore from Key, Restore from QR, Send, Receive, transaction history, spl tokens
* fix: Make transactions file specific to solana only for solana transactions
* chore: Revert inject app details script
* fix: Fix issue with node and switch current node to main beta instead of testnet
* fix: Fix merge conflicts and adjust migration version
* fix: Fetch spl token error
Signed-off-by: Blazebrain <davidadegoke16@gmail.com>
* fix: Diplay and activate spl tokens bug
* fix: Review and fixes
* fix: reverted formatting for cryptocurrency class
* fix: Review comments, split sending flow into signing and sending separately, fix issues
* fix: Revert throwing unimplenented error
* chore: Fix comment
* chore: Fix comment
* fix: Errors in flow
* Update provider_types.dart [skip ci]
* fix: Issues with solana wallet
* Update solana_wallet.dart [skip ci]
* fix: Review comments
* fix: Date time config
* fix: Revert bash script for app details
* fix: Error with balance, displaying fees, fixing sent or received identifier bug, displaying token symbol with token transaction item in transactions list
* fix: Issues with address validation when sending spl tokens and walletconnect initial setup
* fix: Issues with sending, fetching transactions history, almost wrapping up walletconnect
* fix: Adjust imports that would affect monerocom building successfully
* fix: Refine transaction direction and continue work on walletconnect
* feat: Display SPL token transfers in the transaction history and finally settle the transaction direction
* fix: Delay in transactions history dispaly, show native token transactions first, then process spl token transactions
* feat: Switch node and revert solana chain id to previous id
* fix: Remove print statement
* fix: Remove await for transactions, fetch all transaction histories instantly and adjust solana send success message
* chore: Code refactoring and streamlined wallet type check for solana send success message
* fix: Make timeout error for node silent and add spl token images
---------
Signed-off-by: Blazebrain <davidadegoke16@gmail.com>
Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
2024-02-23 13:39:19 +00:00
|
|
|
switch (type) {
|
|
|
|
case WalletType.monero:
|
|
|
|
if (advancedPrivacySettingsViewModel.isPolySeed) {
|
|
|
|
return 16;
|
|
|
|
}
|
|
|
|
return 25;
|
|
|
|
case WalletType.solana:
|
|
|
|
case WalletType.polygon:
|
|
|
|
case WalletType.ethereum:
|
|
|
|
case WalletType.bitcoinCash:
|
|
|
|
return advancedPrivacySettingsViewModel.seedPhraseLength.value;
|
|
|
|
default:
|
|
|
|
return 24;
|
2023-11-22 21:37:05 +00:00
|
|
|
}
|
CW-555-Add-Solana-Wallet (#1272)
* chore: Create cw_solana package and clean up files
* feat: Add Solana Wallet - Create, Restore form seed, restore from Key, Restore from QR, Send, Receive, transaction history, spl tokens
* fix: Make transactions file specific to solana only for solana transactions
* chore: Revert inject app details script
* fix: Fix issue with node and switch current node to main beta instead of testnet
* fix: Fix merge conflicts and adjust migration version
* fix: Fetch spl token error
Signed-off-by: Blazebrain <davidadegoke16@gmail.com>
* fix: Diplay and activate spl tokens bug
* fix: Review and fixes
* fix: reverted formatting for cryptocurrency class
* fix: Review comments, split sending flow into signing and sending separately, fix issues
* fix: Revert throwing unimplenented error
* chore: Fix comment
* chore: Fix comment
* fix: Errors in flow
* Update provider_types.dart [skip ci]
* fix: Issues with solana wallet
* Update solana_wallet.dart [skip ci]
* fix: Review comments
* fix: Date time config
* fix: Revert bash script for app details
* fix: Error with balance, displaying fees, fixing sent or received identifier bug, displaying token symbol with token transaction item in transactions list
* fix: Issues with address validation when sending spl tokens and walletconnect initial setup
* fix: Issues with sending, fetching transactions history, almost wrapping up walletconnect
* fix: Adjust imports that would affect monerocom building successfully
* fix: Refine transaction direction and continue work on walletconnect
* feat: Display SPL token transfers in the transaction history and finally settle the transaction direction
* fix: Delay in transactions history dispaly, show native token transactions first, then process spl token transactions
* feat: Switch node and revert solana chain id to previous id
* fix: Remove print statement
* fix: Remove await for transactions, fetch all transaction histories instantly and adjust solana send success message
* chore: Code refactoring and streamlined wallet type check for solana send success message
* fix: Make timeout error for node silent and add spl token images
---------
Signed-off-by: Blazebrain <davidadegoke16@gmail.com>
Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
2024-02-23 13:39:19 +00:00
|
|
|
}
|
2023-11-22 21:37:05 +00:00
|
|
|
|
2023-11-30 15:38:28 +00:00
|
|
|
bool get hasSeedType => type == WalletType.monero;
|
|
|
|
|
2020-06-20 07:10:00 +00:00
|
|
|
@override
|
2023-11-25 00:37:12 +00:00
|
|
|
WalletCredentials getCredentials(dynamic _options) {
|
2023-11-30 14:51:19 +00:00
|
|
|
final options = _options as List<dynamic>?;
|
2020-06-20 07:10:00 +00:00
|
|
|
switch (type) {
|
|
|
|
case WalletType.monero:
|
2022-10-12 17:09:57 +00:00
|
|
|
return monero!.createMoneroNewWalletCredentials(
|
2024-03-02 20:53:42 +00:00
|
|
|
name: name, language: options!.first as String, password: walletPassword, isPolyseed: options.last as bool);
|
2020-06-20 07:10:00 +00:00
|
|
|
case WalletType.bitcoin:
|
2023-03-30 22:33:59 +00:00
|
|
|
return bitcoin!.createBitcoinNewWalletCredentials(name: name, password: walletPassword);
|
2021-05-07 07:36:38 +00:00
|
|
|
case WalletType.litecoin:
|
2023-03-30 22:33:59 +00:00
|
|
|
return bitcoin!.createBitcoinNewWalletCredentials(name: name, password: walletPassword);
|
2022-03-30 15:57:04 +00:00
|
|
|
case WalletType.haven:
|
2022-10-12 17:09:57 +00:00
|
|
|
return haven!.createHavenNewWalletCredentials(
|
2023-12-04 20:55:08 +00:00
|
|
|
name: name, language: options!.first as String, password: walletPassword);
|
2023-08-04 17:01:49 +00:00
|
|
|
case WalletType.ethereum:
|
2023-09-07 18:28:40 +00:00
|
|
|
return ethereum!.createEthereumNewWalletCredentials(name: name, password: walletPassword);
|
2023-10-12 22:50:16 +00:00
|
|
|
case WalletType.bitcoinCash:
|
2023-10-13 14:29:46 +00:00
|
|
|
return bitcoinCash!.createBitcoinCashNewWalletCredentials(name: name, password: walletPassword);
|
2023-10-05 01:09:07 +00:00
|
|
|
case WalletType.nano:
|
2023-10-06 00:10:32 +00:00
|
|
|
return nano!.createNanoNewWalletCredentials(name: name, password: walletPassword);
|
2023-12-02 02:26:43 +00:00
|
|
|
case WalletType.polygon:
|
2023-12-04 20:55:08 +00:00
|
|
|
return polygon!.createPolygonNewWalletCredentials(name: name, password: walletPassword);
|
CW-555-Add-Solana-Wallet (#1272)
* chore: Create cw_solana package and clean up files
* feat: Add Solana Wallet - Create, Restore form seed, restore from Key, Restore from QR, Send, Receive, transaction history, spl tokens
* fix: Make transactions file specific to solana only for solana transactions
* chore: Revert inject app details script
* fix: Fix issue with node and switch current node to main beta instead of testnet
* fix: Fix merge conflicts and adjust migration version
* fix: Fetch spl token error
Signed-off-by: Blazebrain <davidadegoke16@gmail.com>
* fix: Diplay and activate spl tokens bug
* fix: Review and fixes
* fix: reverted formatting for cryptocurrency class
* fix: Review comments, split sending flow into signing and sending separately, fix issues
* fix: Revert throwing unimplenented error
* chore: Fix comment
* chore: Fix comment
* fix: Errors in flow
* Update provider_types.dart [skip ci]
* fix: Issues with solana wallet
* Update solana_wallet.dart [skip ci]
* fix: Review comments
* fix: Date time config
* fix: Revert bash script for app details
* fix: Error with balance, displaying fees, fixing sent or received identifier bug, displaying token symbol with token transaction item in transactions list
* fix: Issues with address validation when sending spl tokens and walletconnect initial setup
* fix: Issues with sending, fetching transactions history, almost wrapping up walletconnect
* fix: Adjust imports that would affect monerocom building successfully
* fix: Refine transaction direction and continue work on walletconnect
* feat: Display SPL token transfers in the transaction history and finally settle the transaction direction
* fix: Delay in transactions history dispaly, show native token transactions first, then process spl token transactions
* feat: Switch node and revert solana chain id to previous id
* fix: Remove print statement
* fix: Remove await for transactions, fetch all transaction histories instantly and adjust solana send success message
* chore: Code refactoring and streamlined wallet type check for solana send success message
* fix: Make timeout error for node silent and add spl token images
---------
Signed-off-by: Blazebrain <davidadegoke16@gmail.com>
Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
2024-02-23 13:39:19 +00:00
|
|
|
case WalletType.solana:
|
2024-03-02 20:53:42 +00:00
|
|
|
return solana!.createSolanaNewWalletCredentials(name: name, password: walletPassword);
|
2020-06-20 07:10:00 +00:00
|
|
|
default:
|
2023-10-06 00:38:39 +00:00
|
|
|
throw Exception('Unexpected type: ${type.toString()}');
|
2020-06-20 07:10:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
2020-11-12 16:31:53 +00:00
|
|
|
Future<WalletBase> process(WalletCredentials credentials) async {
|
2022-07-14 11:48:59 +00:00
|
|
|
walletCreationService.changeWalletType(type: type);
|
|
|
|
return walletCreationService.create(credentials);
|
2020-11-12 16:31:53 +00:00
|
|
|
}
|
2020-06-20 07:10:00 +00:00
|
|
|
}
|