#pallet #error #message #ecosystem #pallet-frame

no-std pallet-farcaster_frame

Farcaster frame pallet to parse messages from farcaster frames

1 unstable release

new 0.1.0 Mar 27, 2025
0.0.5 Mar 1, 2025
0.0.4 Feb 27, 2025

#593 in Magic Beans

Download history 443/week @ 2025-02-24 84/week @ 2025-03-03 16/week @ 2025-03-10 10/week @ 2025-03-17 154/week @ 2025-03-24

325 downloads per month

Custom license

31KB
481 lines

Farcaster Frames Pallet for Polkadot and Substrate Ecosystem

Overview

This repository contains a custom Substrate pallet designed for integrating Farcaster frames into Polkadot/Substrate-based blockchains. The pallet decodes Farcaster messages, allowing developers to incorporate social media interactions into blockchain applications. As a demonstration, the pallet is integrated with a simple NFT minting functionality, enabling on-chain asset creation driven by Farcaster data.

Example implmentation in pallet can be found here at lib.rs.

Features

  • Farcaster Message Encoding & Decoding: Decodes Farcaster frames submitted as raw messages.

Builoding locally

Prerequisites

  • Rust (stable)
  • Substrate (latest recommended version)
  • Cargo

Installation in your pallet

  1. Add to your pallet dependencies
cargo add pallet-farcaster_frame
  1. Import the module
use pallet_farcaster_frame::{parse_message, Error};

Usage

  1. Parse the farcaster message
use pallet_farcaster_frame::{parse_message, Error};
use sp_std::vec;

let bytes = vec![];
let result: Result<Message, Error> = parse_message(bytes);
  1. Encode the farcaster message
use pallet_farcaster_frame::{encode_message, message::Message};
let msg = Message {
...
}
let encoded = encode_message(&msg);
assert!(encoded.is_ok());

Building locally

  1. Clone the repository:

    git clone https://github.com/shritesh99/farcaster-frames-pallet.git
    cd farcaster-frames-pallet
    
  2. Build the project:

    cargo build --release
    
  3. Run tests:

    cargo test
    

Project Structure

  • src/lib.rs: Main library implementation including message processing logic.
  • src/message.rs: Generated protoc message impl from prost.
  • src/tests.rs: Unit tests to verify the functionality of the pallet.
  • Cargo.toml: Configuration file for Rust package management.
  • Additional configuration and documentation files.

Contributing

Contributions are welcome! Feel free to fork the repository, make enhancements, and submit pull requests. For major changes, please open an issue to discuss your ideas first.

License

This project is licensed under the Apache 2.0 License. See the LICENSE file for details.

Contact

For questions, support, or collaboration inquiries, please contact Shritesh at [shritesh.sj@gmail.com].


This README provides a concise overview of the project, outlines its key features and setup instructions, and invites contributions from the community. Enjoy building with Farcaster Frames!

Dependencies

~3–6MB
~111K SLoC