Link a Wallet to a Web 2.0 Account
Picket can be used to verify wallet ownership for a user in an existing application. Once you've linked a wallet to a user's account, you start integrating web3 information into your app!
Last updated
Picket can be used to verify wallet ownership for a user in an existing application. Once you've linked a wallet to a user's account, you start integrating web3 information into your app!
Last updated
In addition to enabling you to build new web3 native experiences from scratch, Picket can adapt your existing traditional web applications to the modern web3 world. Picket's authentication flow verifies wallet ownership, which allows you to link a wallet address to a user's profile. Once you've connected a wallet address to a user, you can integrate web3 information, like NFTs, into the user's profile by querying the blockchain all while knowing that the user is the owner of the verified wallet!
Setup Picket
Verify Wallet Ownership Client-Side with picket-js
or picket-react
Make a request to the app's server with the Picket access token
Validate the user's access token server-side
Link the wallet to the user's account
Join the Waitlist
To manage demand, we set up a waitlist for API key access. We're granting developers access as fast as we can. If you haven't already signed up, you can add yourself to the waitlist at .
Picket uses API keys to authorize your requests. Requests without an API key will result in an error. You can get your API key from your account There are two types of API keys
Publishable keys: These keys are used client-side and are meant for client-side libraries, like .
Secret keys: As the name suggests, these must be kept secret. They are meant for server-side libraries, like
The best way to interact with our API is to use one of our official libraries:
picket-js
or picket-react
Replace example.com
and the example access token with your app's server route
Server-side libraries, like picket-node
, require a secret API key and must only be used in a secure, server-side environment.
Authorization to the API is performed via . Provide your API key as the basic auth username value. You do not need to provide a password. API Authorization is handled for you in any of Picket's SDKs.
Follow the guide