CW-934 Implement passphrase creation for zano (#2026)

* CW-934 Implement passphrase creation for zano

* Update monero_c dependency to latest commit
Fix issue with zano keys not showing during sync
Fix delays when invoking read only commands in zano
Fix extra padding above passphrase
Reduced lag during app use
This commit is contained in:
cyan 2025-02-18 23:28:27 +01:00 committed by GitHub
parent 9d6f985a59
commit dd8ccee1ba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 143 additions and 41 deletions

View file

@ -1443,7 +1443,7 @@ abstract class Zano {
List<String> getWordList(String language);
WalletCredentials createZanoRestoreWalletFromSeedCredentials({required String name, required String password, required String passphrase, required int height, required String mnemonic});
WalletCredentials createZanoNewWalletCredentials({required String name, required String? password});
WalletCredentials createZanoNewWalletCredentials({required String name, required String? password, required String? passphrase});
Map<String, String> getKeys(Object wallet);
Object createZanoTransactionCredentials({required List<Output> outputs, required TransactionPriority priority, required CryptoCurrency currency});
double formatterIntAmountToDouble({required int amount, required CryptoCurrency currency, required bool forFee});