OnUnlinkSuccess
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: JwtBlockchainAccount
This is called with the wallet that was just unlinked.
For details about JwtBlockchainAccount, see here: https://docs.dynamic.xyz/docs/jwtblockchainaccount
Updated 14 days ago