2个版本

0.1.2 2019年12月16日
0.1.1 2019年12月13日

#52 in #json-rpc-client

41 每月下载量
用于 pegtx

Apache-2.0

19KB
285

Pegnetd客户端

Crates.io Released API docs Discord

使用方法

在 cargo.toml 中

pegnetd = "0.1.2"

快速入门

#[tokio::main]
async fn main() -> Result<(), reqwest::Error> {
  let api = Pegnetd::open_node();
  let response = sync_status(&api).await;
  assert!(response.result.syncheight > 0);
  Ok(())
}

配置

// Local Node Configuration
// https://127.0.0.1:8070/v1
let api = Pegnetd::new();

// Public Node Configuration
// https://api.pegnetd.com
let api = Pegnetd::open_node();

// Custom Node Configuration
let api = Pegnetd::custom_node("http://192.168.1.42:8070/v1");

文档

贡献

欢迎PR。请Fork库并提交到dev分支。通过贡献此库,您同意它以Apache 2.0许可证授权

依赖项

~6–10MB
~219K SLoC