uni-farcaster-sdk
TypeScript icon, indicating that this package has built-in type declarations

0.0.25 • Public • Published

For more comprehensive documentation, please visit the full docs - https://uni-farcaster-sdk.vercel.app/

UniFarcaster SDK

This is an SDK that combines neynar, airstack to provide a single API without needing to know the underlying apis of both.

Installation

npm install uni-farcaster-sdk

Usage

import uniFarcasterSdk from 'uni-farcaster-sdk'
//Initialization

//with no configuration
const sdkInstance = new uniFarcasterSdk();

//with custom Neynar api key
const sdkInstance = new uniFarcasterSdk({
	neynarApiKey: 'your-neynar-api-key',
	activeService: 'neynar'//Optional. It's implied from the api key you provide
})

// with custom Airstack api key
const sdkInstance = new uniFarcasterSdk({
	airstackApiKey: 'your-airstack-api-key',
	activeService: 'airstack' //Optional. It's implied from the api key you provide
})

// Invalid active service is ignored
const sdkInstance = new uniFarcasterSdk({
	airstackApiKey: 'your-airstack-api-key',
	activeService: 'neynar' //Automatically set to airstack since only airstack api key is provided
})

//Both services. Useful for retries and custom queries
const sdkInstance = new uniFarcasterSdk({
  neynarApiKey: 'your-neynar-api-key',
  airstackApiKey: 'your-airstack-api-key',
  //You should specify if you prefer neynar or airstack else it randomly choses one of them
  activeService: 'airstack',
})

//Debug Mode
const sdkInstance = new uniFarcasterSdk({
	...otherConfigOptions
  debug: true, //Logs every query on the console with the active service used for it,
  logLevel: "info"| "warn"| "error"| "success"
  //Optional and only used when debug is true.
  // By default, all query is logged but setting the log level will only log queries with the specified level
})

//Retries
const sdkInstance = new uniFarcasterSdk({
  ...otherConfigOptions
  retries: 3, //Number of retries to do before returning the error
  retryStrategy: "normal" | "switch" | "switchTemp" //Optional.
)}
// See https://uni-farcaster-sdk.vercel.app/configuration#retries for more information about retries and retryStrategy

//Get Active Service
sdkInstance.getActiveService() //airstack

//Set Active Service
sdkInstance.setActiveService('neynar')
sdkInstance.getActiveService() //neynar

//Get User By Fid
const userFid = [3]
const viewerFid = 4
await sdkInstance.getUsersByFid(userFid, viewerFid)
//Viewer Fid is optional and defaults to 213144

//Get User By Username
const userName = 'ds8'
await sdkInstance.getUserByUsername(userName)
//Viewer Fid is optional and defaults to 213144

//Get Cast By Url
await sdkInstance.getCastByUrl(castUrl, viewerFid)

//Get Cast By Hash
await sdkInstance.getCastByHash(castHash, viewerFid)

//Custom Queries
await sdkInstance.neynar(endpoint, params)
await sdkInstance.airstack(graphQlQuery, variables)

[!IMPORTANT] Getting by username doesn't return viewer context when using airstack instance so use getUserByFid when you always need viewerContext.

Return Types

type User = {
  fid: number;
  ethAddresses: string[];
  solAddresses: string[];
  username: string;
  displayName: string;
  bio: string;
  pfpUrl: string;
  followerCount: number;
  followingCount: number;
  powerBadge?: boolean;
  viewerContext: {
    following: boolean;
    followedBy: boolean;
  };
};

type Cast = {
  author: UserWithOptionalViewerContext;
  userReactions: {
    likes: number;
    recasts: number;
  };
  viewerContext: {
    liked: boolean;
    recasted: boolean;
  };
  text: string;
  embeds: unknown[];
  channel: string | null;
};

Error Handling

By default, invalid configurations will throw an error. All queries don't throw errors but return an object

//Not Errors
{data: PossibleReturnedValue , error: null}
or
//With Error
{ data: null, error: {message: string}}

Check if error is not null to knowif there was an error and handle it accordingly.

TODO

  • Add debug mode to log all queries ✅
  • Add query caching to avoid hitting the service for the same query ✅
  • Add airstack custom support. Where you can pass in custom airstack graphql queries if you need more than the sdk offers ✅
  • Add neynar custom support where you can pass custom neynar rest endpoints if you need more than the sdk offers ✅
  • Add an optional retry config to all queries and the option to switch service if there's an error i.e If the current active service is airstack and the query fails, it will try to use neynar` ✅
  • Fetch multiple users in a single query ✅

Package Sidebar

Install

npm i uni-farcaster-sdk

Weekly Downloads

69

Version

0.0.25

License

MIT

Unpacked Size

124 kB

Total Files

8

Last publish

Collaborators

  • complexlity