package heliumapi import ( "encoding/json" "fmt" ) 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{} err = json.Unmarshal(respBody, &respobject) if err != nil { return nil, fmt.Errorf("failed to unmarshal response from %v: %v", path, err) } return &respobject.Data, nil }