go-bittrex is an implementation of the Bittrex API (public and private) in Golang.
This version implement V1.1 Bittrex API and the new HMAC authentification.
import "github.com/toorop/go-bittrex"
In order to use the client with go's default http client settings you can do:
package main
import (
"fmt"
"github.com/toorop/go-bittrex"
)
const (
API_KEY = "YOUR_API_KEY"
API_SECRET = "YOUR_API_SECRET"
)
func main() {
// Bittrex client
bittrex := bittrex.New(API_KEY, API_SECRET)
// Get markets
markets, err := bittrex.GetMarkets()
fmt.Println(err, markets)
}
In order to use custom settings for the http client do:
package main
import (
"fmt"
"net/http"
"time"
"github.com/toorop/go-bittrex"
)
const (
API_KEY = "YOUR_API_KEY"
API_SECRET = "YOUR_API_SECRET"
)
func main() {
httpClient := &http.Client{
Timeout: time.Second * 10,
}
// Bittrex client
bc := bittrex.NewWithCustomHttpClient(conf.Bittrex.ApiKey, conf.Bittrex.ApiSecret, httpClient)
// Get markets
markets, err := bittrex.GetMarkets()
fmt.Println(err, markets)
}