go-poloniex is an implementation of the Poloniex API (public and private) in Golang.
Based off of https://github.com/toorop/go-bittrex/
This library is more of a framework for some bots I use so it is expected that a lot of things don't work but pull requests are accepted.
import "github.com/jyap808/go-poloniex"
package main
import (
"fmt"
"github.com/jyap808/go-poloniex"
)
const (
API_KEY = "YOUR_API_KEY"
API_SECRET = "YOUR_API_SECRET"
)
func main() {
// Poloniex client
poloniex := poloniex.New(API_KEY, API_SECRET)
// Get tickers
tickers, err := poloniex.GetTickers()
fmt.Println(err, tickers)
}