Unlinking a Wallet
Learn how to unlink a player wallet by running a simple mutation.
Run the
UnlinkWallet
mutation on GraphiQL with the user address as one of the parameters to unlink the user wallet.mutation {
UnlinkWallet(address: "<address here>")
If the mutation has a valid wallet address, the platform will return a
true
response as shown below.{
"data": {
"UnlinkWallet": true
}
}
With that, you should be able to link the user's wallet again in case the user needs to switch their wallet or link it again through the LinkWallet mutation.
Users are also able to unlink their wallets manually via the Enjin Wallet by going to the "Linked Projects" section, tapping on the project, tapping on the 3-dot menu, and selecting "Delete".

Last modified 10mo ago