Goal / What to Verify
Prove you are followed by top Farcaster accounts.
Or extend to proving a social graph score, based on your following. (Similar to Kaito etc)
How to Implement
Log into Farcaster, check username/FID.
Go to profile, check followers.
Verify followers or calculate score.
Network Request
Step 1:
{
"result": {
"state": {
"user": {
"fid": 12345,
"username": "exampleuser"
}
}
}
}
Step 2:
{
"result": {
"users": [
{
"username": "vitalik.eth",
"viewerContext": {
"followedBy": true
}
}
]
}
}
Notes
Checking if being followed by array of accounts is implemented in this PR: BringID/browser-extension#53
Goal / What to Verify
Prove you are followed by top Farcaster accounts.
Or extend to proving a social graph score, based on your following. (Similar to Kaito etc)
How to Implement
Log into Farcaster, check username/FID.
Go to profile, check followers.
Verify followers or calculate score.
Network Request
Step 1:
{ "result": { "state": { "user": { "fid": 12345, "username": "exampleuser" } } } }Step 2:
Visit URL{ "result": { "users": [ { "username": "vitalik.eth", "viewerContext": { "followedBy": true } } ] } }Notes
Checking if being followed by array of accounts is implemented in this PR: BringID/browser-extension#53