diff --git a/app/build/post-retrieve-blob/client/rust/page.mdx b/app/build/post-retrieve-blob/client/rust/page.mdx index 7e3a6ff982c..8dc135eb771 100644 --- a/app/build/post-retrieve-blob/client/rust/page.mdx +++ b/app/build/post-retrieve-blob/client/rust/page.mdx @@ -1,6 +1,6 @@ # Rust client -The [Lumina Rust client](https://github.com/eigerco/lumina/tree/main/client) provides a high-level API for interacting with a Celestia node over RPC and gRPC. It builds on top of the lower-level `celestia-rpc` and `celestia-grpc` crates and exposes a unified `Client` that supports both **read-only** and **submit** modes. +The [Lumina Rust client](https://github.com/celestiaorg/lumina/tree/main/client) provides a high-level API for interacting with a Celestia node over RPC and gRPC. It builds on top of the lower-level `celestia-rpc` and `celestia-grpc` crates and exposes a unified `Client` that supports both **read-only** and **submit** modes. In read-only mode, the client connects to a node via RPC (and optionally gRPC) to query headers, blobs, and state. diff --git a/app/build/rpc/clients/page.mdx b/app/build/rpc/clients/page.mdx index 54b33bce5cd..3d5e29cadb3 100644 --- a/app/build/rpc/clients/page.mdx +++ b/app/build/rpc/clients/page.mdx @@ -9,14 +9,14 @@ Official Go implementation of the Celestia Node RPC client and Transaction Clien - **Repository**: [celestiaorg/celestia-node @ /api/client](https://github.com/celestiaorg/celestia-node/tree/main/api/client) - **Tutorial**: [Go Client Tutorial](/build/post-retrieve-blob/client/go/) - Learn how to submit and retrieve blobs without running your own node -## Community Clients - ### Rust Client - Community-maintained Rust implementation of the Celestia Node RPC client -- **Repository**: [eigerco/celestia-node-rs](https://github.com/eigerco/celestia-node-rs) +Official Rust implementation of the Celestia Node RPC client (Lumina) +- **Repository**: [celestiaorg/lumina](https://github.com/celestiaorg/lumina) - **Tutorial**: [Rust Client Tutorial](/build/post-retrieve-blob/client/rust/) - Submit and retrieve blobs using the Lumina Rust client +## Community Clients + ### Python Client Community-maintained Python client for the Celestia Node RPC API