nash-protocol 0.3.0

state management and cryptography for interacting with nash exchange protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use super::types::TickerRequest;
use crate::graphql;
use crate::graphql::get_ticker;
use graphql_client::GraphQLQuery;

impl TickerRequest {
    pub fn make_query(&self) -> graphql_client::QueryBody<get_ticker::Variables> {
        graphql::GetTicker::build_query(get_ticker::Variables {
            market_name: self.market.clone(),
        })
    }
}