Files
gocryptotrader/exchanges/okcoin/okcoin.go
Adrian Gallagher f5914e8c10 Engine changes
2019-05-22 17:06:38 +10:00

21 lines
468 B
Go

package okcoin
import (
"github.com/thrasher-/gocryptotrader/exchanges/okgroup"
)
const (
okCoinAuthRate = 600
okCoinUnauthRate = 600
okCoinAPIPath = "api/"
okCoinAPIURL = "https://www.okcoin.com/" + okCoinAPIPath
okCoinAPIVersion = "/v3/"
okCoinExchangeName = "OKCOIN International"
okCoinWebsocketURL = "wss://real.okcoin.com:10442/ws/v3"
)
// OKCoin bases all methods off okgroup implementation
type OKCoin struct {
okgroup.OKGroup
}