Event Callbacks
onUserProfileUpdate
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
🚀 Stablecoin Accounts are live! Learn more
<DynamicContextProvider
settings={{
events: {
onUserProfileUpdate: (user) => {
console.log('onUserProfileUpdate was called', user);
}
}
}}
>
{/* ... rest of your app ... */}
</DynamicContextProvider>
user: UserProfile
Was this page helpful?