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::OrderbookRequest;
use crate::graphql;
use crate::graphql::get_orderbook;
use graphql_client::GraphQLQuery;

impl OrderbookRequest {
    pub fn make_query(&self) -> graphql_client::QueryBody<get_orderbook::Variables> {
        graphql::GetOrderbook::build_query(get_orderbook::Variables {
            market_name: self.market.to_string()
        })
    }
}