nash-protocol 0.3.0

state management and cryptography for interacting with nash exchange protocol
Documentation
query ListAccountOrders($payload: ListAccountOrdersParams!){
	listAccountOrders(payload: $payload){
    next,
    orders {
      amount {
        amount,
        currency
      },
      amountExecuted {
        amount,
        currency
      },
      amountRemaining {
        amount,
        currency
      },
      avgExecutedPrice {
        amount,
        currencyA,
        currencyB
      },
      buyOrSell,
      placedAt,
      cancelAt,
      cancellationPolicy,
      cancellationReason,
      id,
      clientOrderId,
      limitPrice {
        amount,
        currencyA,
        currencyB
      },
      stopPrice {
        amount,
        currencyA,
        currencyB
      },
      market{
        name,
        id
      },
      status,
      type,
      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
        },
      }
    }
  }
}