2023-08-04 20:01:49 +03:00
|
|
|
import 'package:cake_wallet/ethereum/ethereum.dart';
|
2023-10-13 01:50:16 +03: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 14:39:19 +01:00
|
|
|
import 'package:cake_wallet/solana/solana.dart';
|
2020-07-06 23:09:03 +03:00
|
|
|
import 'package:hive/hive.dart';
|
2020-06-20 10:10:00 +03:00
|
|
|
import 'package:mobx/mobx.dart';
|
2021-12-24 14:37:24 +02:00
|
|
|
import 'package:cake_wallet/monero/monero.dart';
|
2023-10-04 21:09:07 -04:00
|
|
|
import 'package:cake_wallet/nano/nano.dart';
|
2020-09-21 14:50:26 +03:00
|
|
|
import 'package:cake_wallet/store/app_store.dart';
|
2021-12-24 14:37:24 +02:00
|
|
|
import 'package:cw_core/wallet_base.dart';
|
2020-06-20 10:10:00 +03:00
|
|
|
import 'package:cake_wallet/core/wallet_creation_service.dart';
|
2021-12-24 14:37:24 +02: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 10:10:00 +03:00
|
|
|
import 'package:cake_wallet/view_model/wallet_creation_vm.dart';
|
2021-12-24 14:37:24 +02:00
|
|
|
import 'package:cake_wallet/bitcoin/bitcoin.dart';
|
2022-03-30 17:57:04 +02:00
|
|
|
import 'package:cake_wallet/haven/haven.dart';
|
2023-11-22 23:37:05 +02:00
|
|
|
import 'advanced_privacy_settings_view_model.dart';
|
2020-06-20 10:10:00 +03:00
|
|
|
|
2023-12-02 03:26:43 +01:00
|
|
|
import '../polygon/polygon.dart';
|
|
|
|
|
2020-06-20 10:10:00 +03:00
|
|
|
part 'wallet_new_vm.g.dart';
|
|
|
|
|
|
|
|
class WalletNewVM = WalletNewVMBase with _$WalletNewVM;
|
|
|
|
|
|
|
|
abstract class WalletNewVMBase extends WalletCreationVM with Store {
|
2022-07-14 12:48:59 +01:00
|
|
|
WalletNewVMBase(AppStore appStore, WalletCreationService walletCreationService,
|
2023-11-22 23:37:05 +02:00
|
|
|
Box<WalletInfo> walletInfoSource, this.advancedPrivacySettingsViewModel,
|
2022-10-12 13:09:57 -04:00
|
|
|
{required WalletType type})
|
2020-06-20 10:10:00 +03:00
|
|
|
: selectedMnemonicLanguage = '',
|
2022-07-14 12:48:59 +01:00
|
|
|
super(appStore, walletInfoSource, walletCreationService, type: type, isRecovery: false);
|
2020-06-20 10:10:00 +03:00
|
|
|
|
2023-11-22 23:37:05 +02:00
|
|
|
final AdvancedPrivacySettingsViewModel advancedPrivacySettingsViewModel;
|
|
|
|
|
2020-06-20 10:10:00 +03:00
|
|
|
@observable
|
|
|
|
String selectedMnemonicLanguage;
|
|
|
|
|
2022-03-30 17:57:04 +02:00
|
|
|
bool get hasLanguageSelector => type == WalletType.monero || type == WalletType.haven;
|
2020-06-20 10:10:00 +03:00
|
|
|
|
2023-11-22 23:37:05 +02: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 14:39:19 +01: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 23:37:05 +02: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 14:39:19 +01:00
|
|
|
}
|
2023-11-22 23:37:05 +02:00
|
|
|
|
2023-11-30 16:38:28 +01:00
|
|
|
bool get hasSeedType => type == WalletType.monero;
|
|
|
|
|
2020-06-20 10:10:00 +03:00
|
|
|
@override
|
2023-11-25 01:37:12 +01:00
|
|
|
WalletCredentials getCredentials(dynamic _options) {
|
2023-11-30 16:51:19 +02:00
|
|
|
final options = _options as List<dynamic>?;
|
2020-06-20 10:10:00 +03:00
|
|
|
switch (type) {
|
|
|
|
case WalletType.monero:
|
2022-10-12 13:09:57 -04:00
|
|
|
return monero!.createMoneroNewWalletCredentials(
|
2023-11-30 16:51:19 +02:00
|
|
|
name: name, language: options!.first as String, isPolyseed: options.last as bool);
|
2020-06-20 10:10:00 +03:00
|
|
|
case WalletType.bitcoin:
|
2022-10-12 13:09:57 -04:00
|
|
|
return bitcoin!.createBitcoinNewWalletCredentials(name: name);
|
2021-05-07 10:36:38 +03:00
|
|
|
case WalletType.litecoin:
|
2022-10-12 13:09:57 -04:00
|
|
|
return bitcoin!.createBitcoinNewWalletCredentials(name: name);
|
2022-03-30 17:57:04 +02:00
|
|
|
case WalletType.haven:
|
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 14:39:19 +01:00
|
|
|
return haven!
|
|
|
|
.createHavenNewWalletCredentials(name: name, language: options!.first as String);
|
2023-08-04 20:01:49 +03:00
|
|
|
case WalletType.ethereum:
|
|
|
|
return ethereum!.createEthereumNewWalletCredentials(name: name);
|
2023-10-13 01:50:16 +03:00
|
|
|
case WalletType.bitcoinCash:
|
|
|
|
return bitcoinCash!.createBitcoinCashNewWalletCredentials(name: name);
|
2023-10-04 21:09:07 -04:00
|
|
|
case WalletType.nano:
|
|
|
|
return nano!.createNanoNewWalletCredentials(name: name);
|
2023-12-02 03:26:43 +01:00
|
|
|
case WalletType.polygon:
|
|
|
|
return polygon!.createPolygonNewWalletCredentials(name: name);
|
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 14:39:19 +01:00
|
|
|
case WalletType.solana:
|
|
|
|
return solana!.createSolanaNewWalletCredentials(name: name);
|
2020-06-20 10:10:00 +03:00
|
|
|
default:
|
2023-10-13 01:50:16 +03:00
|
|
|
throw Exception('Unexpected type: ${type.toString()}');
|
2020-06-20 10:10:00 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
2020-11-12 18:31:53 +02:00
|
|
|
Future<WalletBase> process(WalletCredentials credentials) async {
|
2022-07-14 12:48:59 +01:00
|
|
|
walletCreationService.changeWalletType(type: type);
|
2024-03-02 03:52:20 +02:00
|
|
|
return walletCreationService.create(credentials);
|
2020-11-12 18:31:53 +02:00
|
|
|
}
|
2020-06-20 10:10:00 +03:00
|
|
|
}
|