Crates.io | celestia-client |
lib.rs | celestia-client |
version | 0.2.0 |
created_at | 2025-08-14 09:52:32.432042+00 |
updated_at | 2025-09-25 10:42:22.54906+00 |
description | Celestia client combining RPC and gRPC functionality. |
homepage | https://www.eiger.co |
repository | https://github.com/eigerco/lumina |
max_upload_size | |
id | 1794682 |
size | 162,294 |
A high-level client for interacting with a Celestia node.
It combines the functionality of celestia-rpc
and celestia-grpc
crates.
There are two modes: read-only mode and submit mode. Read-only mode requires RPC and optionally gRPC endpoint, while submit mode requires both, plus a signer.
Read-only mode:
use celestia_client::{Client, Result};
#[tokio::main]
async fn main() -> Result<()> {
let client = Client::builder()
.rpc_url("ws://localhost:26658")
.build()
.await?;
let header = client.header().head().await?;
dbg!(header);
Ok(())
}
Submit mode:
use std::env;
use celestia_client::{Client, Result};
use celestia_client::tx::TxConfig;
#[tokio::main]
async fn main() -> Result<()> {
let client = Client::builder()
.rpc_url("ws://localhost:26658")
.grpc_url("http://localhost:9090")
.private_key_hex("393fdb5def075819de55756b45c9e2c8531a8c78dd6eede483d3440e9457d839")
.build()
.await?;
let to_address = "celestia169s50psyj2f4la9a2235329xz7rk6c53zhw9mm".parse().unwrap();
let tx_info = client.state().transfer(&to_address, 12345, TxConfig::default()).await?;
dbg!(tx_info);
Ok(())
}
Submitting and retrieving a blob:
use std::env;
use celestia_client::{Client, Result};
use celestia_client::tx::TxConfig;
use celestia_client::types::nmt::Namespace;
use celestia_client::types::{AppVersion, Blob};
#[tokio::main]
async fn main() -> Result<()> {
let client = Client::builder()
.rpc_url("ws://localhost:26658")
.grpc_url("http://localhost:9090")
.private_key_hex("393fdb5def075819de55756b45c9e2c8531a8c78dd6eede483d3440e9457d839")
.build()
.await?;
// Create the blob
let ns = Namespace::new_v0(b"mydata")?;
let blob = Blob::new(
ns,
b"some data to store".to_vec(),
Some(client.address()?),
AppVersion::V5,
)?;
// This is the hash of the blob which is needed later on for retrieving
// it form chain.
let commitment = blob.commitment.clone();
// Submit the blob
let tx_info = client.blob().submit(&[blob], TxConfig::default()).await?;
// Retrieve the blob. Blob is validated within the `get` method, so
// we don't need to do anything else.
let received_blob = client
.blob()
.get(tx_info.height.value(), ns, commitment)
.await?;
println!("Data: {:?}", str::from_utf8(&received_blob.data).unwrap());
Ok(())
}