unlink
Unlink a wallet from an application
This function allows a project to unlink a wallet from its application.
venlyConnect.api.unlink("d91b644a-076f-44bf-ae90-29251df19784")
venlyConnect.api.unlink(walletId: string): Promise<void>
Promise<void>
Parameter | Required | Description |
walletId | True | The wallet ID of the wallet you want to unlink. |
venlyConnect.api.unlink("d91b644a-076f-44bf-ae90-29251df19784")
.then(() => {
// Update UI
myFunction();
});
Last modified 2yr ago