Learn how to enable users to access certain features only if they have a Lens profile or a combination of Lens + other criteria such as a specific POAP or NFT.
Airstack provides easy-to-use APIs for enriching Lens applications and integrating on-chain and off-chain data with Lens.
In this tutorial, you will learn how to build token gating systems in your dapp that grant feature access to Lens profile(s) based on specific on-chain criteria.
In this guide you will learn how to use Airstack to:
If you are using JavaScript/TypeScript or Python, Install the Airstack SDK:
React
npminstall@airstack/airstack-react
Node
npminstall@airstack/node
React
yarnadd@airstack/airstack-react
Node
yarnadd@airstack/node
React
pnpminstall@airstack/airstack-react
Node
pnpminstall@airstack/node
pipinstallairstackasyncio
Then, add the following snippets to your code:
import { init, useQuery } from"@airstack/airstack-react";init("YOUR_AIRSTACK_API_KEY");constquery="YOUR_QUERY"; // Replace with GraphQL QueryconstComponent= () => {const { data,loading,error } =useQuery(query);if (loading) {return <p>Loading...</p>; }if (error) {return <p>Error: {error.message}</p>; }// Render your component using the data returned by the query};
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 Lens Profile
You can implement token gating by checking whether users have Lens profile:
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 Lens profile.
If owner.socials has length 0, then similarly the user has no Lens profile.
Otherwise, the user has Lens profile and can be given access to a the desired feature.
Gating only user(s) that have Lens Profile and POAP
You can implement token gating by checking whether users have both Lens profile and the given POAP:
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 Lens profile.
If owner.socials has length 0, then similarly the user has no Lens profile.
Otherwise, the user has that Lens profile 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.