-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
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
feat(wallet): Implement Rust Address Generator #1627
Conversation
Removes nodejs-mobile dependency and related files. Adds react-native-address-generator and implements it accordingly.
Updates react-native-address-generator to version 0.2.2. Updates Podfile.lock.
Upgrades react-native-mmkv to version 2.12.2.
…s-generator # Conflicts: # ios/Podfile.lock
@limpbrains, does the Can't seem to get it sorted. |
Removes wallet-restore.ts from tests. Adds setupAddressGenerator to setupOnChainWallet. Adds bip39Passphrase param to setupAddressGenerator.
…s-generator # Conflicts: # ios/Podfile.lock # yarn.lock
👍 Dependency issues cleared. Learn more about Socket for GitHub ↗︎ This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored. |
Reverts EXCLUDED_ARCHS changes in project.pbxproj. Upgrades react-native-address-generator.
if (!addressGenerator) { | ||
const res = await setupAddressGenerator({}); | ||
if (res.isErr()) { | ||
return ''; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why return empty string instead of throwing an error? Who will handle this empty string?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is for react-native-ldk
, in the event an issue occurred generating an address/scripthash since it only expects a string.
I'll be closing this PR in favor of this one. |
HODL! DO NOT MERGE
Description
nodejs-mobile
dependency and related files.react-native-address-generator
and implements it accordingly.Linked Issues/Tasks
Type of change
Tests