-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: working farcaster client with neynar #570
Changes from 1 commit
469e266
b86ef2d
24f9876
1e5c7e9
023545e
902d37a
35477bb
40b396a
4377bc2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,7 @@ | |
"@ai16z/client-auto": "workspace:*", | ||
"@ai16z/client-direct": "workspace:*", | ||
"@ai16z/client-discord": "workspace:*", | ||
"@ai16z/client-farcaster": "workspace:*", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @sayangel Ensure that you review and update the documentation to reflect this new dependency. |
||
"@ai16z/client-telegram": "workspace:*", | ||
"@ai16z/client-twitter": "workspace:*", | ||
"@ai16z/eliza": "workspace:*", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"name": "@ai16z/client-farcaster", | ||
"version": "0.0.1", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @sayangel Review the new package’s version ( |
||
"main": "dist/index.js", | ||
"type": "module", | ||
"types": "dist/index.d.ts", | ||
"dependencies": { | ||
"@ai16z/eliza": "workspace:*", | ||
"@neynar/nodejs-sdk": "^2.0.3", | ||
"viem": "^2.21.47" | ||
}, | ||
"devDependencies": { | ||
"tsup": "^8.3.5" | ||
}, | ||
"scripts": { | ||
"build": "tsup --format esm --dts", | ||
"dev": "tsup --watch" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @sayangel add both the |
||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sayangel Add comments for the newly added environment variables (
FARCASTER_FID
,FARCASTER_NEYNAR_SIGNER_UUID
,FARCASTER_NEYNAR_API_KEY
) to explain what each variable is used for and any format restrictions. This will help developers understand how to set up these configurations correctly.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
btw does neynar signer uuid is the client id?