wavesplatform 0.3.2

Library to work with Waves blockchain (https://waves.tech/)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use wavesplatform::node::{Node, MAINNET_URL};

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let node = Node::from_url(MAINNET_URL);

    // Tether USD token
    let result = node
        .get_assets_details("34N9YcEETLWn93qYQ64EsP1x89tSruJU44RrEMSXXEPJ")
        .await?;

    println!("{:?}", result);

    Ok(())
}