mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-28 14:39:38 +00:00
56 lines
No EOL
1.6 KiB
Dart
56 lines
No EOL
1.6 KiB
Dart
import 'package:cw_monero/api/wallet.dart';
|
|
import 'package:monero/monero.dart' as monero;
|
|
|
|
monero.wallet? wptr = null;
|
|
monero.SubaddressAccount? account;
|
|
|
|
bool isUpdating = false;
|
|
|
|
void refreshAccounts() {
|
|
try {
|
|
isUpdating = true;
|
|
account = monero.Wallet_subaddressAccount(wptr!);
|
|
monero.SubaddressAccount_refresh(account!);
|
|
isUpdating = false;
|
|
} catch (e) {
|
|
isUpdating = false;
|
|
rethrow;
|
|
}
|
|
}
|
|
|
|
List<monero.SubaddressAccountRow> getAllAccount() {
|
|
// final size = monero.Wallet_numSubaddressAccounts(wptr!);
|
|
final size = monero.SubaddressAccount_getAll_size(wptr!);
|
|
|
|
return List.generate(size, (index) {
|
|
return monero.SubaddressAccount_getAll_byIndex(wptr!, index: index);
|
|
});
|
|
}
|
|
|
|
void addAccountSync({required String label}) {
|
|
monero.Wallet_addSubaddressAccount(wptr!, label: label);
|
|
}
|
|
|
|
void setLabelForAccountSync({required int accountIndex, required String label}) {
|
|
// 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);
|
|
}
|
|
|
|
Future<void> addAccount({required String label}) async {
|
|
_addAccount(label);
|
|
await store();
|
|
}
|
|
|
|
Future<void> setLabelForAccount({required int accountIndex, required String label}) async {
|
|
_setLabelForAccount({'accountIndex': accountIndex, 'label': label});
|
|
await store();
|
|
} |