Guides đŋ LensđŦ Has XMTPLearn how to check if Lens profiles have XMTP enabled on their account or not.
Airstack provides easy-to-use APIs for enriching Lens applications and integrating on-chain and off-chain data with Lens .
XMTP is an Ethereum-based messaging protocol.
Developers building with XMTP can use Airstack to enable Lens users to seamlessly message Ethereum, ENS, Lens, and Farcaster users with XMTP-enabled addresses.
Airstack is utilized to:
check if users have XMTP enabled (required in order to receive XMTP messages)
resolve Lens profile names or IDs to 0x Ethereum addresses and vice versa.
In this guide you will learn how to use Airstack to:
Pre-requisites
Basic knowledge of GraphQL
Get Started
JavaScript/TypeScript/Python
If you are using JavaScript/TypeScript or Python, Install the Airstack SDK:
npm yarn pnpm pip
React
Copy npm install @airstack/airstack-react
Node
Copy npm install @airstack/node
React
Copy yarn add @airstack/airstack-react
Node
Copy yarn add @airstack/node
React
Copy pnpm install @airstack/airstack-react
Node
Copy pnpm install @airstack/node
Copy pip install airstack asyncio
Then, add the following snippets to your code:
React Node Python
Copy import { init , useQuery } from "@airstack/airstack-react" ;
init ( "YOUR_AIRSTACK_API_KEY" );
const query = "YOUR_QUERY" ; // Replace with GraphQL Query
const Component = () => {
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
};
Copy import { init , fetchQuery } from "@airstack/airstack-react" ;
init ( "YOUR_AIRSTACK_API_KEY" );
const query = "YOUR_QUERY" ; // Replace with GraphQL Query
const { data , error } = fetchQuery (query);
console .log ( "data:" , data);
console .log ( "error:" , error);
Copy import asyncio
from airstack . execute_query import AirstackClient
api_client = AirstackClient (api_key = "YOUR_AIRSTACK_API_KEY" )
query = "YOUR_QUERY" # Replace with GraphQL Query
async def main ():
execute_query_client = api_client . create_execute_query_object (
query = query)
query_response = await execute_query_client . execute_query ()
print (query_response.data)
asyncio . run ( main ())
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.
Check Lens Profile Has XMTP Enabled
You can check if a Lens profile has XMTP enabled or not:
Try Demo
Code
Query Response
Copy query MyQuery {
XMTPs(input: { blockchain : ALL, filter : { owner : { _eq : "vitalik.lens" }}}) {
XMTP {
isXMTPEnabled
}
}
}
Copy {
"data" : {
"XMTPs" : {
"XMTP" : [
{
"isXMTPEnabled" : true
}
]
}
}
}
Bulk Check Lens Profiles Have XMTP Enabled
You can bulk check a list of Lens profiles have XMTP enabled or not:
Try Demo
Code
Query Response
Copy query BulkFetchLensProfilesHaveXMTP {
XMTPs(input: { blockchain : ALL, filter : { owner : { _in : [ "hoobastank.lens" , "22776.lens" , "barisadiguzel.lens" ]}}, limit : 100 }) {
XMTP {
isXMTPEnabled
owner {
socials {
dappName
profileName
}
}
}
}
}
Copy {
"data" : {
"XMTPs" : {
"XMTP" : [
{
"isXMTPEnabled" : true ,
"owner" : {
"socials" : [
{
"dappName" : "lens" ,
"profileName" : "hoobastank.lens"
}
]
}
} ,
{
"isXMTPEnabled" : true ,
"owner" : {
"socials" : [
{
"dappName" : "lens" ,
"profileName" : "22776.lens"
}
]
}
} ,
{
"isXMTPEnabled" : true ,
"owner" : {
"socials" : [
{
"dappName" : "lens" ,
"profileName" : "barisadiguzel.lens"
}
]
}
}
]
}
}
}
Get All 0x addresses of Lens profile(s)
You can resolve an array of Lens profile(s) to their 0x addresses:
Try Demo
Code
Query Response
Copy query GetAddressesOfLens {
Socials(
input: { filter : { identity : { _in : [ "nader.lens" , "lens_id:100275" ]}, dappName : { _eq : lens}}, blockchain : ethereum}
) {
Social {
profileName
profileTokenId
profileTokenIdHex
userAssociatedAddresses
}
}
}
Copy {
"data" : {
"Socials" : {
"Social" : [
{
"profileName" : "nader.lens" ,
"profileTokenId" : "10402" ,
"profileTokenIdHex" : "0x028a2" ,
"userAssociatedAddresses" : [
"0xb2ebc9b3a788afb1e942ed65b59e9e49a1ee500d"
]
} ,
{
"profileName" : "vitalik.lens" ,
"profileTokenId" : "100275" ,
"profileTokenIdHex" : "0x0187b3" ,
"userAssociatedAddresses" : [
"0xd8da6bf26964af9d7eed9e03e53415d37aa96045"
]
}
]
}
}
}
Get All Lens Profiles Owned by 0x address
You can resolve any 0x address to their Farcaster accounts:
Try Demo
Code
Query Response
Copy query GetLensOfEthereumAddress {
Socials(
input: { filter : { identity : { _in : [ "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045" ]}, dappName : { _eq : lens}}, blockchain : ethereum}
) {
Social {
profileName
profileTokenId
profileTokenIdHex
userAssociatedAddresses
}
}
}
Copy
"data" : {
"Socials" : {
"Social" : [
{
"profileName" : "vitalik.lens" ,
"profileTokenId" : "100275" ,
"profileTokenIdHex" : "0x0187b3" ,
"userAssociatedAddresses" : [
"0xd8da6bf26964af9d7eed9e03e53415d37aa96045"
]
}
]
}
}
}
Developer Support
If you have any questions or need help regarding checking if Lens profile(s) have XMTP enabled, please join our Airstack's Telegram group.
More Resources