nado-sdk 0.3.5

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
17
18
use serde::{Deserialize, Serialize};

use ethers::types::H160;

#[derive(Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Deployment {
    pub node_url: String,
    pub quote: H160,
    pub clearinghouse: H160,
    pub endpoint: H160,
    pub spot_engine: H160,
    pub perp_engine: H160,
    pub querier: H160,
    pub offchain_exchange: H160,
    pub verifier: H160,
    pub contract_owner: H160,
}