Issues 9 wallet core standards#12
Open
ohotuowo-morgan wants to merge 16 commits into
Open
Conversation
…44 Basic HD wallet with legacy addresses generation
Feat: complete UI implementation
…on listing, which is now removed to allowing npm install to install the correct required version of react and react-native for expo to bundle properlu
Reactnative/dev
… flow - Implement BIP39/32/44/49/84/86 wallet derivation using BDK-RN - Add secure state persistence and auth guard via expo-secure-store & Zustand - Build dashboard with auto-sync, pull-to-refresh, and live BTC/USD pricing - Implement multi-vault switching with loading states and graceful error handling - Create Receive screen with dynamic QR code generation for all address types - Add wallet restore logic and transaction history mapping (with empty states) - Secure bdk-rn Android native compilation using patch-package
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
This PR implements Bitcoin wallet engine for AriseWallet using bdk-rn. It introduces secure wallet creation, multi-vault support (Taproot, SegWit, Legacy), a live dashboard, and a fully functional Receive flow.
Key Features Added
Core Wallet Engine: Implemented BIP39/32/44/49/84/86 to support wallet generation and derivation for Taproot, Native SegWit, P2SH, and Legacy addresses.
Dashboard & Live Data: Built the main dashboard with real-time BTC/USD pricing (CoinGecko integration), transaction history mapping, and clean empty states.
Multi-Vault Switching: Added vault switching. The wallet automatically syncs on launch, pull-to-refresh, or when switching between address types (with a loading overlay).
Receive Flow: Created the Receive screen with QR codes that update based on the currently selected vault(wallet type).
State & Security: Added Auth Guard, state rehydration via Zustand, and secure credential storage using expo-secure-store.
Native Build Fix: Created a permanent patch-package for bdk-rn to resolve Android Kotlin compilation crashes.