How it works
- Create an EVM and Solana embedded wallet for the user using Dynamic
- Extract the public key from the appropriate root wallet
- Apply chain-specific hashing and encoding to derive the chain address
- Use Dynamic’s raw signing to sign chain-native transactions
User Management
Tier 2 chains are not natively supported in Dynamic’s UI or session model. You are responsible for managing the user-facing experience: displaying derived addresses, associating them with your user records, and handling any chain-specific account state yourself.
Key Security Warning
Supported Tier 2 Chains
Bitcoin Signing
Bitcoin is a Tier 1 chain with full embedded wallet support. The Bitcoin embedded wallet uses BIP-340 (Schnorr/Taproot) signing via the FROST protocol — the same underlying approach as EVM (ECDSA) and Solana (EdDSA) embedded wallets. Using the Bitcoin embedded wallet as a signing root for other BIP-340-compatible chains works the same way as the EVM and Solana Tier 2 patterns, but documentation is not yet published. BIP-340-based chains without published guides are Tier 3 for now. Reach out if you need guidance.Extending to other chains
Any chain that uses secp256k1 or Ed25519 can be supported using the same pattern — derive the address from the matching root wallet and sign using Dynamic’s raw signing. If a chain uses a different curve or encoding, see chains with Tier 3 support or reach out to discuss native SDK support.Get started
- JavaScript / headless SDK — See the technical overview for chains with Tier 2 support for shared setup, utility functions, and a full walkthrough using Aptos as an example.
- React Native — See the React Native guide for chains with Tier 2 support for the same patterns using the React Native client SDK.