Files
gocryptotrader/go.mod
Andrew 506d6011c2 Bitstamp: Websocket API upgrade to v2 (#307)
* Subscribe/Unsubscribe methods added

* migration to v3

* removed orderbook from rest

* WsUpdateOrderbook updated to reflect changes to v2

* Added comment for exported func

* removed logging

* unexported structs that are not used globally moved seed to own function

* unexported functions not used outside package

* Support reconnection message from bitstamp

* moved from range key/val

* using ticket.Spot instead of string

* Seperated out WsReadData & WsHandleData to allow for better testing of websocket messages

* ah should continue to next iteration and not break execution on json decode

* code formatting clean up

* reworded connection message

* return out of method instead of just breaking loop

* formatting changes and replaced SPOT with ticket.Spot type
2019-05-22 15:46:55 +10:00

11 lines
230 B
Modula-2

module github.com/thrasher-/gocryptotrader
go 1.12
require (
github.com/google/go-querystring v1.0.0
github.com/gorilla/mux v1.7.2
github.com/gorilla/websocket v1.4.0
golang.org/x/crypto v0.0.0-20190513172903-22d7a77e9e5f
)