fireblocks-sdk 2026.3.28

Rust implementation of the Fireblocks SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod setup;
use {
    fireblocks_sdk::ASSET_BTC_TEST,
    setup::{Config, config},
};

#[rstest::rstest]
#[tokio::test]
#[allow(clippy::unwrap_used)]
async fn test_supported_assets(config: Config) -> anyhow::Result<()> {
    let c = config.client();
    let assets = c.supported_assets().await?;
    assert!(!assets.is_empty());
    let found = assets.iter().find(|a| a.id == ASSET_BTC_TEST.to_string());
    assert!(found.is_some());
    Ok(())
}