mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 03:59:23 +00:00
b3d579c24a
* chore: Initial setup for polygon package * feat: Add polygon node urls * feat: Add Polygon(MATIC) wallet WIP * feat: Add Polygon(MATIC) wallet WIP * feat: Add Polygon MATIC wallet [skip ci] * fix: Issue with create/restore wallet for polygon * feat: Add erc20 tokens for polygon * feat: Adding Polygon MATIC Wallet * fix: Add build command for polygon to workflow file to fix failing action * fix: Switch evm to not display additional balance * chore: Sync with remote * fix: Revert change to inject app script * feat: Add polygon erc20 tokens * feat: Increase migration version * fix: Restore from QR address validator fix * fix: Adjust wallet connect connection flow to adapt to wallet type * fix: Make wallet fetch nfts based on the current wallet type * fix: Make wallet fetch nfts based on the current wallet type * fix: Try fetching transactions with moralis * fix: Requested review changes * fix: Error creating new wallet * fix: Revert script * fix: Exclude spam NFTs from nft listing API response * Update default_erc20_tokens.dart * replace matic with matic poly * Add polygon wallet scheme to app links * style: reformat default_settings_migration.dart * minor enhancement * fix using different wallet function for setting the transaction priorities * fix: Add chain to calls * Add USDC.e to initial coins * Add other default polygon node * Use Polygon scan some UI fixes * Add polygon scan api key to secrets generation code --------- Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
69 lines
2.7 KiB
Dart
69 lines
2.7 KiB
Dart
import 'package:cake_wallet/ethereum/ethereum.dart';
|
|
import 'package:cake_wallet/bitcoin_cash/bitcoin_cash.dart';
|
|
import 'package:hive/hive.dart';
|
|
import 'package:mobx/mobx.dart';
|
|
import 'package:cake_wallet/monero/monero.dart';
|
|
import 'package:cake_wallet/nano/nano.dart';
|
|
import 'package:cake_wallet/store/app_store.dart';
|
|
import 'package:cw_core/wallet_base.dart';
|
|
import 'package:cake_wallet/core/wallet_creation_service.dart';
|
|
import 'package:cw_core/wallet_credentials.dart';
|
|
import 'package:cw_core/wallet_info.dart';
|
|
import 'package:cw_core/wallet_type.dart';
|
|
import 'package:cake_wallet/view_model/wallet_creation_vm.dart';
|
|
import 'package:cake_wallet/bitcoin/bitcoin.dart';
|
|
import 'package:cake_wallet/haven/haven.dart';
|
|
|
|
import '../polygon/polygon.dart';
|
|
|
|
part 'wallet_new_vm.g.dart';
|
|
|
|
class WalletNewVM = WalletNewVMBase with _$WalletNewVM;
|
|
|
|
abstract class WalletNewVMBase extends WalletCreationVM with Store {
|
|
WalletNewVMBase(AppStore appStore, WalletCreationService walletCreationService,
|
|
Box<WalletInfo> walletInfoSource,
|
|
{required WalletType type})
|
|
: selectedMnemonicLanguage = '',
|
|
super(appStore, walletInfoSource, walletCreationService, type: type, isRecovery: false);
|
|
|
|
@observable
|
|
String selectedMnemonicLanguage;
|
|
|
|
bool get hasLanguageSelector => type == WalletType.monero || type == WalletType.haven;
|
|
|
|
bool get hasSeedType => type == WalletType.monero;
|
|
|
|
@override
|
|
WalletCredentials getCredentials(dynamic _options) {
|
|
final options = _options as List<dynamic>?;
|
|
switch (type) {
|
|
case WalletType.monero:
|
|
return monero!.createMoneroNewWalletCredentials(
|
|
name: name, language: options!.first as String, isPolyseed: options.last as bool);
|
|
case WalletType.bitcoin:
|
|
return bitcoin!.createBitcoinNewWalletCredentials(name: name);
|
|
case WalletType.litecoin:
|
|
return bitcoin!.createBitcoinNewWalletCredentials(name: name);
|
|
case WalletType.haven:
|
|
return haven!.createHavenNewWalletCredentials(
|
|
name: name, language: options!.first as String);
|
|
case WalletType.ethereum:
|
|
return ethereum!.createEthereumNewWalletCredentials(name: name);
|
|
case WalletType.bitcoinCash:
|
|
return bitcoinCash!.createBitcoinCashNewWalletCredentials(name: name);
|
|
case WalletType.nano:
|
|
return nano!.createNanoNewWalletCredentials(name: name);
|
|
case WalletType.polygon:
|
|
return polygon!.createPolygonNewWalletCredentials(name: name);
|
|
default:
|
|
throw Exception('Unexpected type: ${type.toString()}');
|
|
}
|
|
}
|
|
|
|
@override
|
|
Future<WalletBase> process(WalletCredentials credentials) async {
|
|
walletCreationService.changeWalletType(type: type);
|
|
return walletCreationService.create(credentials);
|
|
}
|
|
}
|