Merge branch 'master' into engine

This commit is contained in:
Adrian Gallagher
2019-06-21 18:10:55 +10:00
87 changed files with 5669 additions and 992 deletions

View File

@@ -8,6 +8,12 @@ import (
"github.com/thrasher-/gocryptotrader/exchanges/request"
)
// Endpoint authentication types
const (
RestAuthentication uint8 = 0
WebsocketAuthentication uint8 = 1
)
// FeeType custom type for calculating fees based on method
type FeeType uint8
@@ -261,8 +267,9 @@ type FeaturesSupported struct {
// API stores the exchange API settings
type API struct {
AuthenticatedSupport bool
PEMKeySupport bool
AuthenticatedSupport bool
AuthenticatedWebsocketSupport bool
PEMKeySupport bool
Endpoints struct {
URL string