4 个稳定版本
新 1.2.0 | 2024 年 8 月 27 日 |
---|---|
1.1.3 | 2024 年 8 月 8 日 |
1.0.0 | 2024 年 8 月 8 日 |
#3 在 #maestro
389 每月下载量
用于 whisky
63KB
1.5K SLoC
Maestro Dapp 平台的 Rust SDK
入门指南
先决条件
安装
Crates 参考
# TODO
用法
[dependencies]
maestro = { git = "https://github.com/maestro-org/rust-sdk.git" }
use maestro::Maestro;
let maestro_client = Maestro::new("<PROJECT_API_KEY>", "<NETWORK>")
- 要生成 API 密钥,请在此处创建免费账户!这里
- 网络选项:
mainnet
、preprod
、preview
示例
use maestro::Maestro;
#[tokio::main]
async fn main() {
let maestro_client = Maestro::new(
String::from("<PROJECT_API_KEY>"),
String::from("<NETWORK>"),
);
match maestro_client.block_info(9005859).await {
Ok(block_info) => println!("{}", block_info.data.absolute_slot),
Err(e) => eprint!("Failed to retrieve block info {}", e),
}
}
文档
贡献
依赖项
~5–17MB
~259K SLoC