๐ Stablecoin Accounts are live! Learn more
Overview & Setup
Providers & Connectors
UI Components
Hooks
- Hooks Introduction
- Core Hooks
- Login & User Management
- Wallets
- Embedded Wallets
- Funding
Events
Objects & Utilities
- React Objects Introduction
- Objects
- Utilities
Event Callbacks
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, user) => {
console.log('onEmbeddedWalletCreated', jwtVerifiedCredential);
console.log('onEmbeddedWalletCreated user', user);
},
}
}}
>
{/* ... rest of your app ... */}
</DynamicContextProvider>
Callback Argument Value
Copy
Ask AI
JwtVerifiedCredential
UserProfile
Was this page helpful?
On this page
Assistant
Responses are generated using AI and may contain mistakes.