1
0
Fork 0
This repository has been archived on 2024-07-04. You can view files and clone it, but cannot push or open issues or pull requests.
helium-blockchain-exporter/heliumapi/stats.go

26 lines
544 B
Go

package heliumapi
import (
"encoding/json"
"fmt"
)
// query https://docs.helium.com/api/blockchain/stats#blockchain-stats
func GetBlockchainStats() (*BlockchainStats, error) {
path := "/v1/stats"
// query the api
respBody, err := getHeliumApi(path, nil)
if err != nil {
return nil, err
}
// unmarshal the response
respobject := BlockchainStatsResp{}
if err := json.Unmarshal(respBody, &respobject); err != nil {
return nil, fmt.Errorf("failed to unmarshal response from %v: %v", path, err)
}
return &respobject.Data, nil
}