cake_wallet/cw_monero/lib/api/account_list.dart

73 lines
2 KiB
Dart
Raw Normal View History

import 'package:cw_monero/api/wallet.dart';
2024-04-10 12:27:10 +00:00
import 'package:monero/monero.dart' as monero;
2024-04-10 12:27:10 +00:00
monero.wallet? wptr = null;
2024-04-16 15:15:20 +00:00
int _wlptrForW = 0;
monero.WalletListener? _wlptr = null;
monero.WalletListener getWlptr() {
if (wptr!.address == _wlptrForW) return _wlptr!;
_wlptrForW = wptr!.address;
_wlptr = monero.MONERO_cw_getWalletListener(wptr!);
return _wlptr!;
}
2024-04-12 12:54:24 +00:00
monero.SubaddressAccount? subaddressAccount;
bool isUpdating = false;
void refreshAccounts() {
try {
isUpdating = true;
2024-04-12 12:54:24 +00:00
subaddressAccount = monero.Wallet_subaddressAccount(wptr!);
monero.SubaddressAccount_refresh(subaddressAccount!);
isUpdating = false;
} catch (e) {
isUpdating = false;
rethrow;
}
}
2024-04-10 12:27:10 +00:00
List<monero.SubaddressAccountRow> getAllAccount() {
// final size = monero.Wallet_numSubaddressAccounts(wptr!);
2024-04-12 12:54:24 +00:00
refreshAccounts();
int size = monero.SubaddressAccount_getAll_size(subaddressAccount!);
print("size: $size");
if (size == 0) {
monero.Wallet_addSubaddressAccount(wptr!);
return getAllAccount();
}
2024-04-10 12:27:10 +00:00
return List.generate(size, (index) {
2024-04-12 12:54:24 +00:00
return monero.SubaddressAccount_getAll_byIndex(subaddressAccount!, index: index);
2024-04-10 12:27:10 +00:00
});
}
2022-10-12 17:09:57 +00:00
void addAccountSync({required String label}) {
2024-04-10 12:27:10 +00:00
monero.Wallet_addSubaddressAccount(wptr!, label: label);
}
2022-10-12 17:09:57 +00:00
void setLabelForAccountSync({required int accountIndex, required String label}) {
2024-04-10 12:27:10 +00:00
// TODO(mrcyjanek): this may be wrong function?
monero.Wallet_setSubaddressLabel(wptr!, accountIndex: accountIndex, addressIndex: 0, label: label);
}
void _addAccount(String label) => addAccountSync(label: label);
void _setLabelForAccount(Map<String, dynamic> args) {
final label = args['label'] as String;
final accountIndex = args['accountIndex'] as int;
setLabelForAccountSync(label: label, accountIndex: accountIndex);
}
2022-10-12 17:09:57 +00:00
Future<void> addAccount({required String label}) async {
2024-04-10 12:27:10 +00:00
_addAccount(label);
await store();
}
2022-10-12 17:09:57 +00:00
Future<void> setLabelForAccount({required int accountIndex, required String label}) async {
2024-04-10 12:27:10 +00:00
_setLabelForAccount({'accountIndex': accountIndex, 'label': label});
await store();
}