Guides đ Farcasterđ Resolve Farcaster UsersLearn how to resolve Farcaster(s) fname/username/FID to 0x address, ENS, Lens, and XMTP and Reverse Resolution.
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 resolve a Farcaster user name or ID to other web3 identities 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.
Get All 0x addresses of Farcaster user(s)
You can resolve an array of Farcaster user(s) to their 0x addresses:
Try Demo
Code
Query Response
Copy query GetAddressesOfFarcasters {
Socials(
input: { filter : { identity : { _in : [ "fc_fname:dwr.eth" , "fc_fid:1" ]}}, blockchain : ethereum}
) {
Social {
userAssociatedAddresses
}
}
}
Copy {
"data" : {
"Socials" : {
"Social" : [
{
"userAssociatedAddresses" : [
"0x8773442740c17c9d0f0b87022c722f9a136206ed" ,
"0x86924c37a93734e8611eb081238928a9d18a63c0"
]
} ,
{
"userAssociatedAddresses" : [
"0xd7029bdea1c17493893aafe29aad69ef892b8ff2"
]
} ,
{
"userAssociatedAddresses" : [
"0xb877f7bb52d28f06e60f557c00a56225124b357f" ,
"0xa14b4c95b5247199d74c5578531b4887ca5e4909" ,
"0xd7029bdea1c17493893aafe29aad69ef892b8ff2" ,
"0x74232bf61e994655592747e20bdf6fa9b9476f79"
]
}
]
}
}
}
Get all ENS domains owned by Farcaster user(s)
You can resolve an array of Farcaster user(s) to their ENS domains:
Try Demo
Code
Query Response
Copy query GetENSOfFarcasters {
Domains(input: { filter : { owner : { _in : [ "fc_fname:dwr.eth" , "fc_fid:1" ]}}, blockchain : ethereum}) {
Domain {
name
}
}
}
Copy {
"data" : {
"Domains" : {
"Domain" : [
{
"name" : "noun124.eth"
} ,
{
"name" : "dwr.mirror.xyz"
} ,
{
"name" : "warpcast.eth"
} ,
{
"name" : "danromero.eth"
}
]
}
}
}
Get All Web3 Social Accounts (Farcaster, Lens) owned by 0x address or ENS
You can resolve any 0x address or ENS to their web3 socials, which comprise of Farcaster and Lens:
Try Demo
Code
Query Response
Copy query GetWeb3SocialsOfFarcasters {
Socials(input: { filter : { identity : { _in : [ "dwr.eth" , "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045" ]}}, blockchain : ethereum}) {
Social {
dappName
profileName
}
}
}
Copy {
"data" : {
"Socials" : {
"Social" : [
{
"dappName" : "farcaster" ,
"profileName" : "vbuterin"
} ,
{
"dappName" : "lens" ,
"profileName" : "vitalik.lens"
} ,
{
"dappName" : "lens" ,
"profileName" : "danromero.lens"
} ,
{
"dappName" : "farcaster" ,
"profileName" : "dwr.eth"
}
]
}
}
}
Get Lens Profile of Farcaster user(s)
You can resolve an array of Farcaster user(s) to their Lens profile, if any:
Try Demo
Code
Query Response
Copy query GetLensOfFarcasters {
Socials(
input: { filter : { identity : { _in : [ "fc_fname:dwr.eth" , "fc_fid:5650" ]}, dappName : { _eq : lens}}, blockchain : ethereum}
) {
Social {
dappName
profileName
}
}
}
Copy {
"data" : {
"Socials" : {
"Social" : [
{
"dappName" : "lens" ,
"profileName" : "vitalik.lens"
} ,
{
"dappName" : "lens" ,
"profileName" : "danromero.lens"
}
]
}
}
}
Check If XMTP is Enabled for Farcaster user(s)
You can check if an array of Farcaster user(s) have their XMTP enabled or not:
Try Demo
Code
Query Response
Copy query GetXMTPOfFarcasters {
XMTPs(
input: { blockchain : ALL, filter : { owner : { _in : [ "fc_fname:varunsrin.eth" , "fc_fid:5650" ]}}}
) {
XMTP {
isXMTPEnabled
owner {
socials(input: { filter : { dappName : { _eq : farcaster}}}) {
profileName
}
}
}
}
}
Copy {
"data" : {
"XMTPs" : {
"XMTP" : [
{
"isXMTPEnabled" : true ,
"owner" : {
"socials" : [
{
"profileName" : "vbuterin"
}
]
}
} ,
{
"isXMTPEnabled" : true ,
"owner" : {
"socials" : [
{
"profileName" : "varunsrin.eth"
}
]
}
}
]
}
}
}
Developer Support
If you have any questions or need help regarding resolving identities for Farcaster user(s), please join our Airstack's Telegram group.
More Resources