๐คนโโ๏ธIncremental Token Gating
A guide to start incremental token gating anything in minutes.
Requirements
Before continuing make sure you've followed the setup guide
โ๏ธStart Here: SetupIf you are unfamiliar with token gating, we recommend reading one of the other token gating guides first
๐ชToken Gating (Ethereum / EVM)๐คบToken Gating (Solana)To understand the use cases for incremental token gating, read the incremental authorization concept page
๐คนIncremental AuthorizationIncremental Token Gating
You can use Picket to token gate anything. Incremental token gating, also know as incremental authorization, allows you to token gate after the user is logged in. If the user meets the token ownership requirements, we'll automatically handle updating their access token for you. This makes all future checks for the same token ownership lightning fast.
1. Log In the User
2. Token Gate Specific Actions or Content
Once the user is logged, you can authorize for specific requirements. This can be used to prevent users from clicking a button or accessing page if they don't have certain tokens.
You successfully logged in a user and token gated content!
Every time a user is successfully authorized for a new requirement, their access token will automatically be updated to reflect it.
Using Access Tokens
Congrats ๐ your user is now successfully logged in. After authenticated/authorizing a user, you get an access token. You can use this access token to make secure requests to your backend. Read more in the working with access tokens guide.
๐Working with Access TokensLast updated