We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I wonder why these functions don't support async/await?
String mnemonic = Wallet.generate12WordsMnemonic(); Wallet wallet = Wallet.from(mnemonic); KeyPair keyPair = wallet.getKeyPair(index: 0);
Without the aysnc/await support, the app hangs when mnemonics and keys are generated.
The text was updated successfully, but these errors were encountered:
Hi @kahwooi thank you for reporting this, I created a new version 1.0.7 making those functions async. see also the corresponding example: #4
Pls. let me know if this release solves the issue.
Sorry, something went wrong.
No branches or pull requests
I wonder why these functions don't support async/await?
String mnemonic = Wallet.generate12WordsMnemonic(); Wallet wallet = Wallet.from(mnemonic); KeyPair keyPair = wallet.getKeyPair(index: 0);
Without the aysnc/await support, the app hangs when mnemonics and keys are generated.
The text was updated successfully, but these errors were encountered: