nado-sdk 0.3.4

Official Rust SDK for the Nado Protocol API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod execute;
pub mod indexer;
pub mod query;

#[doc(hidden)]
#[macro_export]
macro_rules! print_json {
    ($data:expr) => {{
        let label = stringify!($data);
        println!(
            "{}: {}",
            label,
            serde_json::to_string_pretty(&$data).unwrap()
        );
    }};
}