Summary

This callback will be called after the user successfully authenticates.

Usage

<DynamicContextProvider
  settings={{
    events: {
      onAuthSuccess: (args) => {
        console.log('onAuthSuccess was called', args);
      }
    }
  }}
>
 {/* ... rest of your app ... */}
</DynamicContextProvider>

Callback Argument Value

{
  authToken: string;
  handleLogOut: () => Promise<void>;
  isAuthenticated: boolean;
  primaryWallet: Wallet | null
  user: UserProfile;
  walletConnector: WalletConnector;
}

For details about UserProfile, see here

For details about WalletConnector, see here

For details about Wallet, see here