onUnlinkSuccess
Summary
This callback will be called when the user successfully unlinks a secondary wallet to an existing account. See the multi-wallet docs for more information.
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.
Updated about 2 months ago