2022-08-26 08:11:35 +00:00
|
|
|
import 'dart:async';
|
|
|
|
import 'dart:io';
|
|
|
|
|
|
|
|
import 'package:cw_core/monero_amount_format.dart';
|
|
|
|
import 'package:cw_core/monero_transaction_priority.dart';
|
|
|
|
import 'package:cw_core/node.dart';
|
|
|
|
import 'package:cw_core/pending_transaction.dart';
|
2022-08-27 16:06:04 +00:00
|
|
|
import 'package:cw_core/sync_status.dart';
|
2022-08-26 08:11:35 +00:00
|
|
|
import 'package:cw_core/transaction_direction.dart';
|
|
|
|
import 'package:cw_core/wallet_base.dart';
|
|
|
|
import 'package:cw_core/wallet_credentials.dart';
|
|
|
|
import 'package:cw_core/wallet_info.dart';
|
|
|
|
import 'package:cw_core/wallet_service.dart';
|
|
|
|
import 'package:cw_core/wallet_type.dart';
|
|
|
|
import 'package:cw_monero/api/exceptions/creation_transaction_exception.dart';
|
2022-08-28 12:00:30 +00:00
|
|
|
import 'package:cw_monero/api/wallet.dart';
|
2022-08-26 08:11:35 +00:00
|
|
|
import 'package:cw_monero/monero_wallet.dart';
|
|
|
|
import 'package:cw_monero/pending_monero_transaction.dart';
|
|
|
|
import 'package:dart_numerics/dart_numerics.dart';
|
|
|
|
import 'package:decimal/decimal.dart';
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
import 'package:flutter_libmonero/core/key_service.dart';
|
|
|
|
import 'package:flutter_libmonero/core/wallet_creation_service.dart';
|
|
|
|
import 'package:flutter_libmonero/monero/monero.dart';
|
|
|
|
import 'package:flutter_libmonero/view_model/send/output.dart' as monero_output;
|
|
|
|
import 'package:http/http.dart';
|
2022-08-27 16:06:04 +00:00
|
|
|
import 'package:mutex/mutex.dart';
|
2022-08-26 08:11:35 +00:00
|
|
|
import 'package:stackwallet/hive/db.dart';
|
|
|
|
import 'package:stackwallet/models/node_model.dart';
|
|
|
|
import 'package:stackwallet/models/paymint/fee_object_model.dart';
|
|
|
|
import 'package:stackwallet/models/paymint/transactions_model.dart';
|
|
|
|
import 'package:stackwallet/models/paymint/utxo_model.dart';
|
|
|
|
import 'package:stackwallet/services/coins/coin_service.dart';
|
|
|
|
import 'package:stackwallet/services/event_bus/events/global/blocks_remaining_event.dart';
|
|
|
|
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/updated_in_background_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';
|
|
|
|
import 'package:stackwallet/services/node_service.dart';
|
|
|
|
import 'package:stackwallet/services/price.dart';
|
|
|
|
import 'package:stackwallet/utilities/constants.dart';
|
|
|
|
import 'package:stackwallet/utilities/default_nodes.dart';
|
|
|
|
import 'package:stackwallet/utilities/enums/coin_enum.dart';
|
|
|
|
import 'package:stackwallet/utilities/enums/fee_rate_type_enum.dart';
|
|
|
|
import 'package:stackwallet/utilities/flutter_secure_storage_interface.dart';
|
2022-11-23 18:31:31 +00:00
|
|
|
import 'package:stackwallet/utilities/format.dart';
|
2022-08-26 08:11:35 +00:00
|
|
|
import 'package:stackwallet/utilities/logger.dart';
|
|
|
|
import 'package:stackwallet/utilities/prefs.dart';
|
2022-11-12 22:04:16 +00:00
|
|
|
import 'package:stackwallet/utilities/stack_file_system.dart';
|
2022-08-26 08:11:35 +00:00
|
|
|
|
|
|
|
const int MINIMUM_CONFIRMATIONS = 10;
|
|
|
|
|
|
|
|
//https://github.com/monero-project/monero/blob/8361d60aef6e17908658128284899e3a11d808d4/src/cryptonote_config.h#L162
|
|
|
|
const String GENESIS_HASH_MAINNET =
|
|
|
|
"013c01ff0001ffffffffffff03029b2e4c0281c0b02e7c53291a94d1d0cbff8883f8024f5142ee494ffbbd08807121017767aafcde9be00dcfd098715ebcf7f410daebc582fda69d24a28e9d0bc890d1";
|
|
|
|
const String GENESIS_HASH_TESTNET =
|
|
|
|
"013c01ff0001ffffffffffff03029b2e4c0281c0b02e7c53291a94d1d0cbff8883f8024f5142ee494ffbbd08807121017767aafcde9be00dcfd098715ebcf7f410daebc582fda69d24a28e9d0bc890d1";
|
|
|
|
|
|
|
|
class MoneroWallet extends CoinServiceAPI {
|
|
|
|
static const integrationTestFlag =
|
|
|
|
bool.fromEnvironment("IS_INTEGRATION_TEST");
|
|
|
|
final _prefs = Prefs.instance;
|
|
|
|
|
|
|
|
Timer? timer;
|
|
|
|
Timer? moneroAutosaveTimer;
|
|
|
|
late Coin _coin;
|
|
|
|
|
2022-11-09 23:48:43 +00:00
|
|
|
late SecureStorageInterface _secureStore;
|
2022-08-26 08:11:35 +00:00
|
|
|
|
|
|
|
late PriceAPI _priceAPI;
|
|
|
|
|
|
|
|
Future<NodeModel> getCurrentNode() async {
|
2022-11-09 22:43:26 +00:00
|
|
|
return NodeService(secureStorageInterface: _secureStore)
|
|
|
|
.getPrimaryNodeFor(coin: coin) ??
|
2022-08-26 08:11:35 +00:00
|
|
|
DefaultNodes.getNodeFor(coin);
|
|
|
|
}
|
|
|
|
|
|
|
|
MoneroWallet(
|
|
|
|
{required String walletId,
|
|
|
|
required String walletName,
|
|
|
|
required Coin coin,
|
|
|
|
PriceAPI? priceAPI,
|
2022-11-09 23:48:43 +00:00
|
|
|
required SecureStorageInterface secureStore}) {
|
2022-08-26 08:11:35 +00:00
|
|
|
_walletId = walletId;
|
|
|
|
_walletName = walletName;
|
|
|
|
_coin = coin;
|
|
|
|
|
|
|
|
_priceAPI = priceAPI ?? PriceAPI(Client());
|
2022-11-09 22:43:26 +00:00
|
|
|
_secureStore = secureStore;
|
2022-08-26 08:11:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool _shouldAutoSync = false;
|
|
|
|
|
|
|
|
@override
|
|
|
|
bool get shouldAutoSync => _shouldAutoSync;
|
|
|
|
|
|
|
|
@override
|
|
|
|
set shouldAutoSync(bool shouldAutoSync) {
|
|
|
|
if (_shouldAutoSync != shouldAutoSync) {
|
|
|
|
_shouldAutoSync = shouldAutoSync;
|
|
|
|
if (!shouldAutoSync) {
|
|
|
|
timer?.cancel();
|
|
|
|
moneroAutosaveTimer?.cancel();
|
|
|
|
timer = null;
|
|
|
|
moneroAutosaveTimer = null;
|
|
|
|
stopNetworkAlivePinging();
|
|
|
|
} else {
|
|
|
|
startNetworkAlivePinging();
|
|
|
|
// Walletbase needs to be open for this to work
|
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<void> updateNode(bool shouldRefresh) async {
|
|
|
|
final node = await getCurrentNode();
|
|
|
|
|
|
|
|
final host = Uri.parse(node.host).host;
|
|
|
|
await walletBase?.connectToNode(
|
|
|
|
node: Node(uri: "$host:${node.port}", type: WalletType.monero));
|
|
|
|
|
|
|
|
// TODO: is this sync call needed? Do we need to notify ui here?
|
2022-08-27 16:06:04 +00:00
|
|
|
await walletBase?.startSync();
|
2022-08-26 08:11:35 +00:00
|
|
|
|
|
|
|
if (shouldRefresh) {
|
2022-08-27 16:06:04 +00:00
|
|
|
await refresh();
|
2022-08-26 08:11:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<List<String>> _getMnemonicList() async {
|
|
|
|
final mnemonicString =
|
|
|
|
await _secureStore.read(key: '${_walletId}_mnemonic');
|
|
|
|
if (mnemonicString == null) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
final List<String> data = mnemonicString.split(' ');
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<List<String>> get mnemonic => _getMnemonicList();
|
|
|
|
|
|
|
|
Future<int> get currentNodeHeight async {
|
2022-08-28 12:00:30 +00:00
|
|
|
try {
|
|
|
|
if (walletBase!.syncStatus! is SyncedSyncStatus &&
|
|
|
|
walletBase!.syncStatus!.progress() == 1.0) {
|
|
|
|
return await walletBase!.getNodeHeight();
|
|
|
|
}
|
|
|
|
} catch (e, s) {}
|
2022-08-27 16:06:04 +00:00
|
|
|
int _height = -1;
|
|
|
|
try {
|
|
|
|
_height = (walletBase!.syncStatus as SyncingSyncStatus).height;
|
2022-08-28 12:00:30 +00:00
|
|
|
} catch (e, s) {
|
2022-11-11 15:32:55 +00:00
|
|
|
// Logging.instance.log("$e $s", level: LogLevel.Warning);
|
2022-08-28 12:00:30 +00:00
|
|
|
}
|
2022-08-27 16:06:04 +00:00
|
|
|
|
|
|
|
int blocksRemaining = -1;
|
|
|
|
|
|
|
|
try {
|
|
|
|
blocksRemaining =
|
|
|
|
(walletBase!.syncStatus as SyncingSyncStatus).blocksLeft;
|
2022-08-28 12:00:30 +00:00
|
|
|
} catch (e, s) {
|
2022-11-11 15:32:55 +00:00
|
|
|
// Logging.instance.log("$e $s", level: LogLevel.Warning);
|
2022-08-28 12:00:30 +00:00
|
|
|
}
|
2022-08-27 16:06:04 +00:00
|
|
|
int currentHeight = _height + blocksRemaining;
|
|
|
|
if (_height == -1 || blocksRemaining == -1) {
|
|
|
|
currentHeight = int64MaxValue;
|
|
|
|
}
|
2022-08-26 08:11:35 +00:00
|
|
|
final cachedHeight = DB.instance
|
|
|
|
.get<dynamic>(boxName: walletId, key: "storedNodeHeight") as int? ??
|
|
|
|
0;
|
|
|
|
|
2022-08-27 16:06:04 +00:00
|
|
|
if (currentHeight > cachedHeight && currentHeight != int64MaxValue) {
|
|
|
|
await DB.instance.put<dynamic>(
|
2022-08-26 08:11:35 +00:00
|
|
|
boxName: walletId, key: "storedNodeHeight", value: currentHeight);
|
|
|
|
return currentHeight;
|
|
|
|
} else {
|
|
|
|
return cachedHeight;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-27 16:06:04 +00:00
|
|
|
Future<int> get currentSyncingHeight async {
|
2022-08-26 08:11:35 +00:00
|
|
|
//TODO return the tip of the monero blockchain
|
2022-08-28 12:00:30 +00:00
|
|
|
try {
|
|
|
|
if (walletBase!.syncStatus! is SyncedSyncStatus &&
|
|
|
|
walletBase!.syncStatus!.progress() == 1.0) {
|
2022-11-19 19:44:36 +00:00
|
|
|
// Logging.instance
|
|
|
|
// .log("currentSyncingHeight lol", level: LogLevel.Warning);
|
2022-08-28 12:00:30 +00:00
|
|
|
return getSyncingHeight();
|
|
|
|
}
|
|
|
|
} catch (e, s) {}
|
2022-08-27 16:06:04 +00:00
|
|
|
int syncingHeight = -1;
|
|
|
|
try {
|
|
|
|
syncingHeight = (walletBase!.syncStatus as SyncingSyncStatus).height;
|
2022-08-28 12:00:30 +00:00
|
|
|
} catch (e, s) {
|
2022-11-11 15:30:13 +00:00
|
|
|
// Logging.instance.log("$e $s", level: LogLevel.Warning);
|
2022-08-28 12:00:30 +00:00
|
|
|
}
|
2022-08-26 08:11:35 +00:00
|
|
|
final cachedHeight =
|
|
|
|
DB.instance.get<dynamic>(boxName: walletId, key: "storedSyncingHeight")
|
|
|
|
as int? ??
|
|
|
|
0;
|
|
|
|
|
|
|
|
if (syncingHeight > cachedHeight) {
|
2022-08-27 16:06:04 +00:00
|
|
|
await DB.instance.put<dynamic>(
|
2022-08-26 08:11:35 +00:00
|
|
|
boxName: walletId, key: "storedSyncingHeight", value: syncingHeight);
|
|
|
|
return syncingHeight;
|
|
|
|
} else {
|
|
|
|
return cachedHeight;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> updateStoredChainHeight({required int newHeight}) async {
|
|
|
|
await DB.instance.put<dynamic>(
|
|
|
|
boxName: walletId, key: "storedChainHeight", value: newHeight);
|
|
|
|
}
|
|
|
|
|
|
|
|
int get storedChainHeight {
|
|
|
|
return DB.instance.get<dynamic>(boxName: walletId, key: "storedChainHeight")
|
|
|
|
as int? ??
|
|
|
|
0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Increases the index for either the internal or external chain, depending on [chain].
|
|
|
|
/// [chain] - Use 0 for receiving (external), 1 for change (internal). Should not be any other value!
|
|
|
|
Future<void> _incrementAddressIndexForChain(int chain) async {
|
|
|
|
// Here we assume chain == 1 if it isn't 0
|
|
|
|
String indexKey = chain == 0 ? "receivingIndex" : "changeIndex";
|
|
|
|
|
|
|
|
final newIndex =
|
|
|
|
(DB.instance.get<dynamic>(boxName: walletId, key: indexKey)) + 1;
|
|
|
|
await DB.instance
|
|
|
|
.put<dynamic>(boxName: walletId, key: indexKey, value: newIndex);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> _checkCurrentReceivingAddressesForTransactions() async {
|
|
|
|
try {
|
|
|
|
await _checkReceivingAddressForTransactions();
|
|
|
|
} catch (e, s) {
|
|
|
|
Logging.instance.log(
|
|
|
|
"Exception rethrown from _checkCurrentReceivingAddressesForTransactions(): $e\n$s",
|
|
|
|
level: LogLevel.Error);
|
|
|
|
rethrow;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> _checkReceivingAddressForTransactions() async {
|
|
|
|
try {
|
|
|
|
int highestIndex = -1;
|
|
|
|
for (var element
|
|
|
|
in walletBase!.transactionHistory!.transactions!.entries) {
|
|
|
|
if (element.value.direction == TransactionDirection.incoming) {
|
|
|
|
int curAddressIndex =
|
|
|
|
element.value.additionalInfo!['addressIndex'] as int;
|
|
|
|
if (curAddressIndex > highestIndex) {
|
|
|
|
highestIndex = curAddressIndex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check the new receiving index
|
|
|
|
String indexKey = "receivingIndex";
|
|
|
|
final curIndex =
|
|
|
|
DB.instance.get<dynamic>(boxName: walletId, key: indexKey) as int;
|
|
|
|
if (highestIndex >= curIndex) {
|
|
|
|
// First increment the receiving index
|
|
|
|
await _incrementAddressIndexForChain(0);
|
|
|
|
final newReceivingIndex =
|
|
|
|
DB.instance.get<dynamic>(boxName: walletId, key: indexKey) as int;
|
|
|
|
|
|
|
|
// Use new index to derive a new receiving address
|
|
|
|
final newReceivingAddress =
|
|
|
|
await _generateAddressForChain(0, newReceivingIndex);
|
|
|
|
|
|
|
|
// Add that new receiving address to the array of receiving addresses
|
|
|
|
await _addToAddressesArrayForChain(newReceivingAddress, 0);
|
|
|
|
|
|
|
|
// Set the new receiving address that the service
|
|
|
|
|
|
|
|
_currentReceivingAddress = Future(() => newReceivingAddress);
|
|
|
|
}
|
|
|
|
} on SocketException catch (se, s) {
|
|
|
|
Logging.instance.log(
|
|
|
|
"SocketException caught in _checkReceivingAddressForTransactions(): $se\n$s",
|
|
|
|
level: LogLevel.Error);
|
|
|
|
return;
|
|
|
|
} catch (e, s) {
|
|
|
|
Logging.instance.log(
|
|
|
|
"Exception rethrown from _checkReceivingAddressForTransactions(): $e\n$s",
|
|
|
|
level: LogLevel.Error);
|
|
|
|
rethrow;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
bool get isRefreshing => refreshMutex;
|
|
|
|
|
|
|
|
bool refreshMutex = false;
|
|
|
|
|
|
|
|
Timer? syncPercentTimer;
|
|
|
|
|
2022-08-27 16:06:04 +00:00
|
|
|
Mutex syncHeightMutex = Mutex();
|
|
|
|
Future<void> stopSyncPercentTimer() async {
|
2022-08-26 08:11:35 +00:00
|
|
|
syncPercentTimer?.cancel();
|
|
|
|
syncPercentTimer = null;
|
|
|
|
}
|
|
|
|
|
2022-08-27 16:06:04 +00:00
|
|
|
Future<void> startSyncPercentTimer() async {
|
|
|
|
if (syncPercentTimer != null) {
|
|
|
|
return;
|
|
|
|
}
|
2022-08-26 08:11:35 +00:00
|
|
|
syncPercentTimer?.cancel();
|
|
|
|
GlobalEventBus.instance
|
|
|
|
.fire(RefreshPercentChangedEvent(highestPercentCached, walletId));
|
2022-08-27 16:06:04 +00:00
|
|
|
syncPercentTimer = Timer.periodic(const Duration(seconds: 30), (_) async {
|
|
|
|
if (syncHeightMutex.isLocked) {
|
2022-08-26 08:11:35 +00:00
|
|
|
return;
|
|
|
|
}
|
2022-08-27 16:06:04 +00:00
|
|
|
await syncHeightMutex.protect(() async {
|
|
|
|
// int restoreheight = walletBase!.walletInfo.restoreHeight ?? 0;
|
|
|
|
int _height = await currentSyncingHeight;
|
|
|
|
int _currentHeight = await currentNodeHeight;
|
2022-08-28 04:14:42 +00:00
|
|
|
double progress = 0;
|
|
|
|
try {
|
2022-08-28 12:00:30 +00:00
|
|
|
progress = walletBase!.syncStatus!.progress();
|
|
|
|
} catch (e, s) {
|
|
|
|
Logging.instance.log("$e $s", level: LogLevel.Warning);
|
|
|
|
}
|
2022-08-27 16:06:04 +00:00
|
|
|
|
|
|
|
final int blocksRemaining = _currentHeight - _height;
|
|
|
|
|
|
|
|
GlobalEventBus.instance
|
|
|
|
.fire(BlocksRemainingEvent(blocksRemaining, walletId));
|
|
|
|
|
2022-08-28 04:14:42 +00:00
|
|
|
if (progress == 1 && _currentHeight > 0 && _height > 0) {
|
2022-08-27 16:06:04 +00:00
|
|
|
await stopSyncPercentTimer();
|
|
|
|
GlobalEventBus.instance.fire(
|
|
|
|
WalletSyncStatusChangedEvent(
|
|
|
|
WalletSyncStatus.synced,
|
|
|
|
walletId,
|
|
|
|
coin,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
2022-08-26 08:11:35 +00:00
|
|
|
|
2022-08-27 16:06:04 +00:00
|
|
|
// for some reason this can be 0 which screws up the percent calculation
|
|
|
|
// int64MaxValue is NOT the best value to use here
|
|
|
|
if (_currentHeight < 1) {
|
|
|
|
_currentHeight = int64MaxValue;
|
|
|
|
}
|
2022-08-26 08:11:35 +00:00
|
|
|
|
2022-08-27 16:06:04 +00:00
|
|
|
if (_height < 1) {
|
|
|
|
_height = 1;
|
|
|
|
}
|
2022-08-26 08:11:35 +00:00
|
|
|
|
2022-08-28 04:14:42 +00:00
|
|
|
double restorePercent = progress;
|
2022-08-27 16:06:04 +00:00
|
|
|
double highestPercent = highestPercentCached;
|
2022-08-26 08:11:35 +00:00
|
|
|
|
2022-08-27 16:06:04 +00:00
|
|
|
Logging.instance.log(
|
|
|
|
"currentSyncingHeight: $_height, nodeHeight: $_currentHeight, restorePercent: $restorePercent, highestPercentCached: $highestPercentCached",
|
|
|
|
level: LogLevel.Info);
|
2022-08-26 08:11:35 +00:00
|
|
|
|
2022-08-27 16:06:04 +00:00
|
|
|
if (restorePercent > 0 && restorePercent <= 1) {
|
2022-08-28 04:14:42 +00:00
|
|
|
// if (restorePercent > highestPercent) {
|
|
|
|
highestPercent = restorePercent;
|
|
|
|
highestPercentCached = restorePercent;
|
|
|
|
// }
|
2022-08-26 08:11:35 +00:00
|
|
|
}
|
|
|
|
|
2022-08-27 16:06:04 +00:00
|
|
|
GlobalEventBus.instance
|
|
|
|
.fire(RefreshPercentChangedEvent(highestPercent, walletId));
|
|
|
|
});
|
2022-08-26 08:11:35 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
double get highestPercentCached =>
|
|
|
|
DB.instance.get<dynamic>(boxName: walletId, key: "highestPercentCached")
|
|
|
|
as double? ??
|
|
|
|
0;
|
|
|
|
set highestPercentCached(double value) => DB.instance.put<dynamic>(
|
|
|
|
boxName: walletId,
|
|
|
|
key: "highestPercentCached",
|
|
|
|
value: value,
|
|
|
|
);
|
|
|
|
|
|
|
|
/// Refreshes display data for the wallet
|
|
|
|
@override
|
|
|
|
Future<void> refresh() async {
|
|
|
|
if (refreshMutex) {
|
2022-08-31 17:49:19 +00:00
|
|
|
Logging.instance.log("$walletId $walletName refreshMutex denied",
|
|
|
|
level: LogLevel.Info);
|
2022-08-26 08:11:35 +00:00
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
refreshMutex = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (walletBase == null) {
|
|
|
|
throw Exception("Tried to call refresh() in monero without walletBase!");
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2022-08-27 16:06:04 +00:00
|
|
|
await startSyncPercentTimer();
|
2022-08-26 08:11:35 +00:00
|
|
|
GlobalEventBus.instance.fire(
|
|
|
|
WalletSyncStatusChangedEvent(
|
|
|
|
WalletSyncStatus.syncing,
|
|
|
|
walletId,
|
|
|
|
coin,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
2022-08-27 16:06:04 +00:00
|
|
|
final int _currentSyncingHeight = await currentSyncingHeight;
|
2022-08-26 08:11:35 +00:00
|
|
|
final int storedHeight = storedChainHeight;
|
2022-08-27 16:06:04 +00:00
|
|
|
int _currentNodeHeight = await currentNodeHeight;
|
2022-08-26 08:11:35 +00:00
|
|
|
|
2022-08-28 04:14:42 +00:00
|
|
|
double progress = 0;
|
|
|
|
try {
|
2022-08-28 12:00:30 +00:00
|
|
|
progress = (walletBase!.syncStatus!).progress();
|
|
|
|
} catch (e, s) {
|
2022-11-11 15:32:55 +00:00
|
|
|
// Logging.instance.log("$e $s", level: LogLevel.Warning);
|
2022-08-28 12:00:30 +00:00
|
|
|
}
|
2022-08-27 16:06:04 +00:00
|
|
|
await _fetchTransactionData();
|
2022-08-26 08:11:35 +00:00
|
|
|
|
|
|
|
bool stillSyncing = false;
|
|
|
|
Logging.instance.log(
|
2022-08-28 12:00:30 +00:00
|
|
|
"storedHeight: $storedHeight, _currentSyncingHeight: $_currentSyncingHeight, _currentNodeHeight: $_currentNodeHeight, progress: $progress, issynced: ${await walletBase!.isConnected()}",
|
2022-08-26 08:11:35 +00:00
|
|
|
level: LogLevel.Info);
|
2022-08-28 12:00:30 +00:00
|
|
|
|
2022-08-28 04:14:42 +00:00
|
|
|
if (progress < 1.0) {
|
2022-08-26 08:11:35 +00:00
|
|
|
stillSyncing = true;
|
|
|
|
}
|
|
|
|
|
2022-08-27 16:06:04 +00:00
|
|
|
if (_currentSyncingHeight > storedHeight) {
|
2022-08-26 08:11:35 +00:00
|
|
|
// 0 is returned from monero as I assume an error?????
|
2022-08-27 16:06:04 +00:00
|
|
|
if (_currentSyncingHeight > 0) {
|
2022-08-26 08:11:35 +00:00
|
|
|
// 0 failed to fetch current height???
|
|
|
|
await updateStoredChainHeight(newHeight: _currentSyncingHeight);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
await _checkCurrentReceivingAddressesForTransactions();
|
|
|
|
String indexKey = "receivingIndex";
|
|
|
|
final curIndex =
|
|
|
|
DB.instance.get<dynamic>(boxName: walletId, key: indexKey) as int;
|
|
|
|
// Use new index to derive a new receiving address
|
|
|
|
try {
|
|
|
|
final newReceivingAddress = await _generateAddressForChain(0, curIndex);
|
|
|
|
_currentReceivingAddress = Future(() => newReceivingAddress);
|
|
|
|
} catch (e, s) {
|
|
|
|
Logging.instance.log(
|
|
|
|
"Failed to call _generateAddressForChain(0, $curIndex): $e\n$s",
|
|
|
|
level: LogLevel.Error);
|
|
|
|
}
|
2022-08-27 16:06:04 +00:00
|
|
|
final newTxData = await _fetchTransactionData();
|
2022-08-26 08:11:35 +00:00
|
|
|
_transactionData = Future(() => newTxData);
|
|
|
|
|
|
|
|
if (isActive || shouldAutoSync) {
|
2022-08-27 16:06:04 +00:00
|
|
|
timer ??= Timer.periodic(const Duration(seconds: 60), (timer) async {
|
2022-12-13 00:17:02 +00:00
|
|
|
//todo: check if print needed
|
|
|
|
// debugPrint("run timer");
|
2022-08-26 08:11:35 +00:00
|
|
|
//TODO: check for new data and refresh if needed. if monero even needs this
|
|
|
|
// chain height check currently broken
|
|
|
|
// if ((await chainHeight) != (await storedChainHeight)) {
|
|
|
|
// if (await refreshIfThereIsNewData()) {
|
|
|
|
await refresh();
|
|
|
|
GlobalEventBus.instance.fire(UpdatedInBackgroundEvent(
|
2022-08-31 17:49:19 +00:00
|
|
|
"New data found in $walletId $walletName in background!",
|
|
|
|
walletId));
|
2022-08-26 08:11:35 +00:00
|
|
|
// }
|
|
|
|
// }
|
|
|
|
});
|
|
|
|
moneroAutosaveTimer ??=
|
|
|
|
Timer.periodic(const Duration(seconds: 93), (timer) async {
|
2022-12-13 00:17:02 +00:00
|
|
|
//todo: check if print needed
|
|
|
|
// debugPrint("run monero timer");
|
2022-08-26 08:11:35 +00:00
|
|
|
if (isActive) {
|
|
|
|
await walletBase?.save();
|
|
|
|
GlobalEventBus.instance.fire(UpdatedInBackgroundEvent(
|
2022-08-31 17:49:19 +00:00
|
|
|
"New data found in $walletId $walletName in background!",
|
|
|
|
walletId));
|
2022-08-26 08:11:35 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (stillSyncing) {
|
|
|
|
debugPrint("still syncing");
|
|
|
|
GlobalEventBus.instance.fire(
|
|
|
|
WalletSyncStatusChangedEvent(
|
|
|
|
WalletSyncStatus.syncing,
|
|
|
|
walletId,
|
|
|
|
coin,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
refreshMutex = false;
|
|
|
|
return;
|
|
|
|
}
|
2022-08-27 16:06:04 +00:00
|
|
|
await stopSyncPercentTimer();
|
2022-08-26 08:11:35 +00:00
|
|
|
GlobalEventBus.instance.fire(
|
|
|
|
WalletSyncStatusChangedEvent(
|
|
|
|
WalletSyncStatus.synced,
|
|
|
|
walletId,
|
|
|
|
coin,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
refreshMutex = false;
|
|
|
|
} catch (error, strace) {
|
|
|
|
refreshMutex = false;
|
2022-08-27 16:06:04 +00:00
|
|
|
await stopSyncPercentTimer();
|
2022-08-26 08:11:35 +00:00
|
|
|
GlobalEventBus.instance.fire(
|
|
|
|
NodeConnectionStatusChangedEvent(
|
|
|
|
NodeConnectionStatus.disconnected,
|
|
|
|
walletId,
|
|
|
|
coin,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
GlobalEventBus.instance.fire(
|
|
|
|
WalletSyncStatusChangedEvent(
|
|
|
|
WalletSyncStatus.unableToSync,
|
|
|
|
walletId,
|
|
|
|
coin,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
Logging.instance.log(
|
|
|
|
"Caught exception in refreshWalletData(): $error\n$strace",
|
|
|
|
level: LogLevel.Error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
// TODO: implement allOwnAddresses
|
|
|
|
Future<List<String>> get allOwnAddresses {
|
|
|
|
return Future(() => []);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<Decimal> get balanceMinusMaxFee async =>
|
|
|
|
(await availableBalance) -
|
2022-11-23 18:31:31 +00:00
|
|
|
(Decimal.fromInt((await maxFee)) /
|
|
|
|
Decimal.fromInt(Constants.satsPerCoin(coin)))
|
2022-08-26 08:11:35 +00:00
|
|
|
.toDecimal();
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<String> get currentReceivingAddress =>
|
|
|
|
_currentReceivingAddress ??= _getCurrentAddressForChain(0);
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<void> exit() async {
|
|
|
|
_hasCalledExit = true;
|
2022-11-23 18:31:31 +00:00
|
|
|
stopNetworkAlivePinging();
|
2022-08-26 08:11:35 +00:00
|
|
|
moneroAutosaveTimer?.cancel();
|
|
|
|
moneroAutosaveTimer = null;
|
|
|
|
timer?.cancel();
|
|
|
|
timer = null;
|
2022-11-23 18:31:31 +00:00
|
|
|
await stopSyncPercentTimer();
|
|
|
|
await walletBase?.save(prioritySave: true);
|
|
|
|
walletBase?.close();
|
|
|
|
isActive = false;
|
2022-08-26 08:11:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool _hasCalledExit = false;
|
|
|
|
|
|
|
|
@override
|
|
|
|
bool get hasCalledExit => _hasCalledExit;
|
|
|
|
|
|
|
|
Future<String>? _currentReceivingAddress;
|
|
|
|
|
|
|
|
Future<FeeObject> _getFees() async {
|
2022-11-23 18:42:08 +00:00
|
|
|
// TODO: not use random hard coded values here
|
2022-08-26 08:11:35 +00:00
|
|
|
return FeeObject(
|
2022-11-23 18:31:31 +00:00
|
|
|
numberOfBlocksFast: 10,
|
2022-11-23 18:42:08 +00:00
|
|
|
numberOfBlocksAverage: 15,
|
|
|
|
numberOfBlocksSlow: 20,
|
2022-11-23 18:31:31 +00:00
|
|
|
fast: MoneroTransactionPriority.fast.raw!,
|
|
|
|
medium: MoneroTransactionPriority.regular.raw!,
|
|
|
|
slow: MoneroTransactionPriority.slow.raw!,
|
|
|
|
);
|
2022-08-26 08:11:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<FeeObject> get fees => _feeObject ??= _getFees();
|
|
|
|
Future<FeeObject>? _feeObject;
|
|
|
|
|
|
|
|
@override
|
|
|
|
// TODO: implement fullRescan
|
|
|
|
Future<void> fullRescan(
|
|
|
|
int maxUnusedAddressGap,
|
|
|
|
int maxNumberOfIndexesToCheck,
|
|
|
|
) async {
|
|
|
|
var restoreHeight = walletBase?.walletInfo.restoreHeight;
|
|
|
|
await walletBase?.rescan(height: restoreHeight);
|
|
|
|
GlobalEventBus.instance.fire(
|
|
|
|
WalletSyncStatusChangedEvent(
|
|
|
|
WalletSyncStatus.syncing,
|
|
|
|
walletId,
|
|
|
|
coin,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<String> _generateAddressForChain(int chain, int index) async {
|
2022-08-27 16:06:04 +00:00
|
|
|
//
|
2022-08-26 08:11:35 +00:00
|
|
|
String address = walletBase!.getTransactionAddress(chain, index);
|
|
|
|
|
|
|
|
return address;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Adds [address] to the relevant chain's address array, which is determined by [chain].
|
|
|
|
/// [address] - Expects a standard native segwit address
|
|
|
|
/// [chain] - Use 0 for receiving (external), 1 for change (internal). Should not be any other value!
|
|
|
|
Future<void> _addToAddressesArrayForChain(String address, int chain) async {
|
|
|
|
String chainArray = '';
|
|
|
|
if (chain == 0) {
|
|
|
|
chainArray = 'receivingAddresses';
|
|
|
|
} else {
|
|
|
|
chainArray = 'changeAddresses';
|
|
|
|
}
|
|
|
|
|
|
|
|
final addressArray =
|
|
|
|
DB.instance.get<dynamic>(boxName: walletId, key: chainArray);
|
|
|
|
if (addressArray == null) {
|
|
|
|
Logging.instance.log(
|
|
|
|
'Attempting to add the following to $chainArray array for chain $chain:${[
|
|
|
|
address
|
|
|
|
]}',
|
|
|
|
level: LogLevel.Info);
|
|
|
|
await DB.instance
|
|
|
|
.put<dynamic>(boxName: walletId, key: chainArray, value: [address]);
|
|
|
|
} else {
|
|
|
|
// Make a deep copy of the existing list
|
|
|
|
final List<String> newArray = [];
|
|
|
|
addressArray
|
|
|
|
.forEach((dynamic _address) => newArray.add(_address as String));
|
|
|
|
newArray.add(address); // Add the address passed into the method
|
|
|
|
await DB.instance
|
|
|
|
.put<dynamic>(boxName: walletId, key: chainArray, value: newArray);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the latest receiving/change (external/internal) address for the wallet depending on [chain]
|
|
|
|
/// and
|
|
|
|
/// [chain] - Use 0 for receiving (external), 1 for change (internal). Should not be any other value!
|
|
|
|
Future<String> _getCurrentAddressForChain(int chain) async {
|
|
|
|
// Here, we assume that chain == 1 if it isn't 0
|
|
|
|
String arrayKey = chain == 0 ? "receivingAddresses" : "changeAddresses";
|
|
|
|
final internalChainArray = (DB.instance
|
|
|
|
.get<dynamic>(boxName: walletId, key: arrayKey)) as List<dynamic>;
|
|
|
|
return internalChainArray.last as String;
|
|
|
|
}
|
|
|
|
|
|
|
|
//TODO: take in the default language when creating wallet.
|
|
|
|
Future<void> _generateNewWallet() async {
|
|
|
|
Logging.instance
|
|
|
|
.log("IS_INTEGRATION_TEST: $integrationTestFlag", level: LogLevel.Info);
|
|
|
|
// TODO: ping monero server and make sure the genesis hash matches
|
|
|
|
// if (!integrationTestFlag) {
|
|
|
|
// final features = await electrumXClient.getServerFeatures();
|
|
|
|
// Logging.instance.log("features: $features");
|
|
|
|
// if (_networkType == BasicNetworkType.main) {
|
|
|
|
// if (features['genesis_hash'] != GENESIS_HASH_MAINNET) {
|
|
|
|
// throw Exception("genesis hash does not match main net!");
|
|
|
|
// }
|
|
|
|
// } else if (_networkType == BasicNetworkType.test) {
|
|
|
|
// if (features['genesis_hash'] != GENESIS_HASH_TESTNET) {
|
|
|
|
// throw Exception("genesis hash does not match test net!");
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
// this should never fail
|
|
|
|
if ((await _secureStore.read(key: '${_walletId}_mnemonic')) != null) {
|
|
|
|
throw Exception(
|
|
|
|
"Attempted to overwrite mnemonic on generate new wallet!");
|
|
|
|
}
|
|
|
|
|
|
|
|
walletService =
|
|
|
|
monero.createMoneroWalletService(DB.instance.moneroWalletInfoBox);
|
2022-11-11 18:12:01 +00:00
|
|
|
keysStorage = KeyService(_secureStore);
|
2022-08-26 08:11:35 +00:00
|
|
|
WalletInfo walletInfo;
|
|
|
|
WalletCredentials credentials;
|
|
|
|
try {
|
|
|
|
String name = _walletId;
|
|
|
|
final dirPath =
|
|
|
|
await pathForWalletDir(name: name, type: WalletType.monero);
|
|
|
|
final path = await pathForWallet(name: name, type: WalletType.monero);
|
|
|
|
credentials = monero.createMoneroNewWalletCredentials(
|
|
|
|
name: name,
|
|
|
|
language: "English",
|
|
|
|
);
|
|
|
|
|
|
|
|
// subtract a couple days to ensure we have a buffer for SWB
|
|
|
|
final bufferedCreateHeight = monero.getHeigthByDate(
|
|
|
|
date: DateTime.now().subtract(const Duration(days: 2)));
|
|
|
|
|
|
|
|
await DB.instance.put<dynamic>(
|
|
|
|
boxName: walletId, key: "restoreHeight", value: bufferedCreateHeight);
|
|
|
|
|
|
|
|
walletInfo = WalletInfo.external(
|
|
|
|
id: WalletBase.idFor(name, WalletType.monero),
|
|
|
|
name: name,
|
|
|
|
type: WalletType.monero,
|
|
|
|
isRecovery: false,
|
2022-11-09 06:16:21 +00:00
|
|
|
restoreHeight: bufferedCreateHeight,
|
2022-08-26 08:11:35 +00:00
|
|
|
date: DateTime.now(),
|
|
|
|
path: path,
|
|
|
|
dirPath: dirPath,
|
|
|
|
// TODO: find out what to put for address
|
|
|
|
address: '');
|
|
|
|
credentials.walletInfo = walletInfo;
|
|
|
|
|
|
|
|
_walletCreationService = WalletCreationService(
|
2022-11-11 18:12:01 +00:00
|
|
|
secureStorage: _secureStore,
|
2022-08-26 08:11:35 +00:00
|
|
|
walletService: walletService,
|
|
|
|
keyService: keysStorage,
|
|
|
|
);
|
|
|
|
_walletCreationService?.changeWalletType();
|
|
|
|
// To restore from a seed
|
|
|
|
final wallet = await _walletCreationService?.create(credentials);
|
|
|
|
|
|
|
|
await _secureStore.write(
|
|
|
|
key: '${_walletId}_mnemonic', value: wallet?.seed.trim());
|
|
|
|
walletInfo.address = wallet?.walletAddresses.address;
|
|
|
|
await DB.instance
|
|
|
|
.add<WalletInfo>(boxName: WalletInfo.boxName, value: walletInfo);
|
|
|
|
walletBase?.close();
|
|
|
|
walletBase = wallet as MoneroWalletBase;
|
|
|
|
} catch (e, s) {
|
2022-12-13 00:17:02 +00:00
|
|
|
//todo: come back to this
|
2022-08-26 08:11:35 +00:00
|
|
|
debugPrint(e.toString());
|
|
|
|
debugPrint(s.toString());
|
|
|
|
}
|
|
|
|
final node = await getCurrentNode();
|
|
|
|
final host = Uri.parse(node.host).host;
|
|
|
|
await walletBase?.connectToNode(
|
|
|
|
node: Node(uri: "$host:${node.port}", type: WalletType.monero));
|
|
|
|
await walletBase?.startSync();
|
|
|
|
await DB.instance
|
|
|
|
.put<dynamic>(boxName: walletId, key: "id", value: _walletId);
|
|
|
|
|
|
|
|
// Set relevant indexes
|
|
|
|
await DB.instance
|
|
|
|
.put<dynamic>(boxName: walletId, key: "receivingIndex", value: 0);
|
|
|
|
await DB.instance
|
|
|
|
.put<dynamic>(boxName: walletId, key: "changeIndex", value: 0);
|
|
|
|
await DB.instance.put<dynamic>(
|
|
|
|
boxName: walletId,
|
|
|
|
key: 'blocked_tx_hashes',
|
|
|
|
value: ["0xdefault"],
|
|
|
|
); // A list of transaction hashes to represent frozen utxos in wallet
|
|
|
|
// initialize address book entries
|
|
|
|
await DB.instance.put<dynamic>(
|
|
|
|
boxName: walletId,
|
|
|
|
key: 'addressBookEntries',
|
|
|
|
value: <String, String>{});
|
|
|
|
await DB.instance
|
|
|
|
.put<dynamic>(boxName: walletId, key: "isFavorite", value: false);
|
|
|
|
|
|
|
|
// Generate and add addresses to relevant arrays
|
|
|
|
final initialReceivingAddress = await _generateAddressForChain(0, 0);
|
|
|
|
// final initialChangeAddress = await _generateAddressForChain(1, 0);
|
|
|
|
|
|
|
|
await _addToAddressesArrayForChain(initialReceivingAddress, 0);
|
|
|
|
// await _addToAddressesArrayForChain(initialChangeAddress, 1);
|
|
|
|
|
|
|
|
await DB.instance.put<dynamic>(
|
|
|
|
boxName: walletId,
|
|
|
|
key: 'receivingAddresses',
|
|
|
|
value: [initialReceivingAddress]);
|
|
|
|
await DB.instance
|
|
|
|
.put<dynamic>(boxName: walletId, key: "receivingIndex", value: 0);
|
|
|
|
|
|
|
|
_currentReceivingAddress = Future(() => initialReceivingAddress);
|
|
|
|
|
|
|
|
Logging.instance.log("_generateNewWalletFinished", level: LogLevel.Info);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
// TODO: implement initializeWallet
|
|
|
|
Future<bool> initializeNew() async {
|
|
|
|
await _prefs.init();
|
|
|
|
// TODO: ping actual monero network
|
|
|
|
// try {
|
|
|
|
// final hasNetwork = await _electrumXClient.ping();
|
|
|
|
// if (!hasNetwork) {
|
|
|
|
// return false;
|
|
|
|
// }
|
|
|
|
// } catch (e, s) {
|
|
|
|
// Logging.instance.log("Caught in initializeWallet(): $e\n$s");
|
|
|
|
// return false;
|
|
|
|
// }
|
2022-11-11 18:12:01 +00:00
|
|
|
|
2022-08-26 08:11:35 +00:00
|
|
|
walletService =
|
|
|
|
monero.createMoneroWalletService(DB.instance.moneroWalletInfoBox);
|
2022-11-11 18:12:01 +00:00
|
|
|
keysStorage = KeyService(_secureStore);
|
2022-08-26 08:11:35 +00:00
|
|
|
|
|
|
|
await _generateNewWallet();
|
|
|
|
// var password;
|
|
|
|
// try {
|
|
|
|
// password =
|
|
|
|
// await keysStorage?.getWalletPassword(walletName: this._walletId);
|
|
|
|
// } catch (e, s) {
|
|
|
|
// Logging.instance.log("$e $s");
|
|
|
|
// Logging.instance.log("Generating new ${coin.ticker} wallet.");
|
|
|
|
// // Triggers for new users automatically. Generates new wallet
|
|
|
|
// await _generateNewWallet(wallet);
|
|
|
|
// await wallet.put("id", this._walletId);
|
|
|
|
// return true;
|
|
|
|
// }
|
|
|
|
// walletBase = (await walletService?.openWallet(this._walletId, password))
|
|
|
|
// as MoneroWalletBase;
|
|
|
|
// Logging.instance.log("Opening existing ${coin.ticker} wallet.");
|
|
|
|
// // Wallet already exists, triggers for a returning user
|
|
|
|
// final currentAddress = awaicurrentHeightt _getCurrentAddressForChain(0);
|
|
|
|
// this._currentReceivingAddress = Future(() => currentAddress);
|
|
|
|
//
|
|
|
|
// await walletBase?.connectToNode(
|
|
|
|
// node: Node(
|
|
|
|
// uri: "xmr-node.cakewallet.com:18081", type: WalletType.monero));
|
|
|
|
// walletBase?.startSync();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<void> initializeExisting() async {
|
|
|
|
Logging.instance.log(
|
|
|
|
"Opening existing ${coin.prettyName} wallet $walletName...",
|
|
|
|
level: LogLevel.Info);
|
|
|
|
|
|
|
|
if ((DB.instance.get<dynamic>(boxName: walletId, key: "id")) == null) {
|
2022-12-13 00:17:02 +00:00
|
|
|
//todo: check if print is needed
|
|
|
|
// debugPrint("Exception was thrown");
|
2022-08-26 08:11:35 +00:00
|
|
|
throw Exception(
|
|
|
|
"Attempted to initialize an existing wallet using an unknown wallet ID!");
|
|
|
|
}
|
|
|
|
|
|
|
|
walletService =
|
|
|
|
monero.createMoneroWalletService(DB.instance.moneroWalletInfoBox);
|
2022-11-11 18:12:01 +00:00
|
|
|
keysStorage = KeyService(_secureStore);
|
2022-08-26 08:11:35 +00:00
|
|
|
|
|
|
|
await _prefs.init();
|
|
|
|
final data =
|
|
|
|
DB.instance.get<dynamic>(boxName: walletId, key: "latest_tx_model")
|
|
|
|
as TransactionData?;
|
|
|
|
if (data != null) {
|
|
|
|
_transactionData = Future(() => data);
|
|
|
|
}
|
|
|
|
|
|
|
|
String? password;
|
|
|
|
try {
|
|
|
|
password = await keysStorage?.getWalletPassword(walletName: _walletId);
|
|
|
|
} catch (e, s) {
|
2022-12-13 00:17:02 +00:00
|
|
|
//todo: check if print needed
|
|
|
|
// debugPrint("Exception was thrown $e $s");
|
2022-08-26 08:11:35 +00:00
|
|
|
throw Exception("Password not found $e, $s");
|
|
|
|
}
|
|
|
|
walletBase = (await walletService?.openWallet(_walletId, password!))
|
|
|
|
as MoneroWalletBase;
|
|
|
|
debugPrint("walletBase $walletBase");
|
|
|
|
Logging.instance.log(
|
|
|
|
"Opened existing ${coin.prettyName} wallet $walletName",
|
|
|
|
level: LogLevel.Info);
|
|
|
|
// Wallet already exists, triggers for a returning user
|
|
|
|
|
|
|
|
String indexKey = "receivingIndex";
|
|
|
|
final curIndex =
|
|
|
|
await DB.instance.get<dynamic>(boxName: walletId, key: indexKey) as int;
|
|
|
|
// Use new index to derive a new receiving address
|
|
|
|
final newReceivingAddress = await _generateAddressForChain(0, curIndex);
|
|
|
|
Logging.instance.log("xmr address in init existing: $newReceivingAddress",
|
2022-08-31 18:28:47 +00:00
|
|
|
level: LogLevel.Info);
|
2022-08-26 08:11:35 +00:00
|
|
|
_currentReceivingAddress = Future(() => newReceivingAddress);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<int> get maxFee async {
|
|
|
|
var bal = await availableBalance;
|
|
|
|
var fee = walletBase!.calculateEstimatedFee(
|
2022-11-23 18:31:31 +00:00
|
|
|
monero.getDefaultTransactionPriority(),
|
|
|
|
Format.decimalAmountToSatoshis(bal, coin),
|
|
|
|
);
|
2022-08-26 08:11:35 +00:00
|
|
|
|
|
|
|
return fee;
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
// TODO: implement pendingBalance
|
|
|
|
Future<Decimal> get pendingBalance => throw UnimplementedError();
|
|
|
|
|
|
|
|
bool longMutex = false;
|
|
|
|
|
|
|
|
// TODO: are these needed?
|
2022-11-11 18:12:01 +00:00
|
|
|
|
2022-08-26 08:11:35 +00:00
|
|
|
WalletService? walletService;
|
|
|
|
KeyService? keysStorage;
|
|
|
|
MoneroWalletBase? walletBase;
|
|
|
|
WalletCreationService? _walletCreationService;
|
|
|
|
|
|
|
|
String toStringForinfo(WalletInfo info) {
|
|
|
|
return "id: ${info.id} name: ${info.name} type: ${info.type} recovery: ${info.isRecovery}"
|
|
|
|
" restoreheight: ${info.restoreHeight} timestamp: ${info.timestamp} dirPath: ${info.dirPath} "
|
|
|
|
"path: ${info.path} address: ${info.address} addresses: ${info.addresses}";
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<String> pathForWalletDir({
|
|
|
|
required String name,
|
|
|
|
required WalletType type,
|
|
|
|
}) async {
|
2022-11-12 22:04:16 +00:00
|
|
|
Directory root = await StackFileSystem.applicationRootDirectory();
|
|
|
|
|
2022-08-26 08:11:35 +00:00
|
|
|
final prefix = walletTypeToString(type).toLowerCase();
|
|
|
|
final walletsDir = Directory('${root.path}/wallets');
|
|
|
|
final walletDire = Directory('${walletsDir.path}/$prefix/$name');
|
|
|
|
|
|
|
|
if (!walletDire.existsSync()) {
|
|
|
|
walletDire.createSync(recursive: true);
|
|
|
|
}
|
|
|
|
|
|
|
|
return walletDire.path;
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<String> pathForWallet({
|
|
|
|
required String name,
|
|
|
|
required WalletType type,
|
|
|
|
}) async =>
|
|
|
|
await pathForWalletDir(name: name, type: type)
|
|
|
|
.then((path) => '$path/$name');
|
|
|
|
|
|
|
|
// TODO: take in a dynamic height
|
|
|
|
@override
|
|
|
|
Future<void> recoverFromMnemonic({
|
|
|
|
required String mnemonic,
|
|
|
|
required int maxUnusedAddressGap,
|
|
|
|
required int maxNumberOfIndexesToCheck,
|
|
|
|
required int height,
|
|
|
|
}) async {
|
|
|
|
await _prefs.init();
|
|
|
|
longMutex = true;
|
|
|
|
final start = DateTime.now();
|
|
|
|
try {
|
|
|
|
// Logging.instance.log("IS_INTEGRATION_TEST: $integrationTestFlag");
|
|
|
|
// if (!integrationTestFlag) {
|
|
|
|
// final features = await electrumXClient.getServerFeatures();
|
|
|
|
// Logging.instance.log("features: $features");
|
|
|
|
// if (_networkType == BasicNetworkType.main) {
|
|
|
|
// if (features['genesis_hash'] != GENESIS_HASH_MAINNET) {
|
|
|
|
// throw Exception("genesis hash does not match main net!");
|
|
|
|
// }
|
|
|
|
// } else if (_networkType == BasicNetworkType.test) {
|
|
|
|
// if (features['genesis_hash'] != GENESIS_HASH_TESTNET) {
|
|
|
|
// throw Exception("genesis hash does not match test net!");
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// check to make sure we aren't overwriting a mnemonic
|
|
|
|
// this should never fail
|
|
|
|
if ((await _secureStore.read(key: '${_walletId}_mnemonic')) != null) {
|
|
|
|
longMutex = false;
|
|
|
|
throw Exception("Attempted to overwrite mnemonic on restore!");
|
|
|
|
}
|
|
|
|
await _secureStore.write(
|
|
|
|
key: '${_walletId}_mnemonic', value: mnemonic.trim());
|
|
|
|
|
|
|
|
await DB.instance
|
|
|
|
.put<dynamic>(boxName: walletId, key: "restoreHeight", value: height);
|
|
|
|
|
|
|
|
walletService =
|
|
|
|
monero.createMoneroWalletService(DB.instance.moneroWalletInfoBox);
|
2022-11-11 18:12:01 +00:00
|
|
|
keysStorage = KeyService(_secureStore);
|
2022-08-26 08:11:35 +00:00
|
|
|
WalletInfo walletInfo;
|
|
|
|
WalletCredentials credentials;
|
|
|
|
String name = _walletId;
|
|
|
|
final dirPath =
|
|
|
|
await pathForWalletDir(name: name, type: WalletType.monero);
|
|
|
|
final path = await pathForWallet(name: name, type: WalletType.monero);
|
|
|
|
credentials = monero.createMoneroRestoreWalletFromSeedCredentials(
|
|
|
|
name: name,
|
|
|
|
height: height,
|
|
|
|
mnemonic: mnemonic.trim(),
|
|
|
|
);
|
|
|
|
try {
|
|
|
|
walletInfo = WalletInfo.external(
|
|
|
|
id: WalletBase.idFor(name, WalletType.monero),
|
|
|
|
name: name,
|
|
|
|
type: WalletType.monero,
|
|
|
|
isRecovery: false,
|
|
|
|
restoreHeight: credentials.height ?? 0,
|
|
|
|
date: DateTime.now(),
|
|
|
|
path: path,
|
|
|
|
dirPath: dirPath,
|
|
|
|
// TODO: find out what to put for address
|
|
|
|
address: '');
|
|
|
|
credentials.walletInfo = walletInfo;
|
|
|
|
|
|
|
|
_walletCreationService = WalletCreationService(
|
2022-11-11 18:12:01 +00:00
|
|
|
secureStorage: _secureStore,
|
2022-08-26 08:11:35 +00:00
|
|
|
walletService: walletService,
|
|
|
|
keyService: keysStorage,
|
|
|
|
);
|
|
|
|
_walletCreationService!.changeWalletType();
|
|
|
|
// To restore from a seed
|
|
|
|
final wallet =
|
|
|
|
await _walletCreationService!.restoreFromSeed(credentials);
|
|
|
|
walletInfo.address = wallet.walletAddresses.address;
|
|
|
|
await DB.instance
|
|
|
|
.add<WalletInfo>(boxName: WalletInfo.boxName, value: walletInfo);
|
|
|
|
walletBase?.close();
|
|
|
|
walletBase = wallet as MoneroWalletBase;
|
|
|
|
await DB.instance.put<dynamic>(
|
|
|
|
boxName: walletId,
|
|
|
|
key: 'receivingAddresses',
|
|
|
|
value: [walletInfo.address!]);
|
|
|
|
await DB.instance
|
|
|
|
.put<dynamic>(boxName: walletId, key: "receivingIndex", value: 0);
|
|
|
|
await DB.instance
|
|
|
|
.put<dynamic>(boxName: walletId, key: "id", value: _walletId);
|
|
|
|
await DB.instance
|
|
|
|
.put<dynamic>(boxName: walletId, key: "changeIndex", value: 0);
|
|
|
|
await DB.instance.put<dynamic>(
|
|
|
|
boxName: walletId,
|
|
|
|
key: 'blocked_tx_hashes',
|
|
|
|
value: ["0xdefault"],
|
|
|
|
); // A list of transaction hashes to represent frozen utxos in wallet
|
|
|
|
// initialize address book entries
|
|
|
|
await DB.instance.put<dynamic>(
|
|
|
|
boxName: walletId,
|
|
|
|
key: 'addressBookEntries',
|
|
|
|
value: <String, String>{});
|
|
|
|
await DB.instance
|
|
|
|
.put<dynamic>(boxName: walletId, key: "isFavorite", value: false);
|
|
|
|
} catch (e, s) {
|
|
|
|
debugPrint(e.toString());
|
|
|
|
debugPrint(s.toString());
|
|
|
|
}
|
|
|
|
final node = await getCurrentNode();
|
|
|
|
final host = Uri.parse(node.host).host;
|
|
|
|
await walletBase?.connectToNode(
|
|
|
|
node: Node(uri: "$host:${node.port}", type: WalletType.monero));
|
|
|
|
await walletBase?.rescan(height: credentials.height);
|
|
|
|
} catch (e, s) {
|
|
|
|
Logging.instance.log(
|
|
|
|
"Exception rethrown from recoverFromMnemonic(): $e\n$s",
|
|
|
|
level: LogLevel.Error);
|
|
|
|
longMutex = false;
|
|
|
|
rethrow;
|
|
|
|
}
|
|
|
|
longMutex = false;
|
|
|
|
|
|
|
|
final end = DateTime.now();
|
|
|
|
Logging.instance.log(
|
|
|
|
"$walletName Recovery time: ${end.difference(start).inMilliseconds} millis",
|
|
|
|
level: LogLevel.Info);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<String> send({
|
|
|
|
required String toAddress,
|
|
|
|
required int amount,
|
|
|
|
Map<String, String> args = const {},
|
|
|
|
}) async {
|
|
|
|
try {
|
|
|
|
final txData = await prepareSend(
|
|
|
|
address: toAddress, satoshiAmount: amount, args: args);
|
|
|
|
final txHash = await confirmSend(txData: txData);
|
|
|
|
return txHash;
|
|
|
|
} catch (e, s) {
|
|
|
|
Logging.instance
|
|
|
|
.log("Exception rethrown from send(): $e\n$s", level: LogLevel.Error);
|
|
|
|
rethrow;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<bool> testNetworkConnection() async {
|
|
|
|
return await walletBase?.isConnected() ?? false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Timer? _networkAliveTimer;
|
|
|
|
|
|
|
|
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 testNetworkConnection();
|
|
|
|
_isConnected = hasNetwork;
|
|
|
|
if (_isConnected != hasNetwork) {
|
|
|
|
NodeConnectionStatus status = hasNetwork
|
|
|
|
? NodeConnectionStatus.connected
|
|
|
|
: NodeConnectionStatus.disconnected;
|
|
|
|
GlobalEventBus.instance
|
|
|
|
.fire(NodeConnectionStatusChangedEvent(status, walletId, coin));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void stopNetworkAlivePinging() {
|
|
|
|
_networkAliveTimer?.cancel();
|
|
|
|
_networkAliveTimer = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool _isConnected = false;
|
|
|
|
|
|
|
|
@override
|
|
|
|
bool get isConnected => _isConnected;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<Decimal> get totalBalance async {
|
|
|
|
var transactions = walletBase?.transactionHistory!.transactions;
|
|
|
|
int transactionBalance = 0;
|
|
|
|
for (var tx in transactions!.entries) {
|
|
|
|
if (tx.value.direction == TransactionDirection.incoming) {
|
|
|
|
transactionBalance += tx.value.amount!;
|
|
|
|
} else {
|
|
|
|
transactionBalance += -tx.value.amount! - tx.value.fee!;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: grab total balance
|
|
|
|
var bal = 0;
|
|
|
|
for (var element in walletBase!.balance!.entries) {
|
|
|
|
bal = bal + element.value.fullBalance;
|
|
|
|
}
|
2022-12-13 00:17:02 +00:00
|
|
|
//todo: check if print needed
|
|
|
|
// debugPrint("balances: $transactionBalance $bal");
|
2022-08-26 08:11:35 +00:00
|
|
|
if (isActive) {
|
|
|
|
String am = moneroAmountToString(amount: bal);
|
|
|
|
|
|
|
|
return Decimal.parse(am);
|
|
|
|
} else {
|
|
|
|
String am = moneroAmountToString(amount: transactionBalance);
|
|
|
|
|
|
|
|
return Decimal.parse(am);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
// TODO: implement onIsActiveWalletChanged
|
|
|
|
void Function(bool)? get onIsActiveWalletChanged => (isActive) async {
|
|
|
|
await walletBase?.save();
|
|
|
|
walletBase?.close();
|
|
|
|
moneroAutosaveTimer?.cancel();
|
|
|
|
moneroAutosaveTimer = null;
|
|
|
|
timer?.cancel();
|
|
|
|
timer = null;
|
2022-08-27 16:06:04 +00:00
|
|
|
await stopSyncPercentTimer();
|
2022-08-26 08:11:35 +00:00
|
|
|
if (isActive) {
|
|
|
|
String? password;
|
|
|
|
try {
|
|
|
|
password =
|
|
|
|
await keysStorage?.getWalletPassword(walletName: _walletId);
|
|
|
|
} catch (e, s) {
|
2022-12-13 00:17:02 +00:00
|
|
|
//todo: check if print needed
|
|
|
|
// debugPrint("Exception was thrown $e $s");
|
2022-08-26 08:11:35 +00:00
|
|
|
throw Exception("Password not found $e, $s");
|
|
|
|
}
|
|
|
|
walletBase = (await walletService?.openWallet(_walletId, password!))
|
|
|
|
as MoneroWalletBase?;
|
|
|
|
if (!(await walletBase!.isConnected())) {
|
|
|
|
final node = await getCurrentNode();
|
|
|
|
final host = Uri.parse(node.host).host;
|
|
|
|
await walletBase?.connectToNode(
|
|
|
|
node: Node(uri: "$host:${node.port}", type: WalletType.monero));
|
2022-08-27 16:06:04 +00:00
|
|
|
await walletBase?.startSync();
|
2022-08-26 08:11:35 +00:00
|
|
|
}
|
2022-08-27 16:06:04 +00:00
|
|
|
await refresh();
|
2022-08-26 08:11:35 +00:00
|
|
|
}
|
|
|
|
this.isActive = isActive;
|
|
|
|
};
|
|
|
|
|
|
|
|
bool isActive = false;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<TransactionData> get transactionData =>
|
|
|
|
_transactionData ??= _fetchTransactionData();
|
|
|
|
Future<TransactionData>? _transactionData;
|
|
|
|
|
2022-11-07 16:24:08 +00:00
|
|
|
// not used in monero
|
|
|
|
TransactionData? cachedTxData;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<void> updateSentCachedTxData(Map<String, dynamic> txData) async {
|
|
|
|
// not used in monero
|
|
|
|
}
|
|
|
|
|
2022-08-26 08:11:35 +00:00
|
|
|
Future<TransactionData> _fetchTransactionData() async {
|
|
|
|
final transactions = walletBase?.transactionHistory!.transactions;
|
|
|
|
|
|
|
|
final cachedTransactions =
|
|
|
|
DB.instance.get<dynamic>(boxName: walletId, key: 'latest_tx_model')
|
|
|
|
as TransactionData?;
|
|
|
|
int latestTxnBlockHeight =
|
|
|
|
DB.instance.get<dynamic>(boxName: walletId, key: "storedTxnDataHeight")
|
|
|
|
as int? ??
|
|
|
|
0;
|
|
|
|
|
|
|
|
final txidsList = DB.instance
|
|
|
|
.get<dynamic>(boxName: walletId, key: "cachedTxids") as List? ??
|
|
|
|
[];
|
|
|
|
|
|
|
|
final Set<String> cachedTxids = Set<String>.from(txidsList);
|
|
|
|
|
|
|
|
// TODO: filter to skip cached + confirmed txn processing in next step
|
|
|
|
// final unconfirmedCachedTransactions =
|
|
|
|
// cachedTransactions?.getAllTransactions() ?? {};
|
|
|
|
// unconfirmedCachedTransactions
|
|
|
|
// .removeWhere((key, value) => value.confirmedStatus);
|
|
|
|
//
|
|
|
|
// if (cachedTransactions != null) {
|
|
|
|
// for (final tx in allTxHashes.toList(growable: false)) {
|
|
|
|
// final txHeight = tx["height"] as int;
|
|
|
|
// if (txHeight > 0 &&
|
|
|
|
// txHeight < latestTxnBlockHeight - MINIMUM_CONFIRMATIONS) {
|
|
|
|
// if (unconfirmedCachedTransactions[tx["tx_hash"] as String] == null) {
|
|
|
|
// allTxHashes.remove(tx);
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
// sort thing stuff
|
|
|
|
// change to get Monero price
|
|
|
|
final priceData =
|
|
|
|
await _priceAPI.getPricesAnd24hChange(baseCurrency: _prefs.currency);
|
|
|
|
Decimal currentPrice = priceData[coin]?.item1 ?? Decimal.zero;
|
|
|
|
final List<Map<String, dynamic>> midSortedArray = [];
|
|
|
|
|
|
|
|
if (transactions != null) {
|
|
|
|
for (var tx in transactions.entries) {
|
|
|
|
cachedTxids.add(tx.value.id);
|
|
|
|
Logging.instance.log(
|
|
|
|
"${tx.value.accountIndex} ${tx.value.addressIndex} ${tx.value.amount} ${tx.value.date} "
|
|
|
|
"${tx.value.direction} ${tx.value.fee} ${tx.value.height} ${tx.value.id} ${tx.value.isPending} ${tx.value.key} "
|
|
|
|
"${tx.value.recipientAddress}, ${tx.value.additionalInfo} con:${tx.value.confirmations}"
|
|
|
|
" ${tx.value.keyIndex}",
|
|
|
|
level: LogLevel.Info);
|
|
|
|
String am = moneroAmountToString(amount: tx.value.amount!);
|
|
|
|
final worthNow = (currentPrice * Decimal.parse(am)).toStringAsFixed(2);
|
|
|
|
Map<String, dynamic> midSortedTx = {};
|
|
|
|
// // create final tx map
|
|
|
|
midSortedTx["txid"] = tx.value.id;
|
|
|
|
midSortedTx["confirmed_status"] = !tx.value.isPending &&
|
|
|
|
tx.value.confirmations! >= MINIMUM_CONFIRMATIONS;
|
|
|
|
midSortedTx["confirmations"] = tx.value.confirmations ?? 0;
|
|
|
|
midSortedTx["timestamp"] =
|
|
|
|
(tx.value.date.millisecondsSinceEpoch ~/ 1000);
|
|
|
|
midSortedTx["txType"] =
|
|
|
|
tx.value.direction == TransactionDirection.incoming
|
|
|
|
? "Received"
|
|
|
|
: "Sent";
|
|
|
|
midSortedTx["amount"] = tx.value.amount;
|
|
|
|
midSortedTx["worthNow"] = worthNow;
|
|
|
|
midSortedTx["worthAtBlockTimestamp"] = worthNow;
|
|
|
|
midSortedTx["fees"] = tx.value.fee;
|
|
|
|
// TODO: shouldn't monero have an address I can grab
|
|
|
|
if (tx.value.direction == TransactionDirection.incoming) {
|
|
|
|
final addressInfo = tx.value.additionalInfo;
|
|
|
|
|
|
|
|
midSortedTx["address"] = walletBase?.getTransactionAddress(
|
|
|
|
addressInfo!['accountIndex'] as int,
|
|
|
|
addressInfo['addressIndex'] as int,
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
midSortedTx["address"] = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
final int txHeight = tx.value.height ?? 0;
|
|
|
|
midSortedTx["height"] = txHeight;
|
|
|
|
if (txHeight >= latestTxnBlockHeight) {
|
|
|
|
latestTxnBlockHeight = txHeight;
|
|
|
|
}
|
|
|
|
|
|
|
|
midSortedTx["aliens"] = <dynamic>[];
|
|
|
|
midSortedTx["inputSize"] = 0;
|
|
|
|
midSortedTx["outputSize"] = 0;
|
|
|
|
midSortedTx["inputs"] = <dynamic>[];
|
|
|
|
midSortedTx["outputs"] = <dynamic>[];
|
|
|
|
midSortedArray.add(midSortedTx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// sort by date ----
|
|
|
|
midSortedArray
|
|
|
|
.sort((a, b) => (b["timestamp"] as int) - (a["timestamp"] as int));
|
|
|
|
Logging.instance.log(midSortedArray, level: LogLevel.Info);
|
|
|
|
|
|
|
|
// buildDateTimeChunks
|
|
|
|
final Map<String, dynamic> result = {"dateTimeChunks": <dynamic>[]};
|
|
|
|
final dateArray = <dynamic>[];
|
|
|
|
|
|
|
|
for (int i = 0; i < midSortedArray.length; i++) {
|
|
|
|
final txObject = midSortedArray[i];
|
|
|
|
final date = extractDateFromTimestamp(txObject["timestamp"] as int);
|
|
|
|
final txTimeArray = [txObject["timestamp"], date];
|
|
|
|
|
|
|
|
if (dateArray.contains(txTimeArray[1])) {
|
|
|
|
result["dateTimeChunks"].forEach((dynamic chunk) {
|
|
|
|
if (extractDateFromTimestamp(chunk["timestamp"] as int) ==
|
|
|
|
txTimeArray[1]) {
|
|
|
|
if (chunk["transactions"] == null) {
|
|
|
|
chunk["transactions"] = <Map<String, dynamic>>[];
|
|
|
|
}
|
|
|
|
chunk["transactions"].add(txObject);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
dateArray.add(txTimeArray[1]);
|
|
|
|
final chunk = {
|
|
|
|
"timestamp": txTimeArray[0],
|
|
|
|
"transactions": [txObject],
|
|
|
|
};
|
|
|
|
result["dateTimeChunks"].add(chunk);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
final transactionsMap = cachedTransactions?.getAllTransactions() ?? {};
|
|
|
|
transactionsMap
|
|
|
|
.addAll(TransactionData.fromJson(result).getAllTransactions());
|
|
|
|
|
|
|
|
final txModel = TransactionData.fromMap(transactionsMap);
|
|
|
|
|
|
|
|
await DB.instance.put<dynamic>(
|
|
|
|
boxName: walletId,
|
|
|
|
key: 'storedTxnDataHeight',
|
|
|
|
value: latestTxnBlockHeight);
|
|
|
|
await DB.instance.put<dynamic>(
|
|
|
|
boxName: walletId, key: 'latest_tx_model', value: txModel);
|
|
|
|
await DB.instance.put<dynamic>(
|
|
|
|
boxName: walletId,
|
|
|
|
key: 'cachedTxids',
|
|
|
|
value: cachedTxids.toList(growable: false));
|
|
|
|
|
|
|
|
return txModel;
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
// TODO: implement unspentOutputs
|
|
|
|
Future<List<UtxoObject>> get unspentOutputs => throw UnimplementedError();
|
|
|
|
|
|
|
|
@override
|
|
|
|
bool validateAddress(String address) {
|
2022-11-10 16:21:07 +00:00
|
|
|
bool valid = walletBase!.validateAddress(address);
|
2022-08-26 08:11:35 +00:00
|
|
|
return valid;
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
String get walletId => _walletId;
|
|
|
|
late String _walletId;
|
|
|
|
|
|
|
|
@override
|
|
|
|
String get walletName => _walletName;
|
|
|
|
late String _walletName;
|
|
|
|
|
|
|
|
// setter for updating on rename
|
|
|
|
@override
|
|
|
|
set walletName(String newName) => _walletName = newName;
|
|
|
|
|
|
|
|
@override
|
|
|
|
set isFavorite(bool markFavorite) {
|
|
|
|
DB.instance.put<dynamic>(
|
|
|
|
boxName: walletId, key: "isFavorite", value: markFavorite);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
bool get isFavorite {
|
|
|
|
try {
|
|
|
|
return DB.instance.get<dynamic>(boxName: walletId, key: "isFavorite")
|
|
|
|
as bool;
|
|
|
|
} catch (e, s) {
|
2022-11-05 15:40:28 +00:00
|
|
|
Logging.instance.log(
|
|
|
|
"isFavorite fetch failed (returning false by default): $e\n$s",
|
|
|
|
level: LogLevel.Error);
|
|
|
|
return false;
|
2022-08-26 08:11:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<Decimal> get availableBalance async {
|
|
|
|
var bal = 0;
|
|
|
|
for (var element in walletBase!.balance!.entries) {
|
|
|
|
bal = bal + element.value.unlockedBalance;
|
|
|
|
}
|
|
|
|
String am = moneroAmountToString(amount: bal);
|
|
|
|
|
|
|
|
return Decimal.parse(am);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Coin get coin => _coin;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<String> confirmSend({required Map<String, dynamic> txData}) async {
|
|
|
|
try {
|
|
|
|
Logging.instance.log("confirmSend txData: $txData", level: LogLevel.Info);
|
|
|
|
final pendingMoneroTransaction =
|
|
|
|
txData['pendingMoneroTransaction'] as PendingMoneroTransaction;
|
|
|
|
try {
|
|
|
|
await pendingMoneroTransaction.commit();
|
|
|
|
Logging.instance.log(
|
|
|
|
"transaction ${pendingMoneroTransaction.id} has been sent",
|
|
|
|
level: LogLevel.Info);
|
|
|
|
return pendingMoneroTransaction.id;
|
|
|
|
} catch (e, s) {
|
|
|
|
Logging.instance.log("$walletName monero confirmSend: $e\n$s",
|
|
|
|
level: LogLevel.Error);
|
|
|
|
rethrow;
|
|
|
|
}
|
|
|
|
} catch (e, s) {
|
|
|
|
Logging.instance.log("Exception rethrown from confirmSend(): $e\n$s",
|
|
|
|
level: LogLevel.Info);
|
|
|
|
rethrow;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: fix the double free memory crash error.
|
|
|
|
@override
|
|
|
|
Future<Map<String, dynamic>> prepareSend(
|
|
|
|
{required String address,
|
|
|
|
required int satoshiAmount,
|
|
|
|
Map<String, dynamic>? args}) async {
|
|
|
|
int amount = satoshiAmount;
|
|
|
|
String toAddress = address;
|
|
|
|
try {
|
|
|
|
final feeRate = args?["feeRate"];
|
|
|
|
if (feeRate is FeeRateType) {
|
2022-11-23 18:31:31 +00:00
|
|
|
MoneroTransactionPriority feePriority;
|
2022-08-26 08:11:35 +00:00
|
|
|
switch (feeRate) {
|
|
|
|
case FeeRateType.fast:
|
2022-11-23 18:31:31 +00:00
|
|
|
feePriority = MoneroTransactionPriority.fast;
|
2022-08-26 08:11:35 +00:00
|
|
|
break;
|
|
|
|
case FeeRateType.average:
|
2022-11-23 18:31:31 +00:00
|
|
|
feePriority = MoneroTransactionPriority.regular;
|
2022-08-26 08:11:35 +00:00
|
|
|
break;
|
|
|
|
case FeeRateType.slow:
|
|
|
|
feePriority = MoneroTransactionPriority.slow;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<PendingTransaction>? awaitPendingTransaction;
|
|
|
|
try {
|
2022-10-11 22:36:41 +00:00
|
|
|
// check for send all
|
|
|
|
bool isSendAll = false;
|
|
|
|
final balance = await availableBalance;
|
|
|
|
final satInDecimal = ((Decimal.fromInt(satoshiAmount) /
|
2022-11-23 18:31:31 +00:00
|
|
|
Decimal.fromInt(Constants.satsPerCoin(coin)))
|
|
|
|
.toDecimal());
|
2022-10-11 22:36:41 +00:00
|
|
|
if (satInDecimal == balance) {
|
|
|
|
isSendAll = true;
|
|
|
|
}
|
2022-08-26 08:11:35 +00:00
|
|
|
Logging.instance
|
|
|
|
.log("$toAddress $amount $args", level: LogLevel.Info);
|
2022-11-23 18:31:31 +00:00
|
|
|
String amountToSend = moneroAmountToString(amount: amount);
|
2022-08-26 08:11:35 +00:00
|
|
|
Logging.instance.log("$amount $amountToSend", level: LogLevel.Info);
|
|
|
|
|
|
|
|
monero_output.Output output = monero_output.Output(walletBase!);
|
|
|
|
output.address = toAddress;
|
2022-10-11 22:36:41 +00:00
|
|
|
output.sendAll = isSendAll;
|
2022-08-26 08:11:35 +00:00
|
|
|
output.setCryptoAmount(amountToSend);
|
|
|
|
|
|
|
|
List<monero_output.Output> outputs = [output];
|
|
|
|
Object tmp = monero.createMoneroTransactionCreationCredentials(
|
|
|
|
outputs: outputs, priority: feePriority);
|
|
|
|
|
2022-10-12 01:54:50 +00:00
|
|
|
await prepareSendMutex.protect(() async {
|
|
|
|
awaitPendingTransaction = walletBase!.createTransaction(tmp);
|
|
|
|
});
|
2022-08-26 08:11:35 +00:00
|
|
|
} catch (e, s) {
|
|
|
|
Logging.instance.log("Exception rethrown from prepareSend(): $e\n$s",
|
|
|
|
level: LogLevel.Warning);
|
|
|
|
}
|
|
|
|
|
|
|
|
PendingMoneroTransaction pendingMoneroTransaction =
|
|
|
|
await (awaitPendingTransaction!) as PendingMoneroTransaction;
|
2022-11-23 18:31:31 +00:00
|
|
|
|
|
|
|
int realfee = Format.decimalAmountToSatoshis(
|
|
|
|
Decimal.parse(pendingMoneroTransaction.feeFormatted), coin);
|
2022-08-26 08:11:35 +00:00
|
|
|
debugPrint("fee? $realfee");
|
|
|
|
Map<String, dynamic> txData = {
|
|
|
|
"pendingMoneroTransaction": pendingMoneroTransaction,
|
|
|
|
"fee": realfee,
|
|
|
|
"addresss": toAddress,
|
|
|
|
"recipientAmt": satoshiAmount,
|
|
|
|
};
|
|
|
|
|
|
|
|
Logging.instance.log("prepare send: $txData", level: LogLevel.Info);
|
|
|
|
return txData;
|
|
|
|
} else {
|
|
|
|
throw ArgumentError("Invalid fee rate argument provided!");
|
|
|
|
}
|
|
|
|
} catch (e, s) {
|
|
|
|
Logging.instance.log("Exception rethrown from prepare send(): $e\n$s",
|
|
|
|
level: LogLevel.Info);
|
|
|
|
|
|
|
|
if (e.toString().contains("Incorrect unlocked balance")) {
|
|
|
|
throw Exception("Insufficient balance!");
|
|
|
|
} else if (e is CreationTransactionException) {
|
|
|
|
throw Exception("Insufficient funds to pay for transaction fee!");
|
|
|
|
} else {
|
|
|
|
throw Exception("Transaction failed with error code $e");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-12 01:54:50 +00:00
|
|
|
Mutex prepareSendMutex = Mutex();
|
|
|
|
Mutex estimateFeeMutex = Mutex();
|
|
|
|
|
2022-08-26 08:11:35 +00:00
|
|
|
@override
|
|
|
|
Future<int> estimateFeeFor(int satoshiAmount, int feeRate) async {
|
2022-11-23 18:31:31 +00:00
|
|
|
MoneroTransactionPriority priority;
|
|
|
|
FeeRateType feeRateType;
|
|
|
|
|
2022-08-26 08:11:35 +00:00
|
|
|
switch (feeRate) {
|
|
|
|
case 1:
|
|
|
|
priority = MoneroTransactionPriority.regular;
|
2022-11-23 18:31:31 +00:00
|
|
|
feeRateType = FeeRateType.average;
|
2022-08-26 08:11:35 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
priority = MoneroTransactionPriority.medium;
|
2022-10-12 01:54:50 +00:00
|
|
|
feeRateType = FeeRateType.average;
|
2022-08-26 08:11:35 +00:00
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
priority = MoneroTransactionPriority.fast;
|
2022-11-23 18:31:31 +00:00
|
|
|
feeRateType = FeeRateType.fast;
|
2022-08-26 08:11:35 +00:00
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
priority = MoneroTransactionPriority.fastest;
|
2022-10-12 01:54:50 +00:00
|
|
|
feeRateType = FeeRateType.fast;
|
2022-08-26 08:11:35 +00:00
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
default:
|
|
|
|
priority = MoneroTransactionPriority.slow;
|
2022-10-12 01:54:50 +00:00
|
|
|
feeRateType = FeeRateType.slow;
|
2022-08-26 08:11:35 +00:00
|
|
|
break;
|
|
|
|
}
|
2022-11-23 18:31:31 +00:00
|
|
|
// int? aprox;
|
|
|
|
|
|
|
|
// corrupted size vs. prev_size occurs but not sure if related to fees or just generating monero transactions in general
|
|
|
|
|
|
|
|
// await estimateFeeMutex.protect(() async {
|
|
|
|
// {
|
|
|
|
// try {
|
|
|
|
// aprox = (await prepareSend(
|
|
|
|
// // This address is only used for getting an approximate fee, never for sending
|
|
|
|
// address:
|
|
|
|
// "8347huhmj6Ggzr1BpZPJAD5oa96ob5Fe8GtQdGZDYVVYVsCgtUNH3pEEzExDuaAVZdC16D4FkAb24J6wUfsKkcZtC8EPXB7",
|
|
|
|
// satoshiAmount: satoshiAmount,
|
|
|
|
// args: {"feeRate": feeRateType}))['fee'] as int?;
|
|
|
|
// await Future<void>.delayed(const Duration(milliseconds: 1000));
|
|
|
|
// } catch (e, s) {
|
|
|
|
// Logging.instance.log("$feeRateType $e $s", level: LogLevel.Error);
|
|
|
|
final aprox = walletBase!.calculateEstimatedFee(priority, satoshiAmount);
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// });
|
2022-10-12 01:54:50 +00:00
|
|
|
|
|
|
|
print("this is the aprox fee $aprox for $satoshiAmount");
|
2022-11-23 18:31:31 +00:00
|
|
|
final fee = aprox;
|
2022-08-26 08:11:35 +00:00
|
|
|
return fee;
|
|
|
|
}
|
2022-09-06 01:18:45 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
Future<bool> generateNewAddress() async {
|
|
|
|
try {
|
|
|
|
const String indexKey = "receivingIndex";
|
|
|
|
// First increment the receiving index
|
|
|
|
await _incrementAddressIndexForChain(0);
|
|
|
|
final newReceivingIndex =
|
|
|
|
DB.instance.get<dynamic>(boxName: walletId, key: indexKey) as int;
|
|
|
|
|
|
|
|
// Use new index to derive a new receiving address
|
|
|
|
final newReceivingAddress =
|
|
|
|
await _generateAddressForChain(0, newReceivingIndex);
|
|
|
|
|
|
|
|
// Add that new receiving address to the array of receiving addresses
|
|
|
|
await _addToAddressesArrayForChain(newReceivingAddress, 0);
|
|
|
|
|
|
|
|
// Set the new receiving address that the service
|
|
|
|
|
|
|
|
_currentReceivingAddress = Future(() => newReceivingAddress);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} catch (e, s) {
|
|
|
|
Logging.instance.log(
|
|
|
|
"Exception rethrown from generateNewAddress(): $e\n$s",
|
|
|
|
level: LogLevel.Error);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2022-08-26 08:11:35 +00:00
|
|
|
}
|