This callback will be called when the user successfully links a wallet.
<DynamicContextProvider settings={{ eventsCallbacks: { onLinkSuccess: (args) => { console.log('onLinkSuccess was called', args); } } }} > {/* ... rest of your app ... */} </DynamicContextProvider>
{ authToken: string; handleLogOut: () => Promise<void>; isAuthenticated: boolean; user: UserProfile; walletConnector: WalletConnector; }
For details about UserProfile, see here
For details about WalletConnector, see here
Was this page helpful?