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
13
14
use graphql_client::GraphQLQuery;
use crate::graphql;
use crate::graphql::list_trades;
use super::types::ListTradesRequest;

impl ListTradesRequest {
    pub fn make_query(&self) -> graphql_client::QueryBody<list_trades::Variables> {
        graphql::ListTrades::build_query(list_trades::Variables {
            market_name: self.market.clone(),
            limit: self.limit,
            before: self.before.clone(),
        })
    }
}