Skip to main content

Python bindings for Farcaster

Project description

farcaster-py

Python bindings for Farcaster.

The bindings are based on the protocol implementation by Hubble which can be found at @farcaster/hub-monorepo.

farcaster-py makes use of the gRPC interface exposed by farcaster hubs.

Quick start

Until there is a proper pipy package, a quick and easy way to play around:

  1. pip install farcaster-py
  2. Create .env with the following entries:
FARCASTER_HUB="farcaster_hub:grpc_port"

OP_ETH_PROVIDER="OP provider endpoint"

APP_FID="application fid"
APP_PRIVATE_KEY="application private key"

USER_FID="User fid"
USER_PRIVATE_KEY="User private key" 
APP_SIGNER_KEY="You have to create a signer first. Use examples/approve_new_signer.py." 
  1. Download the examples found in examples/ and try python ./get_user_casts.py

Internals

I have tried to both follow Farcaster's conventions and naming, but also provide a pythonic API that make sense to use without requiring deep knowledge of the underlying protocols.

HubServce

The HubService class uses Hubble's gRPC interface to interact with hubs. Most of the gRPC described in the protocol specification is avalable through farcaster-py.

Example:

from farcaster.HubService import HubService
hub = HubService(hub_address, use_async=False)
casts = hub.GetCastsByFid(fid=280)
for cast in casts.messages:
	print(cast)
  • Secure connections have not been implemented.
  • 99% of the gRPC API is read-only: You get data from the hubs. The only (I think) call that allows you to change the global state is HubService.SubmitMessage(Message) -> Message. (see next section)

Message

The Message.MessageBuilder class offers three types of methods:

  • The initializer that creates a new MessageBuilder with specific characteristics (hash scheme, signature scheme and the user's private key)
  • Methods like MessageBuilder.link.add(...) and Message.link.remove(...) that return a MessageData protobuf.
  • MessageBuilder.message(self, data: MessageData) that gets MessageData and hashes, signs, etc and returns a Message protobuf object ready to be used by HubService.SubmitMessage(Message)

Example:

from farcaster.HubService import HubService
from farcaster.fcproto.message_pb2 import SignatureScheme, HashScheme, Embed
from farcaster import Message

hub_address	= '....'
app_signer = '....'
user_fid = '....'

hub = HubService(hub_address, use_async=False)
message_builder = Message.MessageBuilder(
	HashScheme.HASH_SCHEME_BLAKE3, 
	SignatureScheme.SIGNATURE_SCHEME_ED25519, 
	bytes.fromhex(app_signer[2:])
)
data = message_builder.cast.add(
	fid = user_fid, 
	text = "Hello, world!" 
	)
msg  = message_builder.message(data)
ret  = hub.SubmitMessage(msg)

Signer

The Signer class provides a simple interface to creating signers.

To create a signer, you need:

  1. Fid and corresponding private key of the user that will approve the signer.
  2. The fid and private key of the application that will create and use the signer.

Once you have this data, you create a new Signer, and use approve_signer() to submit the on-chain tx:

# snippet from examples/approve_new_signer.py
s = Signer( op_eth_provider, user_fid, user_key, app_fid, app_key )
tx_hash = s.approve_signer()
signer_private_key = s.key
signer_public_key = s.signer_pub()

Updating protobuf shemas

If you are installing from source, you use generate_proto.sh <HUBBLE VERSION> to generate the corresponding protbuffer Python code.

./generate_proto.sh 1.5.6                                                                                                                                                                                  git:main*
x schemas/
x schemas/gossip.proto
x schemas/hub_event.proto
x schemas/hub_state.proto
x schemas/job.proto
x schemas/message.proto
x schemas/onchain_event.proto
x schemas/request_response.proto
x schemas/rpc.proto
x schemas/sync_trie.proto
x schemas/username_proof.proto

Protobuf schemas parsed.

Versioning

Eventually, farcaster-py will follow the version numbers of farcaster protocol buffers (when/if they become a separate package).

Until then, I'll keep version numbers low (0.0.x) and update them manually.

License

farcaster-py is distributed under the MIT License.

Credits

This package was created and is maintained by @vrypan.eth.

An older repository, called hub_py has been a valuable source while building the initial version of farcaster-py.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

farcaster_py-0.1.5.tar.gz (46.6 kB view details)

Uploaded Source

Built Distribution

farcaster_py-0.1.5-py3-none-any.whl (59.0 kB view details)

Uploaded Python 3

File details

Details for the file farcaster_py-0.1.5.tar.gz.

File metadata

  • Download URL: farcaster_py-0.1.5.tar.gz
  • Upload date:
  • Size: 46.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-httpx/0.27.2

File hashes

Hashes for farcaster_py-0.1.5.tar.gz
Algorithm Hash digest
SHA256 835227a6d9eab4ada7bdc351998d0c5833b3b5097a541f07c7ffa5a08c27ada1
MD5 792ab43f7a316aa3e77da4a16a86ce75
BLAKE2b-256 0479c94da27c7b091e98459c7e3bdbef102a33a0af4a9c0739ce43e25c2c07b0

See more details on using hashes here.

File details

Details for the file farcaster_py-0.1.5-py3-none-any.whl.

File metadata

File hashes

Hashes for farcaster_py-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 af1c41a35a2c66b32f8e217e2f6fa1ee114134b194b9c0d2602d944d0d6e0d99
MD5 5087f0b191096478eb8fd9ab38ed97e0
BLAKE2b-256 e3155abc446f32f24d48d81045f1b0c8d61f7c5de454729e999140c2bd3360cd

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page