mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-06-01 15:10:44 +00:00
21 lines
468 B
Go
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
|
|
}
|