Linking a global wallet
To prompt users to link their embedded wallet from a provider app, use the linkCrossAppAccount
method from the useCrossAppAccounts
hook:
Parameters
The Privy app ID of the provider app from which you’d like a user to link their account. You can find a list of Privy app IDs for provider apps in the Cross-app ecosystem page of the Privy Dashboard.
Behavior
When linkCrossAppAccount
is invoked, the user will be redirected to a page hosted on the domain of the provider app you specified to authorize access to your own app.
If the user successfully authorizes access, the user will be redirected back to your app, and an account of type: 'cross_app'
will be added to the linkedAccounts
array of their user
object.
linkCrossAppAccount
will throw an error if:
- The user does not authorize access to your app or exits the flow prematurely.
- The provider app you request has not opted-in to share their wallets.
- The user is not
authenticated
and thus cannot link an account from the provider app to an existing account within your requester’s app.
Was this page helpful?