đĒToken Gating
Learn how to enable users to access certain features only if they have a Farcaster account or a combination of Farcaster + other criteria such as a specific POAP or NFT.
Airstack provides easy-to-use APIs for enriching Farcaster applications and for integrating onchain and offchain data with Farcaster.
In this tutorial, you will learn how to build token gating systems in your dapp that grant feature access to Farcaster user(s) based on specific onchain criteria.
In this guide you will learn how to use Airstack to:
Pre-requisites
An Airstack account (free)
Basic knowledge of GraphQL
Get Started
JavaScript/TypeScript/Python
If you are using JavaScript/TypeScript or Python, Install the Airstack SDK:
Then, add the following snippets to your code:
Other Programming Languages
To access the Airstack APIs in other languages, you can use https://api.airstack.xyz/gql as your GraphQL endpoint.
đ¤ AI Natural Languageâ
Airstack provides an AI solution for you to build GraphQL queries to fulfill your use case easily. You can find the AI prompt of each query in the demo's caption or title for yourself to try.
Gating only user(s) that have Farcaster
You can implement token gating by checking whether users have Farcaster:
Try Demo
Code
If the length of the data.Socials.Social
array is 0, then it implies that the user has no Farcaster.
Otherwise, the user does and can be given access to a the desired feature.
Gating only user(s) that have Farcaster and NFT
You can implement token gating by checking whether users have both Farcaster and the given NFT:
Try Demo
Code
If the length of the data.TokenBalances.TokenBalance
array is 0, then it implies that the user has no given NFT held.
Otherwise, the user have at least one of the given NFT and then can have the owner.socials
to be checked further to confirm if the user has any Farcaster.
If owner.socials
has length 0, then similarly the user has no Farcaster.
Otherwise, the user has Farcaster and can be given access to a the desired feature.
Gating only user(s) that have Farcaster and POAP
You can implement token gating by checking whether users have both Farcaster and the given POAP:
Try Demo
Code
If the length of the data.Poaps.Poap
array is 0, then it implies that the user has no given POAP held.
Otherwise, the user have at least one of the given POAP and then can have the owner.socials
to be checked further to confirm if the user has any Farcaster.
If owner.socials
has length 0, then similarly the user has no Farcaster.
Otherwise, the user has Farcaster and can be given access to a the desired feature.
Developer Support
If you have any questions or need help regarding token gating, please join our Airstack's Telegram group.
More Resources
Last updated