nash-protocol 0.3.0

state management and cryptography for interacting with nash exchange protocol
Documentation
query GetOrderbook($marketName: MarketName!){
  getOrderBook(marketName: $marketName){
    asks{
      amount{
        amount, currency
      },
      price {
        amount
      }
    },
    bids{
      amount{
        amount, currency
      },
      price {
        amount
      }
    },
    lastUpdateId,
    updateId,
    market{
      name
    }
  }
}