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")
Signature:
venlyConnect.api.unlink(walletId: string): Promise<void>
Returns:
Promise<void>
Parameters:
Parameter | Required | Description |
---|---|---|
walletId | True | The wallet ID of the wallet you want to unlink. |
Example:
venlyConnect.api.unlink("d91b644a-076f-44bf-ae90-29251df19784")
.then(() => {
// Update UI
myFunction();
});
Updated about 1 year ago