mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-22 11:39:22 +00:00
subaddress fix (#1620)
* subaddress fix * fix subaddress generation * rewrite usedAddresses for xmr and wow * [skip ci] remove print statements
This commit is contained in:
parent
518bfbe40d
commit
4c795ea5c2
8 changed files with 99 additions and 13 deletions
|
@ -45,6 +45,8 @@ List<Transaction> getAllTransactions() {
|
||||||
confirmations: 0,
|
confirmations: 0,
|
||||||
blockheight: 0,
|
blockheight: 0,
|
||||||
accountIndex: i,
|
accountIndex: i,
|
||||||
|
addressIndex: 0,
|
||||||
|
addressIndexList: [0],
|
||||||
paymentId: "",
|
paymentId: "",
|
||||||
amount: fullBalance - availBalance,
|
amount: fullBalance - availBalance,
|
||||||
isSpend: false,
|
isSpend: false,
|
||||||
|
@ -245,19 +247,30 @@ Future<PendingTransactionDescription> createTransactionMultDest(
|
||||||
|
|
||||||
class Transaction {
|
class Transaction {
|
||||||
final String displayLabel;
|
final String displayLabel;
|
||||||
String subaddressLabel = monero.Wallet_getSubaddressLabel(wptr!, accountIndex: 0, addressIndex: 0);
|
String get subaddressLabel => monero.Wallet_getSubaddressLabel(
|
||||||
late final String address = monero.Wallet_address(
|
|
||||||
wptr!,
|
wptr!,
|
||||||
accountIndex: 0,
|
accountIndex: accountIndex,
|
||||||
addressIndex: 0,
|
addressIndex: addressIndex,
|
||||||
);
|
);
|
||||||
|
String get address => monero.Wallet_address(
|
||||||
|
wptr!,
|
||||||
|
accountIndex: accountIndex,
|
||||||
|
addressIndex: addressIndex,
|
||||||
|
);
|
||||||
|
List<String> get addressList => List.generate(addressIndexList.length, (index) =>
|
||||||
|
monero.Wallet_address(
|
||||||
|
wptr!,
|
||||||
|
accountIndex: accountIndex,
|
||||||
|
addressIndex: addressIndexList[index],
|
||||||
|
));
|
||||||
final String description;
|
final String description;
|
||||||
final int fee;
|
final int fee;
|
||||||
final int confirmations;
|
final int confirmations;
|
||||||
late final bool isPending = confirmations < 10;
|
late final bool isPending = confirmations < 10;
|
||||||
final int blockheight;
|
final int blockheight;
|
||||||
final int addressIndex = 0;
|
final int addressIndex;
|
||||||
final int accountIndex;
|
final int accountIndex;
|
||||||
|
final List<int> addressIndexList;
|
||||||
final String paymentId;
|
final String paymentId;
|
||||||
final int amount;
|
final int amount;
|
||||||
final bool isSpend;
|
final bool isSpend;
|
||||||
|
@ -303,6 +316,8 @@ class Transaction {
|
||||||
amount = monero.TransactionInfo_amount(txInfo),
|
amount = monero.TransactionInfo_amount(txInfo),
|
||||||
paymentId = monero.TransactionInfo_paymentId(txInfo),
|
paymentId = monero.TransactionInfo_paymentId(txInfo),
|
||||||
accountIndex = monero.TransactionInfo_subaddrAccount(txInfo),
|
accountIndex = monero.TransactionInfo_subaddrAccount(txInfo),
|
||||||
|
addressIndex = int.tryParse(monero.TransactionInfo_subaddrIndex(txInfo).split(", ")[0]) ?? 0,
|
||||||
|
addressIndexList = monero.TransactionInfo_subaddrIndex(txInfo).split(", ").map((e) => int.tryParse(e) ?? 0).toList(),
|
||||||
blockheight = monero.TransactionInfo_blockHeight(txInfo),
|
blockheight = monero.TransactionInfo_blockHeight(txInfo),
|
||||||
confirmations = monero.TransactionInfo_confirmations(txInfo),
|
confirmations = monero.TransactionInfo_confirmations(txInfo),
|
||||||
fee = monero.TransactionInfo_fee(txInfo),
|
fee = monero.TransactionInfo_fee(txInfo),
|
||||||
|
@ -316,6 +331,8 @@ class Transaction {
|
||||||
required this.confirmations,
|
required this.confirmations,
|
||||||
required this.blockheight,
|
required this.blockheight,
|
||||||
required this.accountIndex,
|
required this.accountIndex,
|
||||||
|
required this.addressIndexList,
|
||||||
|
required this.addressIndex,
|
||||||
required this.paymentId,
|
required this.paymentId,
|
||||||
required this.amount,
|
required this.amount,
|
||||||
required this.isSpend,
|
required this.isSpend,
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
import 'package:cw_core/subaddress.dart';
|
import 'package:cw_core/subaddress.dart';
|
||||||
import 'package:cw_monero/api/coins_info.dart';
|
import 'package:cw_monero/api/coins_info.dart';
|
||||||
import 'package:cw_monero/api/subaddress_list.dart' as subaddress_list;
|
import 'package:cw_monero/api/subaddress_list.dart' as subaddress_list;
|
||||||
|
import 'package:cw_monero/api/wallet.dart';
|
||||||
import 'package:flutter/services.dart';
|
import 'package:flutter/services.dart';
|
||||||
import 'package:mobx/mobx.dart';
|
import 'package:mobx/mobx.dart';
|
||||||
|
|
||||||
|
@ -103,6 +104,9 @@ abstract class MoneroSubaddressListBase with Store {
|
||||||
required List<String> usedAddresses,
|
required List<String> usedAddresses,
|
||||||
}) async {
|
}) async {
|
||||||
_usedAddresses.addAll(usedAddresses);
|
_usedAddresses.addAll(usedAddresses);
|
||||||
|
final _all = _usedAddresses.toSet().toList();
|
||||||
|
_usedAddresses.clear();
|
||||||
|
_usedAddresses.addAll(_all);
|
||||||
if (_isUpdating) {
|
if (_isUpdating) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -124,7 +128,7 @@ abstract class MoneroSubaddressListBase with Store {
|
||||||
Future<List<Subaddress>> _getAllUnusedAddresses(
|
Future<List<Subaddress>> _getAllUnusedAddresses(
|
||||||
{required int accountIndex, required String label}) async {
|
{required int accountIndex, required String label}) async {
|
||||||
final allAddresses = subaddress_list.getAllSubaddresses();
|
final allAddresses = subaddress_list.getAllSubaddresses();
|
||||||
if (allAddresses.isEmpty || _usedAddresses.contains(allAddresses.last)) {
|
if (allAddresses.isEmpty || _usedAddresses.contains(allAddresses.first.address)) {
|
||||||
final isAddressUnused = await _newSubaddress(accountIndex: accountIndex, label: label);
|
final isAddressUnused = await _newSubaddress(accountIndex: accountIndex, label: label);
|
||||||
if (!isAddressUnused) {
|
if (!isAddressUnused) {
|
||||||
return await _getAllUnusedAddresses(accountIndex: accountIndex, label: label);
|
return await _getAllUnusedAddresses(accountIndex: accountIndex, label: label);
|
||||||
|
@ -143,8 +147,7 @@ abstract class MoneroSubaddressListBase with Store {
|
||||||
label.toLowerCase() == 'Primary account'.toLowerCase()
|
label.toLowerCase() == 'Primary account'.toLowerCase()
|
||||||
? 'Primary address'
|
? 'Primary address'
|
||||||
: label);
|
: label);
|
||||||
})
|
}).toList().reversed.toList();
|
||||||
.toList();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<bool> _newSubaddress({required int accountIndex, required String label}) async {
|
Future<bool> _newSubaddress({required int accountIndex, required String label}) async {
|
||||||
|
|
|
@ -88,6 +88,9 @@ abstract class MoneroWalletBase extends WalletBase<MoneroBalance,
|
||||||
reaction((_) => isEnabledAutoGenerateSubaddress, (bool enabled) {
|
reaction((_) => isEnabledAutoGenerateSubaddress, (bool enabled) {
|
||||||
_updateSubAddress(enabled, account: walletAddresses.account);
|
_updateSubAddress(enabled, account: walletAddresses.account);
|
||||||
});
|
});
|
||||||
|
reaction((_) => transactionHistory, (__) {
|
||||||
|
_updateSubAddress(isEnabledAutoGenerateSubaddress, account: walletAddresses.account);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
static const int _autoSaveInterval = 30;
|
static const int _autoSaveInterval = 30;
|
||||||
|
@ -130,6 +133,7 @@ abstract class MoneroWalletBase extends WalletBase<MoneroBalance,
|
||||||
|
|
||||||
monero_wallet.SyncListener? _listener;
|
monero_wallet.SyncListener? _listener;
|
||||||
ReactionDisposer? _onAccountChangeReaction;
|
ReactionDisposer? _onAccountChangeReaction;
|
||||||
|
ReactionDisposer? _onTxHistoryChangeReaction;
|
||||||
bool _isTransactionUpdating;
|
bool _isTransactionUpdating;
|
||||||
bool _hasSyncAfterStartup;
|
bool _hasSyncAfterStartup;
|
||||||
Timer? _autoSaveTimer;
|
Timer? _autoSaveTimer;
|
||||||
|
@ -169,6 +173,7 @@ abstract class MoneroWalletBase extends WalletBase<MoneroBalance,
|
||||||
void close() async {
|
void close() async {
|
||||||
_listener?.stop();
|
_listener?.stop();
|
||||||
_onAccountChangeReaction?.reaction.dispose();
|
_onAccountChangeReaction?.reaction.dispose();
|
||||||
|
_onTxHistoryChangeReaction?.reaction.dispose();
|
||||||
_autoSaveTimer?.cancel();
|
_autoSaveTimer?.cancel();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,7 @@ import 'package:cw_core/address_info.dart';
|
||||||
import 'package:cw_core/subaddress.dart';
|
import 'package:cw_core/subaddress.dart';
|
||||||
import 'package:cw_core/wallet_addresses.dart';
|
import 'package:cw_core/wallet_addresses.dart';
|
||||||
import 'package:cw_core/wallet_info.dart';
|
import 'package:cw_core/wallet_info.dart';
|
||||||
|
import 'package:cw_monero/api/transaction_history.dart';
|
||||||
import 'package:cw_monero/api/wallet.dart';
|
import 'package:cw_monero/api/wallet.dart';
|
||||||
import 'package:cw_monero/monero_account_list.dart';
|
import 'package:cw_monero/monero_account_list.dart';
|
||||||
import 'package:cw_monero/monero_subaddress_list.dart';
|
import 'package:cw_monero/monero_subaddress_list.dart';
|
||||||
|
@ -37,6 +38,25 @@ abstract class MoneroWalletAddressesBase extends WalletAddresses with Store {
|
||||||
|
|
||||||
MoneroAccountList accountList;
|
MoneroAccountList accountList;
|
||||||
|
|
||||||
|
@override
|
||||||
|
Set<String> get usedAddresses {
|
||||||
|
final txs = getAllTransactions();
|
||||||
|
final adds = _originalUsedAddresses.toList();
|
||||||
|
for (var i = 0; i < txs.length; i++) {
|
||||||
|
for (var j = 0; j < txs[i].addressList.length; j++) {
|
||||||
|
adds.add(txs[i].addressList[j]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return adds.toSet();
|
||||||
|
}
|
||||||
|
|
||||||
|
Set<String> _originalUsedAddresses = Set();
|
||||||
|
|
||||||
|
@override
|
||||||
|
set usedAddresses(Set<String> _usedAddresses) {
|
||||||
|
_originalUsedAddresses = _usedAddresses;
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Future<void> init() async {
|
Future<void> init() async {
|
||||||
accountList.update();
|
accountList.update();
|
||||||
|
|
|
@ -45,6 +45,8 @@ List<Transaction> getAllTransactions() {
|
||||||
confirmations: 0,
|
confirmations: 0,
|
||||||
blockheight: 0,
|
blockheight: 0,
|
||||||
accountIndex: i,
|
accountIndex: i,
|
||||||
|
addressIndex: 0,
|
||||||
|
addressIndexList: [0],
|
||||||
paymentId: "",
|
paymentId: "",
|
||||||
amount: fullBalance - availBalance,
|
amount: fullBalance - availBalance,
|
||||||
isSpend: false,
|
isSpend: false,
|
||||||
|
@ -243,19 +245,26 @@ Future<PendingTransactionDescription> createTransactionMultDest(
|
||||||
|
|
||||||
class Transaction {
|
class Transaction {
|
||||||
final String displayLabel;
|
final String displayLabel;
|
||||||
String subaddressLabel = wownero.Wallet_getSubaddressLabel(wptr!, accountIndex: 0, addressIndex: 0);
|
String get subaddressLabel => wownero.Wallet_getSubaddressLabel(wptr!, accountIndex: 0, addressIndex: 0);
|
||||||
late final String address = wownero.Wallet_address(
|
String get address => wownero.Wallet_address(
|
||||||
wptr!,
|
wptr!,
|
||||||
accountIndex: 0,
|
accountIndex: accountIndex,
|
||||||
addressIndex: 0,
|
addressIndex: addressIndex,
|
||||||
);
|
);
|
||||||
|
List<String> get addressList => List.generate(addressIndexList.length, (index) =>
|
||||||
|
wownero.Wallet_address(
|
||||||
|
wptr!,
|
||||||
|
accountIndex: accountIndex,
|
||||||
|
addressIndex: addressIndexList[index],
|
||||||
|
));
|
||||||
final String description;
|
final String description;
|
||||||
final int fee;
|
final int fee;
|
||||||
final int confirmations;
|
final int confirmations;
|
||||||
late final bool isPending = confirmations < 3;
|
late final bool isPending = confirmations < 3;
|
||||||
final int blockheight;
|
final int blockheight;
|
||||||
final int addressIndex = 0;
|
final int addressIndex;
|
||||||
final int accountIndex;
|
final int accountIndex;
|
||||||
|
final List<int> addressIndexList;
|
||||||
final String paymentId;
|
final String paymentId;
|
||||||
final int amount;
|
final int amount;
|
||||||
final bool isSpend;
|
final bool isSpend;
|
||||||
|
@ -301,6 +310,8 @@ class Transaction {
|
||||||
amount = wownero.TransactionInfo_amount(txInfo),
|
amount = wownero.TransactionInfo_amount(txInfo),
|
||||||
paymentId = wownero.TransactionInfo_paymentId(txInfo),
|
paymentId = wownero.TransactionInfo_paymentId(txInfo),
|
||||||
accountIndex = wownero.TransactionInfo_subaddrAccount(txInfo),
|
accountIndex = wownero.TransactionInfo_subaddrAccount(txInfo),
|
||||||
|
addressIndex = int.tryParse(wownero.TransactionInfo_subaddrIndex(txInfo).split(", ")[0]) ?? 0,
|
||||||
|
addressIndexList = wownero.TransactionInfo_subaddrIndex(txInfo).split(", ").map((e) => int.tryParse(e) ?? 0).toList(),
|
||||||
blockheight = wownero.TransactionInfo_blockHeight(txInfo),
|
blockheight = wownero.TransactionInfo_blockHeight(txInfo),
|
||||||
confirmations = wownero.TransactionInfo_confirmations(txInfo),
|
confirmations = wownero.TransactionInfo_confirmations(txInfo),
|
||||||
fee = wownero.TransactionInfo_fee(txInfo),
|
fee = wownero.TransactionInfo_fee(txInfo),
|
||||||
|
@ -314,6 +325,8 @@ class Transaction {
|
||||||
required this.confirmations,
|
required this.confirmations,
|
||||||
required this.blockheight,
|
required this.blockheight,
|
||||||
required this.accountIndex,
|
required this.accountIndex,
|
||||||
|
required this.addressIndex,
|
||||||
|
required this.addressIndexList,
|
||||||
required this.paymentId,
|
required this.paymentId,
|
||||||
required this.amount,
|
required this.amount,
|
||||||
required this.isSpend,
|
required this.isSpend,
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
import 'package:cw_core/subaddress.dart';
|
import 'package:cw_core/subaddress.dart';
|
||||||
import 'package:cw_wownero/api/coins_info.dart';
|
import 'package:cw_wownero/api/coins_info.dart';
|
||||||
import 'package:cw_wownero/api/subaddress_list.dart' as subaddress_list;
|
import 'package:cw_wownero/api/subaddress_list.dart' as subaddress_list;
|
||||||
|
import 'package:cw_wownero/api/wallet.dart';
|
||||||
import 'package:flutter/services.dart';
|
import 'package:flutter/services.dart';
|
||||||
import 'package:mobx/mobx.dart';
|
import 'package:mobx/mobx.dart';
|
||||||
|
|
||||||
|
@ -103,6 +104,9 @@ abstract class WowneroSubaddressListBase with Store {
|
||||||
required List<String> usedAddresses,
|
required List<String> usedAddresses,
|
||||||
}) async {
|
}) async {
|
||||||
_usedAddresses.addAll(usedAddresses);
|
_usedAddresses.addAll(usedAddresses);
|
||||||
|
final _all = _usedAddresses.toSet().toList();
|
||||||
|
_usedAddresses.clear();
|
||||||
|
_usedAddresses.addAll(_all);
|
||||||
if (_isUpdating) {
|
if (_isUpdating) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -82,6 +82,10 @@ abstract class WowneroWalletBase
|
||||||
reaction((_) => isEnabledAutoGenerateSubaddress, (bool enabled) {
|
reaction((_) => isEnabledAutoGenerateSubaddress, (bool enabled) {
|
||||||
_updateSubAddress(enabled, account: walletAddresses.account);
|
_updateSubAddress(enabled, account: walletAddresses.account);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
_onTxHistoryChangeReaction = reaction((_) => transactionHistory, (__) {
|
||||||
|
_updateSubAddress(isEnabledAutoGenerateSubaddress, account: walletAddresses.account);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
static const int _autoSaveInterval = 30;
|
static const int _autoSaveInterval = 30;
|
||||||
|
@ -123,6 +127,7 @@ abstract class WowneroWalletBase
|
||||||
|
|
||||||
wownero_wallet.SyncListener? _listener;
|
wownero_wallet.SyncListener? _listener;
|
||||||
ReactionDisposer? _onAccountChangeReaction;
|
ReactionDisposer? _onAccountChangeReaction;
|
||||||
|
ReactionDisposer? _onTxHistoryChangeReaction;
|
||||||
bool _isTransactionUpdating;
|
bool _isTransactionUpdating;
|
||||||
bool _hasSyncAfterStartup;
|
bool _hasSyncAfterStartup;
|
||||||
Timer? _autoSaveTimer;
|
Timer? _autoSaveTimer;
|
||||||
|
@ -158,6 +163,7 @@ abstract class WowneroWalletBase
|
||||||
void close() async {
|
void close() async {
|
||||||
_listener?.stop();
|
_listener?.stop();
|
||||||
_onAccountChangeReaction?.reaction.dispose();
|
_onAccountChangeReaction?.reaction.dispose();
|
||||||
|
_onTxHistoryChangeReaction?.reaction.dispose();
|
||||||
_autoSaveTimer?.cancel();
|
_autoSaveTimer?.cancel();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,7 @@ import 'package:cw_core/address_info.dart';
|
||||||
import 'package:cw_core/subaddress.dart';
|
import 'package:cw_core/subaddress.dart';
|
||||||
import 'package:cw_core/wallet_addresses.dart';
|
import 'package:cw_core/wallet_addresses.dart';
|
||||||
import 'package:cw_core/wallet_info.dart';
|
import 'package:cw_core/wallet_info.dart';
|
||||||
|
import 'package:cw_wownero/api/transaction_history.dart';
|
||||||
import 'package:cw_wownero/api/wallet.dart';
|
import 'package:cw_wownero/api/wallet.dart';
|
||||||
import 'package:cw_wownero/wownero_account_list.dart';
|
import 'package:cw_wownero/wownero_account_list.dart';
|
||||||
import 'package:cw_wownero/wownero_subaddress_list.dart';
|
import 'package:cw_wownero/wownero_subaddress_list.dart';
|
||||||
|
@ -36,7 +37,24 @@ abstract class WowneroWalletAddressesBase extends WalletAddresses with Store {
|
||||||
WowneroSubaddressList subaddressList;
|
WowneroSubaddressList subaddressList;
|
||||||
|
|
||||||
WowneroAccountList accountList;
|
WowneroAccountList accountList;
|
||||||
|
@override
|
||||||
|
Set<String> get usedAddresses {
|
||||||
|
final txs = getAllTransactions();
|
||||||
|
final adds = _originalUsedAddresses.toList();
|
||||||
|
for (var i = 0; i < txs.length; i++) {
|
||||||
|
for (var j = 0; j < txs[i].addressList.length; j++) {
|
||||||
|
adds.add(txs[i].addressList[j]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return adds.toSet();
|
||||||
|
}
|
||||||
|
|
||||||
|
Set<String> _originalUsedAddresses = Set();
|
||||||
|
|
||||||
|
@override
|
||||||
|
set usedAddresses(Set<String> _usedAddresses) {
|
||||||
|
_originalUsedAddresses = _usedAddresses;
|
||||||
|
}
|
||||||
@override
|
@override
|
||||||
Future<void> init() async {
|
Future<void> init() async {
|
||||||
accountList.update();
|
accountList.update();
|
||||||
|
|
Loading…
Reference in a new issue