2023-10-30 22:58:15 +00:00
|
|
|
import 'dart:async';
|
|
|
|
|
2023-09-14 23:34:01 +00:00
|
|
|
import 'package:isar/isar.dart';
|
2023-11-03 19:46:55 +00:00
|
|
|
import 'package:meta/meta.dart';
|
2023-10-30 22:58:15 +00:00
|
|
|
import 'package:mutex/mutex.dart';
|
2023-09-14 23:34:01 +00:00
|
|
|
import 'package:stackwallet/db/isar/main_db.dart';
|
2023-11-03 19:46:55 +00:00
|
|
|
import 'package:stackwallet/models/isar/models/blockchain_data/address.dart';
|
2023-11-06 21:37:18 +00:00
|
|
|
import 'package:stackwallet/models/node_model.dart';
|
2023-11-03 19:46:55 +00:00
|
|
|
import 'package:stackwallet/models/paymint/fee_object_model.dart';
|
2023-10-30 22:58:15 +00:00
|
|
|
import 'package:stackwallet/services/event_bus/events/global/node_connection_status_changed_event.dart';
|
|
|
|
import 'package:stackwallet/services/event_bus/events/global/refresh_percent_changed_event.dart';
|
|
|
|
import 'package:stackwallet/services/event_bus/events/global/wallet_sync_status_changed_event.dart';
|
|
|
|
import 'package:stackwallet/services/event_bus/global_event_bus.dart';
|
2023-09-18 21:28:31 +00:00
|
|
|
import 'package:stackwallet/services/node_service.dart';
|
2023-11-03 19:46:55 +00:00
|
|
|
import 'package:stackwallet/utilities/amount/amount.dart';
|
2023-10-30 22:58:15 +00:00
|
|
|
import 'package:stackwallet/utilities/constants.dart';
|
2023-11-06 21:37:18 +00:00
|
|
|
import 'package:stackwallet/utilities/default_nodes.dart';
|
2023-09-14 23:34:01 +00:00
|
|
|
import 'package:stackwallet/utilities/enums/coin_enum.dart';
|
|
|
|
import 'package:stackwallet/utilities/flutter_secure_storage_interface.dart';
|
2023-10-30 22:58:15 +00:00
|
|
|
import 'package:stackwallet/utilities/logger.dart';
|
2023-09-18 21:28:31 +00:00
|
|
|
import 'package:stackwallet/utilities/prefs.dart';
|
|
|
|
import 'package:stackwallet/wallets/crypto_currency/crypto_currency.dart';
|
2023-11-03 19:46:55 +00:00
|
|
|
import 'package:stackwallet/wallets/isar/models/wallet_info.dart';
|
2023-09-14 23:34:01 +00:00
|
|
|
import 'package:stackwallet/wallets/models/tx_data.dart';
|
2023-11-15 21:59:01 +00:00
|
|
|
import 'package:stackwallet/wallets/wallet/impl/banano_wallet.dart';
|
2023-09-18 21:28:31 +00:00
|
|
|
import 'package:stackwallet/wallets/wallet/impl/bitcoin_wallet.dart';
|
2023-10-30 22:58:15 +00:00
|
|
|
import 'package:stackwallet/wallets/wallet/impl/bitcoincash_wallet.dart';
|
2023-11-15 17:40:43 +00:00
|
|
|
import 'package:stackwallet/wallets/wallet/impl/dogecoin_wallet.dart';
|
2023-11-14 15:57:17 +00:00
|
|
|
import 'package:stackwallet/wallets/wallet/impl/ecash_wallet.dart';
|
2023-10-30 22:58:15 +00:00
|
|
|
import 'package:stackwallet/wallets/wallet/impl/epiccash_wallet.dart';
|
2024-01-10 16:08:12 +00:00
|
|
|
import 'package:stackwallet/wallets/wallet/impl/ethereum_wallet.dart';
|
2023-11-16 21:30:01 +00:00
|
|
|
import 'package:stackwallet/wallets/wallet/impl/firo_wallet.dart';
|
2024-01-05 00:37:46 +00:00
|
|
|
import 'package:stackwallet/wallets/wallet/impl/litecoin_wallet.dart';
|
2024-01-08 19:40:07 +00:00
|
|
|
import 'package:stackwallet/wallets/wallet/impl/monero_wallet.dart';
|
2024-01-08 15:13:44 +00:00
|
|
|
import 'package:stackwallet/wallets/wallet/impl/namecoin_wallet.dart';
|
2023-11-15 21:59:01 +00:00
|
|
|
import 'package:stackwallet/wallets/wallet/impl/nano_wallet.dart';
|
2024-01-08 15:13:44 +00:00
|
|
|
import 'package:stackwallet/wallets/wallet/impl/particl_wallet.dart';
|
2023-11-20 16:37:28 +00:00
|
|
|
import 'package:stackwallet/wallets/wallet/impl/tezos_wallet.dart';
|
2023-11-06 21:37:18 +00:00
|
|
|
import 'package:stackwallet/wallets/wallet/impl/wownero_wallet.dart';
|
2024-01-08 19:40:07 +00:00
|
|
|
import 'package:stackwallet/wallets/wallet/intermediate/cryptonote_wallet.dart';
|
2023-11-16 22:25:20 +00:00
|
|
|
import 'package:stackwallet/wallets/wallet/wallet_mixin_interfaces/electrumx_interface.dart';
|
2023-11-20 15:15:36 +00:00
|
|
|
import 'package:stackwallet/wallets/wallet/wallet_mixin_interfaces/lelantus_interface.dart';
|
2023-11-16 22:25:20 +00:00
|
|
|
import 'package:stackwallet/wallets/wallet/wallet_mixin_interfaces/mnemonic_interface.dart';
|
|
|
|
import 'package:stackwallet/wallets/wallet/wallet_mixin_interfaces/multi_address_interface.dart';
|
2024-01-10 16:08:12 +00:00
|
|
|
import 'package:stackwallet/wallets/wallet/wallet_mixin_interfaces/private_key_interface.dart';
|
2023-10-31 15:17:49 +00:00
|
|
|
import 'package:stackwallet/wallets/wallet/wallet_mixin_interfaces/spark_interface.dart';
|
2023-09-14 23:34:01 +00:00
|
|
|
|
|
|
|
abstract class Wallet<T extends CryptoCurrency> {
|
2023-10-31 16:06:35 +00:00
|
|
|
// default to Transaction class. For TransactionV2 set to 2
|
2023-10-30 17:41:03 +00:00
|
|
|
int get isarTransactionVersion => 1;
|
|
|
|
|
2023-09-14 23:34:01 +00:00
|
|
|
Wallet(this.cryptoCurrency);
|
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
// ========== Properties =====================================================
|
|
|
|
|
|
|
|
final T cryptoCurrency;
|
|
|
|
|
|
|
|
late final MainDB mainDB;
|
|
|
|
late final SecureStorageInterface secureStorageInterface;
|
2023-11-06 21:37:18 +00:00
|
|
|
late final NodeService nodeService;
|
2023-09-18 21:28:31 +00:00
|
|
|
late final Prefs prefs;
|
2023-09-14 23:34:01 +00:00
|
|
|
|
2023-10-30 22:58:15 +00:00
|
|
|
final refreshMutex = Mutex();
|
|
|
|
|
2023-11-03 19:46:55 +00:00
|
|
|
WalletInfo get info => _walletInfo;
|
|
|
|
bool get isConnected => _isConnected;
|
2023-10-30 22:58:15 +00:00
|
|
|
|
|
|
|
bool get shouldAutoSync => _shouldAutoSync;
|
|
|
|
set shouldAutoSync(bool shouldAutoSync) {
|
|
|
|
if (_shouldAutoSync != shouldAutoSync) {
|
|
|
|
_shouldAutoSync = shouldAutoSync;
|
|
|
|
if (!shouldAutoSync) {
|
|
|
|
_periodicRefreshTimer?.cancel();
|
|
|
|
_periodicRefreshTimer = null;
|
|
|
|
_stopNetworkAlivePinging();
|
|
|
|
} else {
|
|
|
|
_startNetworkAlivePinging();
|
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ===== private properties ===========================================
|
|
|
|
|
|
|
|
late WalletInfo _walletInfo;
|
|
|
|
late final Stream<WalletInfo?> _walletInfoStream;
|
|
|
|
|
|
|
|
Timer? _periodicRefreshTimer;
|
|
|
|
Timer? _networkAliveTimer;
|
|
|
|
|
|
|
|
bool _shouldAutoSync = false;
|
|
|
|
|
|
|
|
bool _isConnected = false;
|
|
|
|
|
2023-11-06 21:37:18 +00:00
|
|
|
void xmrAndWowSyncSpecificFunctionThatShouldBeGottenRidOfInTheFuture(
|
|
|
|
bool flag) {
|
|
|
|
_isConnected = flag;
|
|
|
|
}
|
|
|
|
|
2023-09-14 23:34:01 +00:00
|
|
|
//============================================================================
|
|
|
|
// ========== Wallet Info Convenience Getters ================================
|
|
|
|
|
2023-11-03 19:46:55 +00:00
|
|
|
String get walletId => info.walletId;
|
2023-09-14 23:34:01 +00:00
|
|
|
|
2023-10-31 16:06:35 +00:00
|
|
|
/// Attempt to fetch the most recent chain height.
|
|
|
|
/// On failure return the last cached height.
|
|
|
|
Future<int> get chainHeight async {
|
|
|
|
try {
|
|
|
|
// attempt updating the walletInfo's cached height
|
|
|
|
await updateChainHeight();
|
|
|
|
} catch (e, s) {
|
|
|
|
// do nothing on failure (besides logging)
|
|
|
|
Logging.instance.log("$e\n$s", level: LogLevel.Warning);
|
|
|
|
}
|
|
|
|
|
|
|
|
// return regardless of whether it was updated or not as we want a
|
|
|
|
// number even if it isn't the most recent
|
2023-11-03 19:46:55 +00:00
|
|
|
return info.cachedChainHeight;
|
2023-10-31 16:06:35 +00:00
|
|
|
}
|
|
|
|
|
2023-09-14 23:34:01 +00:00
|
|
|
//============================================================================
|
|
|
|
// ========== Static Main ====================================================
|
|
|
|
|
|
|
|
/// Create a new wallet and save [walletInfo] to db.
|
|
|
|
static Future<Wallet> create({
|
|
|
|
required WalletInfo walletInfo,
|
|
|
|
required MainDB mainDB,
|
|
|
|
required SecureStorageInterface secureStorageInterface,
|
2023-09-18 21:28:31 +00:00
|
|
|
required NodeService nodeService,
|
|
|
|
required Prefs prefs,
|
2023-09-14 23:34:01 +00:00
|
|
|
String? mnemonic,
|
|
|
|
String? mnemonicPassphrase,
|
|
|
|
String? privateKey,
|
|
|
|
}) async {
|
|
|
|
final Wallet wallet = await _construct(
|
|
|
|
walletInfo: walletInfo,
|
|
|
|
mainDB: mainDB,
|
|
|
|
secureStorageInterface: secureStorageInterface,
|
2023-09-18 21:28:31 +00:00
|
|
|
nodeService: nodeService,
|
|
|
|
prefs: prefs,
|
2023-09-14 23:34:01 +00:00
|
|
|
);
|
|
|
|
|
2023-11-16 22:25:20 +00:00
|
|
|
if (wallet is MnemonicInterface) {
|
2024-01-08 19:40:07 +00:00
|
|
|
if (wallet is CryptonoteWallet) {
|
|
|
|
// currently a special case due to the xmr/wow libraries handling their
|
|
|
|
// own mnemonic generation
|
|
|
|
} else {
|
|
|
|
await secureStorageInterface.write(
|
|
|
|
key: mnemonicKey(walletId: walletInfo.walletId),
|
|
|
|
value: mnemonic!,
|
|
|
|
);
|
|
|
|
await secureStorageInterface.write(
|
|
|
|
key: mnemonicPassphraseKey(walletId: walletInfo.walletId),
|
|
|
|
value: mnemonicPassphrase!,
|
|
|
|
);
|
|
|
|
}
|
2023-11-14 15:57:48 +00:00
|
|
|
}
|
|
|
|
|
2024-01-10 16:08:12 +00:00
|
|
|
// TODO [prio=low] handle eth differently?
|
|
|
|
// This would need to be changed if we actually end up allowing eth wallets
|
|
|
|
// to be created with a private key instead of mnemonic only
|
|
|
|
if (wallet is PrivateKeyInterface && wallet is! EthereumWallet) {
|
2023-11-14 15:57:48 +00:00
|
|
|
await secureStorageInterface.write(
|
|
|
|
key: privateKeyKey(walletId: walletInfo.walletId),
|
|
|
|
value: privateKey!,
|
|
|
|
);
|
2023-09-14 23:34:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Store in db after wallet creation
|
2023-11-08 19:57:38 +00:00
|
|
|
await wallet.mainDB.isar.writeTxn(() async {
|
|
|
|
await wallet.mainDB.isar.walletInfo.put(wallet.info);
|
|
|
|
});
|
2023-09-14 23:34:01 +00:00
|
|
|
|
|
|
|
return wallet;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Load an existing wallet via [WalletInfo] using [walletId].
|
|
|
|
static Future<Wallet> load({
|
|
|
|
required String walletId,
|
|
|
|
required MainDB mainDB,
|
|
|
|
required SecureStorageInterface secureStorageInterface,
|
2023-09-18 21:28:31 +00:00
|
|
|
required NodeService nodeService,
|
|
|
|
required Prefs prefs,
|
2023-09-14 23:34:01 +00:00
|
|
|
}) async {
|
|
|
|
final walletInfo = await mainDB.isar.walletInfo
|
|
|
|
.where()
|
|
|
|
.walletIdEqualTo(walletId)
|
|
|
|
.findFirst();
|
|
|
|
|
|
|
|
if (walletInfo == null) {
|
|
|
|
throw Exception(
|
|
|
|
"WalletInfo not found for $walletId when trying to call Wallet.load()",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return await _construct(
|
2023-10-31 16:06:35 +00:00
|
|
|
walletInfo: walletInfo,
|
2023-09-14 23:34:01 +00:00
|
|
|
mainDB: mainDB,
|
|
|
|
secureStorageInterface: secureStorageInterface,
|
2023-09-18 21:28:31 +00:00
|
|
|
nodeService: nodeService,
|
|
|
|
prefs: prefs,
|
2023-09-14 23:34:01 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
// ========== Static Util ====================================================
|
|
|
|
|
2023-09-18 21:28:31 +00:00
|
|
|
// secure storage key
|
2023-09-14 23:34:01 +00:00
|
|
|
static String mnemonicKey({
|
|
|
|
required String walletId,
|
|
|
|
}) =>
|
|
|
|
"${walletId}_mnemonic";
|
|
|
|
|
2023-09-18 21:28:31 +00:00
|
|
|
// secure storage key
|
2023-09-14 23:34:01 +00:00
|
|
|
static String mnemonicPassphraseKey({
|
|
|
|
required String walletId,
|
|
|
|
}) =>
|
|
|
|
"${walletId}_mnemonicPassphrase";
|
|
|
|
|
2023-09-18 21:28:31 +00:00
|
|
|
// secure storage key
|
2023-09-14 23:34:01 +00:00
|
|
|
static String privateKeyKey({
|
|
|
|
required String walletId,
|
|
|
|
}) =>
|
|
|
|
"${walletId}_privateKey";
|
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
// ========== Private ========================================================
|
|
|
|
|
|
|
|
/// Construct wallet instance by [WalletType] from [walletInfo]
|
|
|
|
static Future<Wallet> _construct({
|
|
|
|
required WalletInfo walletInfo,
|
|
|
|
required MainDB mainDB,
|
|
|
|
required SecureStorageInterface secureStorageInterface,
|
2023-09-18 21:28:31 +00:00
|
|
|
required NodeService nodeService,
|
|
|
|
required Prefs prefs,
|
2023-09-14 23:34:01 +00:00
|
|
|
}) async {
|
2023-09-18 21:28:31 +00:00
|
|
|
final Wallet wallet = _loadWallet(
|
|
|
|
walletInfo: walletInfo,
|
|
|
|
);
|
2023-09-14 23:34:01 +00:00
|
|
|
|
2023-10-30 22:58:15 +00:00
|
|
|
wallet.prefs = prefs;
|
2023-11-06 21:37:18 +00:00
|
|
|
wallet.nodeService = nodeService;
|
2023-10-30 22:58:15 +00:00
|
|
|
|
2023-11-16 22:25:20 +00:00
|
|
|
if (wallet is ElectrumXInterface) {
|
2023-09-18 21:28:31 +00:00
|
|
|
// initialize electrumx instance
|
|
|
|
await wallet.updateNode();
|
2023-09-14 23:34:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return wallet
|
|
|
|
..secureStorageInterface = secureStorageInterface
|
|
|
|
..mainDB = mainDB
|
2023-10-30 22:58:15 +00:00
|
|
|
.._walletInfo = walletInfo
|
|
|
|
.._watchWalletInfo();
|
2023-09-14 23:34:01 +00:00
|
|
|
}
|
|
|
|
|
2023-09-18 21:28:31 +00:00
|
|
|
static Wallet _loadWallet({
|
2023-09-14 23:34:01 +00:00
|
|
|
required WalletInfo walletInfo,
|
|
|
|
}) {
|
|
|
|
switch (walletInfo.coin) {
|
2023-11-15 21:59:01 +00:00
|
|
|
case Coin.banano:
|
|
|
|
return BananoWallet(CryptoCurrencyNetwork.main);
|
|
|
|
|
2023-09-14 23:34:01 +00:00
|
|
|
case Coin.bitcoin:
|
2023-11-15 17:40:43 +00:00
|
|
|
return BitcoinWallet(CryptoCurrencyNetwork.main);
|
2023-09-14 23:34:01 +00:00
|
|
|
case Coin.bitcoinTestNet:
|
2023-11-15 17:40:43 +00:00
|
|
|
return BitcoinWallet(CryptoCurrencyNetwork.test);
|
2023-10-30 22:58:15 +00:00
|
|
|
|
|
|
|
case Coin.bitcoincash:
|
2023-11-15 17:40:43 +00:00
|
|
|
return BitcoincashWallet(CryptoCurrencyNetwork.main);
|
2023-10-30 22:58:15 +00:00
|
|
|
case Coin.bitcoincashTestnet:
|
2023-11-15 17:40:43 +00:00
|
|
|
return BitcoincashWallet(CryptoCurrencyNetwork.test);
|
|
|
|
|
|
|
|
case Coin.dogecoin:
|
|
|
|
return DogecoinWallet(CryptoCurrencyNetwork.main);
|
|
|
|
case Coin.dogecoinTestNet:
|
|
|
|
return DogecoinWallet(CryptoCurrencyNetwork.test);
|
2023-10-30 22:58:15 +00:00
|
|
|
|
2023-11-14 15:57:17 +00:00
|
|
|
case Coin.eCash:
|
2023-11-15 17:40:43 +00:00
|
|
|
return EcashWallet(CryptoCurrencyNetwork.main);
|
2023-11-14 15:57:17 +00:00
|
|
|
|
2023-10-30 22:58:15 +00:00
|
|
|
case Coin.epicCash:
|
2023-11-15 17:40:43 +00:00
|
|
|
return EpiccashWallet(CryptoCurrencyNetwork.main);
|
2023-11-06 21:37:18 +00:00
|
|
|
|
2024-01-10 16:08:12 +00:00
|
|
|
case Coin.ethereum:
|
|
|
|
return EthereumWallet(CryptoCurrencyNetwork.main);
|
|
|
|
|
2023-11-16 21:30:01 +00:00
|
|
|
case Coin.firo:
|
|
|
|
return FiroWallet(CryptoCurrencyNetwork.main);
|
|
|
|
case Coin.firoTestNet:
|
2023-10-31 15:17:49 +00:00
|
|
|
return FiroWallet(CryptoCurrencyNetwork.test);
|
2023-11-16 21:30:01 +00:00
|
|
|
|
2024-01-05 00:37:46 +00:00
|
|
|
case Coin.litecoin:
|
|
|
|
return LitecoinWallet(CryptoCurrencyNetwork.main);
|
|
|
|
case Coin.litecoinTestNet:
|
|
|
|
return LitecoinWallet(CryptoCurrencyNetwork.test);
|
|
|
|
|
2024-01-08 19:40:07 +00:00
|
|
|
case Coin.monero:
|
|
|
|
return MoneroWallet(CryptoCurrencyNetwork.main);
|
|
|
|
|
2024-01-08 15:13:44 +00:00
|
|
|
case Coin.namecoin:
|
|
|
|
return NamecoinWallet(CryptoCurrencyNetwork.main);
|
|
|
|
|
2023-11-15 21:59:01 +00:00
|
|
|
case Coin.nano:
|
|
|
|
return NanoWallet(CryptoCurrencyNetwork.main);
|
|
|
|
|
2024-01-08 15:13:44 +00:00
|
|
|
case Coin.particl:
|
|
|
|
return ParticlWallet(CryptoCurrencyNetwork.main);
|
|
|
|
|
2023-11-20 16:37:28 +00:00
|
|
|
case Coin.tezos:
|
|
|
|
return TezosWallet(CryptoCurrencyNetwork.main);
|
|
|
|
|
2023-11-06 21:37:18 +00:00
|
|
|
case Coin.wownero:
|
2023-11-15 17:40:43 +00:00
|
|
|
return WowneroWallet(CryptoCurrencyNetwork.main);
|
2023-09-14 23:34:01 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
// should never hit in reality
|
2023-11-06 17:37:23 +00:00
|
|
|
throw Exception("Unknown crypto currency: ${walletInfo.coin}");
|
2023-09-14 23:34:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-30 22:58:15 +00:00
|
|
|
// listen to changes in db and updated wallet info property as required
|
|
|
|
void _watchWalletInfo() {
|
2023-11-29 15:53:30 +00:00
|
|
|
_walletInfoStream = mainDB.isar.walletInfo.watchObject(
|
|
|
|
_walletInfo.id,
|
|
|
|
fireImmediately: true,
|
|
|
|
);
|
2023-10-30 22:58:15 +00:00
|
|
|
_walletInfoStream.forEach((element) {
|
|
|
|
if (element != null) {
|
|
|
|
_walletInfo = element;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void _startNetworkAlivePinging() {
|
|
|
|
// call once on start right away
|
|
|
|
_periodicPingCheck();
|
|
|
|
|
|
|
|
// then periodically check
|
|
|
|
_networkAliveTimer = Timer.periodic(
|
|
|
|
Constants.networkAliveTimerDuration,
|
|
|
|
(_) async {
|
|
|
|
_periodicPingCheck();
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void _periodicPingCheck() async {
|
|
|
|
bool hasNetwork = await pingCheck();
|
|
|
|
|
|
|
|
if (_isConnected != hasNetwork) {
|
|
|
|
NodeConnectionStatus status = hasNetwork
|
|
|
|
? NodeConnectionStatus.connected
|
|
|
|
: NodeConnectionStatus.disconnected;
|
|
|
|
GlobalEventBus.instance.fire(
|
|
|
|
NodeConnectionStatusChangedEvent(
|
|
|
|
status,
|
|
|
|
walletId,
|
|
|
|
cryptoCurrency.coin,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
_isConnected = hasNetwork;
|
|
|
|
if (hasNetwork) {
|
|
|
|
unawaited(refresh());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void _stopNetworkAlivePinging() {
|
|
|
|
_networkAliveTimer?.cancel();
|
|
|
|
_networkAliveTimer = null;
|
|
|
|
}
|
|
|
|
|
2023-09-14 23:34:01 +00:00
|
|
|
//============================================================================
|
|
|
|
// ========== Must override ==================================================
|
|
|
|
|
|
|
|
/// Create and sign a transaction in preparation to submit to network
|
|
|
|
Future<TxData> prepareSend({required TxData txData});
|
|
|
|
|
|
|
|
/// Broadcast transaction to network. On success update local wallet state to
|
|
|
|
/// reflect updated balance, transactions, utxos, etc.
|
|
|
|
Future<TxData> confirmSend({required TxData txData});
|
2023-09-18 21:28:31 +00:00
|
|
|
|
|
|
|
/// Recover a wallet by scanning the blockchain. If called on a new wallet a
|
|
|
|
/// normal recovery should occur. When called on an existing wallet and
|
|
|
|
/// [isRescan] is false then it should throw. Otherwise this function should
|
|
|
|
/// delete all locally stored blockchain data and refetch it.
|
|
|
|
Future<void> recover({required bool isRescan});
|
|
|
|
|
2023-10-31 17:13:26 +00:00
|
|
|
Future<void> updateNode();
|
|
|
|
|
2023-09-18 21:28:31 +00:00
|
|
|
Future<void> updateTransactions();
|
|
|
|
Future<void> updateBalance();
|
|
|
|
|
2024-01-05 18:59:01 +00:00
|
|
|
/// returns true if new utxos were added to local db
|
2024-01-05 00:37:46 +00:00
|
|
|
Future<bool> updateUTXOs();
|
|
|
|
|
2023-10-31 16:06:35 +00:00
|
|
|
/// updates the wallet info's cachedChainHeight
|
|
|
|
Future<void> updateChainHeight();
|
|
|
|
|
2023-11-03 19:46:55 +00:00
|
|
|
Future<Amount> estimateFeeFor(Amount amount, int feeRate);
|
|
|
|
|
|
|
|
Future<FeeObject> get fees;
|
|
|
|
|
|
|
|
Future<bool> pingCheck();
|
|
|
|
|
2023-10-30 22:58:15 +00:00
|
|
|
//===========================================
|
2024-01-05 18:59:01 +00:00
|
|
|
/// add transaction to local db temporarily. Used for quickly updating ui
|
|
|
|
/// before refresh can fetch data from server
|
|
|
|
Future<TxData> updateSentCachedTxData({required TxData txData}) async {
|
|
|
|
if (txData.tempTx != null) {
|
|
|
|
await mainDB.updateOrPutTransactionV2s([txData.tempTx!]);
|
|
|
|
}
|
|
|
|
return txData;
|
|
|
|
}
|
2023-10-30 22:58:15 +00:00
|
|
|
|
2023-11-06 21:37:18 +00:00
|
|
|
NodeModel getCurrentNode() {
|
|
|
|
final node = nodeService.getPrimaryNodeFor(coin: cryptoCurrency.coin) ??
|
|
|
|
DefaultNodes.getNodeFor(cryptoCurrency.coin);
|
|
|
|
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
2023-09-18 21:28:31 +00:00
|
|
|
// Should fire events
|
2023-10-30 22:58:15 +00:00
|
|
|
Future<void> refresh() async {
|
|
|
|
// Awaiting this lock could be dangerous.
|
|
|
|
// Since refresh is periodic (generally)
|
|
|
|
if (refreshMutex.isLocked) {
|
|
|
|
return;
|
|
|
|
}
|
2023-09-18 21:28:31 +00:00
|
|
|
|
2023-10-30 22:58:15 +00:00
|
|
|
try {
|
|
|
|
// this acquire should be almost instant due to above check.
|
|
|
|
// Slight possibility of race but should be irrelevant
|
|
|
|
await refreshMutex.acquire();
|
|
|
|
|
|
|
|
GlobalEventBus.instance.fire(
|
|
|
|
WalletSyncStatusChangedEvent(
|
|
|
|
WalletSyncStatus.syncing,
|
|
|
|
walletId,
|
|
|
|
cryptoCurrency.coin,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
GlobalEventBus.instance.fire(RefreshPercentChangedEvent(0.0, walletId));
|
2023-10-31 16:06:35 +00:00
|
|
|
await updateChainHeight();
|
2023-10-30 22:58:15 +00:00
|
|
|
|
|
|
|
GlobalEventBus.instance.fire(RefreshPercentChangedEvent(0.1, walletId));
|
|
|
|
|
2023-11-20 15:15:36 +00:00
|
|
|
// TODO: [prio=low] handle this differently. Extra modification of this file for coin specific functionality should be avoided.
|
|
|
|
if (this is MultiAddressInterface) {
|
|
|
|
await (this as MultiAddressInterface)
|
|
|
|
.checkReceivingAddressForTransactions();
|
|
|
|
}
|
|
|
|
|
2023-10-30 22:58:15 +00:00
|
|
|
GlobalEventBus.instance.fire(RefreshPercentChangedEvent(0.2, walletId));
|
|
|
|
|
2023-11-20 15:15:36 +00:00
|
|
|
// TODO: [prio=low] handle this differently. Extra modification of this file for coin specific functionality should be avoided.
|
|
|
|
if (this is MultiAddressInterface) {
|
|
|
|
await (this as MultiAddressInterface)
|
|
|
|
.checkChangeAddressForTransactions();
|
|
|
|
}
|
2023-10-30 22:58:15 +00:00
|
|
|
GlobalEventBus.instance.fire(RefreshPercentChangedEvent(0.3, walletId));
|
2023-12-15 19:30:51 +00:00
|
|
|
if (this is SparkInterface) {
|
|
|
|
// this should be called before updateTransactions()
|
|
|
|
await (this as SparkInterface).refreshSparkData();
|
|
|
|
}
|
2023-10-30 22:58:15 +00:00
|
|
|
|
|
|
|
GlobalEventBus.instance.fire(RefreshPercentChangedEvent(0.50, walletId));
|
2023-11-20 15:15:36 +00:00
|
|
|
final fetchFuture = updateTransactions();
|
|
|
|
final utxosRefreshFuture = updateUTXOs();
|
|
|
|
// if (currentHeight != storedHeight) {
|
2023-10-30 22:58:15 +00:00
|
|
|
GlobalEventBus.instance.fire(RefreshPercentChangedEvent(0.60, walletId));
|
|
|
|
|
2023-11-20 15:15:36 +00:00
|
|
|
await utxosRefreshFuture;
|
2023-10-30 22:58:15 +00:00
|
|
|
GlobalEventBus.instance.fire(RefreshPercentChangedEvent(0.70, walletId));
|
|
|
|
|
2023-11-20 15:15:36 +00:00
|
|
|
await fetchFuture;
|
2023-10-30 22:58:15 +00:00
|
|
|
GlobalEventBus.instance.fire(RefreshPercentChangedEvent(0.80, walletId));
|
|
|
|
|
|
|
|
// await getAllTxsToWatch();
|
2023-11-20 15:15:36 +00:00
|
|
|
|
|
|
|
// TODO: [prio=low] handle this differently. Extra modification of this file for coin specific functionality should be avoided.
|
|
|
|
if (this is LelantusInterface) {
|
|
|
|
await (this as LelantusInterface).refreshLelantusData();
|
|
|
|
}
|
2023-10-30 22:58:15 +00:00
|
|
|
GlobalEventBus.instance.fire(RefreshPercentChangedEvent(0.90, walletId));
|
|
|
|
|
|
|
|
await updateBalance();
|
|
|
|
|
|
|
|
GlobalEventBus.instance.fire(RefreshPercentChangedEvent(1.0, walletId));
|
|
|
|
GlobalEventBus.instance.fire(
|
|
|
|
WalletSyncStatusChangedEvent(
|
|
|
|
WalletSyncStatus.synced,
|
|
|
|
walletId,
|
|
|
|
cryptoCurrency.coin,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
if (shouldAutoSync) {
|
|
|
|
_periodicRefreshTimer ??=
|
|
|
|
Timer.periodic(const Duration(seconds: 150), (timer) async {
|
|
|
|
// chain height check currently broken
|
|
|
|
// if ((await chainHeight) != (await storedChainHeight)) {
|
|
|
|
|
|
|
|
// TODO: [prio=med] some kind of quick check if wallet needs to refresh to replace the old refreshIfThereIsNewData call
|
|
|
|
// if (await refreshIfThereIsNewData()) {
|
|
|
|
unawaited(refresh());
|
|
|
|
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} catch (error, strace) {
|
|
|
|
GlobalEventBus.instance.fire(
|
|
|
|
NodeConnectionStatusChangedEvent(
|
|
|
|
NodeConnectionStatus.disconnected,
|
|
|
|
walletId,
|
|
|
|
cryptoCurrency.coin,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
GlobalEventBus.instance.fire(
|
|
|
|
WalletSyncStatusChangedEvent(
|
|
|
|
WalletSyncStatus.unableToSync,
|
|
|
|
walletId,
|
|
|
|
cryptoCurrency.coin,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
Logging.instance.log(
|
|
|
|
"Caught exception in refreshWalletData(): $error\n$strace",
|
|
|
|
level: LogLevel.Error,
|
|
|
|
);
|
|
|
|
} finally {
|
|
|
|
refreshMutex.release();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-31 17:13:26 +00:00
|
|
|
Future<void> exit() async {
|
2023-11-07 18:19:42 +00:00
|
|
|
_periodicRefreshTimer?.cancel();
|
|
|
|
_networkAliveTimer?.cancel();
|
2023-10-31 17:13:26 +00:00
|
|
|
// TODO:
|
|
|
|
}
|
2023-09-18 21:28:31 +00:00
|
|
|
|
2023-11-03 19:46:55 +00:00
|
|
|
@mustCallSuper
|
2023-10-31 17:13:26 +00:00
|
|
|
Future<void> init() async {
|
2023-11-03 19:46:55 +00:00
|
|
|
final address = await getCurrentReceivingAddress();
|
2023-11-08 19:57:38 +00:00
|
|
|
if (address != null) {
|
|
|
|
await info.updateReceivingAddress(
|
|
|
|
newAddress: address.value,
|
|
|
|
isar: mainDB.isar,
|
|
|
|
);
|
|
|
|
}
|
2023-11-06 21:37:18 +00:00
|
|
|
|
2023-10-31 17:13:26 +00:00
|
|
|
// TODO: make sure subclasses override this if they require some set up
|
|
|
|
// especially xmr/wow/epiccash
|
|
|
|
}
|
2023-11-03 19:46:55 +00:00
|
|
|
|
|
|
|
// ===========================================================================
|
|
|
|
|
2023-11-07 16:25:04 +00:00
|
|
|
FilterOperation? get receivingAddressFilterOperation;
|
|
|
|
FilterOperation? get changeAddressFilterOperation;
|
|
|
|
|
|
|
|
Future<Address?> getCurrentReceivingAddress() async {
|
|
|
|
return await _addressQuery(receivingAddressFilterOperation);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<Address?> getCurrentChangeAddress() async {
|
|
|
|
return await _addressQuery(changeAddressFilterOperation);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<Address?> _addressQuery(FilterOperation? filterOperation) async {
|
|
|
|
return await mainDB.isar.addresses
|
|
|
|
.buildQuery<Address>(
|
|
|
|
whereClauses: [
|
|
|
|
IndexWhereClause.equalTo(
|
2023-11-08 19:57:38 +00:00
|
|
|
indexName: r"walletId",
|
2023-11-07 16:25:04 +00:00
|
|
|
value: [walletId],
|
|
|
|
),
|
|
|
|
],
|
|
|
|
filter: filterOperation,
|
|
|
|
sortBy: [
|
|
|
|
const SortProperty(
|
2023-11-08 19:57:38 +00:00
|
|
|
property: r"derivationIndex",
|
2023-11-07 16:25:04 +00:00
|
|
|
sort: Sort.desc,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
.findFirst();
|
|
|
|
}
|
2023-09-14 23:34:01 +00:00
|
|
|
}
|