Callbacks
onAuthSuccess
Summary
This callback will be called after the user successfully authenticates.
Usage
<DynamicContextProvider
settings={{
eventsCallbacks: {
onAuthSuccess: (args) => {
console.log('onAuthSuccess was called', args);
}
}
}}
>
{/* ... rest of your app ... */}
</DynamicContextProvider>
Callback Argument Value
{
authToken: string;
handleLogOut: () => Promise<void>;
isAuthenticated: boolean;
user: UserProfile;
walletConnector: WalletConnector;
}
Was this page helpful?