Summary

This callback will be called when the user successfully unlinks a wallet.

Usage

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

Callback Argument Value

unlinkedWallet: JwtVerifiedCredential

This is called with the wallet that was just unlinked.

For details about JwtVerifiedCredential, see here

Was this page helpful?