nash-protocol 0.3.0

state management and cryptography for interacting with nash exchange protocol
Documentation
query ListAccountTrades($payload: ListAccountTradesParams!){
	listAccountTrades(payload: $payload){
    next,
    trades {
      id,
      accountSide,
      makerOrderId,
      takerOrderId,
      makerReceived {
        amount,
        currency
      },
      takerReceived {
        amount,
        currency
      }
      amount {
        amount,
        currency
      },
      executedAt,
      makerFee {
        amount,
        currency
      },
      takerFee {
        amount,
        currency
      },
      market {
        name
      },
      direction,
      limitPrice {
        amount
        currencyA,
        currencyB
      },
    }
  }
}