An unofficial PHP-MPOS API Client for go.
go get -u github.com/thelolagemann/go-mpos
import "github.com/thelolagemann/go-mpos"
// create a new pool instance
pool := NewMiningPoolHub("API_KEY", "BASE_URL")
// get pool info
info, err := pool.PoolInfo()
if err != nil {
// handle err
}
fmt.Printf("Pool is mining %v, with a %v%% fee\n", info.Coinname, info.Fees)