#cosmos #substreams #firehose #thegraph #pinax #api-bindings

substreams-cosmos

Substreams development kit for Cosmos chains, contains Firehose Block model and helpers

4 releases

0.2.1 Oct 29, 2024
0.2.0 Oct 29, 2024
0.1.1 Sep 23, 2024
0.1.0 Sep 23, 2024

#222 in WebAssembly

Download history 248/week @ 2024-09-18 113/week @ 2024-09-25 38/week @ 2024-10-02 1/week @ 2024-10-09 119/week @ 2024-10-23 138/week @ 2024-10-30

258 downloads per month

MIT license

22KB
289 lines

Substreams for Cosmos

github crates.io docs.rs GitHub Workflow Status

This library contains the generated Rust protobuf bindings for Cosmos Block as well as helper methods to extract and parse block data.

📖 Documentation

https://docs.rs/substreams-cosmos

Further resources

Install

cargo add substreams-cosmos

Usage

Refer to Docs.rs for helper methods on Block that extract action and transaction iterators from the Cosmos block.

Cargo.toml

[dependencies]
substreams = "0.5"
substreams-cosmos = "0.1"

src/lib.rs

use substreams::errors::Error;
use substreams_cosmos::pb::{Block, Events};

#[substreams::handlers::map]
fn map_events(block: Block) -> Result<Events, Error> {
    let mut events = vec![];

    for tx in block.tx_results {
        for event in tx.events {
            events.push(event);
        }
    }
    Ok(Events { events })
}

Release

Dependencies

~4.5–7.5MB
~130K SLoC