4 个版本

0.2.1 2023年11月28日
0.2.0 2023年10月29日
0.1.1 2023年10月14日
0.1.0 2023年10月14日

#50 in #cli-client


quilclient 中使用

MIT/Apache

6.5MB
196K SLoC

Go 196K SLoC // 0.1% comments Rust 490 SLoC // 0.0% comments

Quilibrium 客户端库

安装

cargo添加 quilibrium

示例用法

// Import the client
use quilibrium::NodeClient;

// Connect to your node
let mut client = NodeClient::new("http://1.2.3.4:5678".parse()?).await?;
// Fetch the peers from the node's peer store
let network_info = client.network_info().await?;

文档

更新日志


lib.rs:

Quilibrium 客户端库。

示例用法

// Import the client
use quilibrium::node::NodeClient;

// Connect to your node
let mut client = NodeClient::new("http://1.2.3.4:5678".parse()?).await?;
// Fetch the peers from the node's peer store
let network_info = client.network_info().await?;

依赖

~8–11MB
~205K SLoC