Crates.io | lumina-node |
lib.rs | lumina-node |
version | |
source | src |
created_at | 2024-01-12 16:30:00.870243 |
updated_at | 2024-12-02 12:15:56.724415 |
description | Celestia data availability node implementation in Rust |
homepage | https://www.eiger.co |
repository | https://github.com/eigerco/lumina |
max_upload_size | |
id | 1097852 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
A crate to configure, run and interact with Celestia's data availability nodes.
use std::sync::Arc;
use libp2p::{identity, multiaddr::Protocol, Multiaddr};
use lumina_node::blockstore::RedbBlockstore;
use lumina_node::network::{
canonical_network_bootnodes, network_id, Network,
};
use lumina_node::node::{Node, NodeConfig};
use lumina_node::store::RedbStore;
use tokio::task::spawn_blocking;
#[tokio::main]
async fn main() {
let p2p_local_keypair = identity::Keypair::generate_ed25519();
let network = Network::Mainnet;
let network_id = network_id(network).to_owned();
let p2p_bootnodes = canonical_network_bootnodes(network).collect();
let db = spawn_blocking(|| redb::Database::create("path/to/db"))
.await
.expect("Failed to join")
.expect("Failed to open the database");
let db = Arc::new(db);
let store = RedbStore::new(db.clone())
.await
.expect("Failed to create a store");
let blockstore = RedbBlockstore::new(db);
let node = Node::new(NodeConfig {
network_id,
p2p_local_keypair,
p2p_bootnodes,
p2p_listen_on: vec!["/ip4/0.0.0.0/tcp/0".parse().unwrap()],
sync_batch_size: 512,
custom_syncing_window: None,
blockstore,
store,
})
.await
.expect("Failed to start node");
node.wait_connected().await.expect("Failed to connect");
let header = node
.request_header_by_height(15)
.await
.expect("Height not found");
}