Wallet Management
Key Features
Architecture
graph TD
A[Widget Initialization] --> B[Check External Providers]
B --> C{Wagmi Provider Found?}
C -->|Yes| D[Use External Wagmi]
C -->|No| E[Use Internal Wagmi]
B --> F{Dynamic Provider Found?}
F -->|Yes| G[Use External Dynamic]
F -->|No| H[Use Internal Dynamic]
B --> I{Query Client Found?}
I -->|Yes| J[Use External Query Client]
I -->|No| K[Use Internal Query Client]
D --> L[Widget Ready]
E --> L
G --> L
H --> L
J --> L
K --> LSupported Provider Libraries
EVM Wallet Management
Solana Wallet Management
Integration Examples
Basic Integration (Uses Internal Providers)
Integration for EVM wallets
Integration with Wagmi
Integration with RainbowKit
useUpdateWagmiConfig Hook
Purpose
Usage
Parameters
Integration for Solana wallets
Integration with Dynamic Labs for Solana wallets
Full Stack Integration
Troubleshooting
Common Issues
Migration Guide
From Internal to External Providers
Last updated