The Basics
- Add Login / Signup
- Chains / Networks
- Wallets
- Users / VC's
- Design
- Onramps
Beyond The Basics
- Headless
- Global Wallets
- Bridge Widget
- Rate Limits
Developer Dashboard
- SDK and API Keys
- Sandbox vs Live
- Analytics
- User Management
- Test Accounts
- Settings
- Admin
- Webhooks
- Configuring Social Providers
Tutorials
- Farcaster
- Telegram
- Features
- Frameworks
- Integrations
- Webhooks
Migrating to Dynamic
- Migrating to Dynamic
- Migration Tutorials
For Wallets & Chains
Legacy: V1 Embedded Wallets
- V1 Embedded Wallets Overview
- Working with environments that have both v1 and v2 embedded wallets
- Transactional MFA
- Headless
onEmbeddedWalletCreated
Summary
This callback will be called when the user successfully has an embedded wallet created for them. For more info, see the embedded wallets section of the documentation.
Usage
Copy
Ask AI
<DynamicContextProvider
settings={{
events: {
onEmbeddedWalletCreated: (jwtVerifiedCredential, ~authToken~) => {
console.log('onEmbeddedWalletCreated', jwtVerifiedCredential);
console.log('onEmbeddedWalletCreated authToken', getAuthToken());
},
}
}}
>
{/* ... rest of your app ... */}
</DynamicContextProvider>
Callback Argument Value
Copy
Ask AI
JwtVerifiedCredential
~authToken: string;~ // deprecated - use getAuthToken() instead
Was this page helpful?
On this page
Assistant
Responses are generated using AI and may contain mistakes.