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/oracleprices.go

26 lines
497 B
Go
Raw Normal View History

2021-09-13 03:25:47 +00:00
package heliumapi
import (
"encoding/json"
"fmt"
)
func GetCurrentOraclePrice() (*CurrentOraclePrice, error) {
2021-09-26 04:08:10 +00:00
path := "/v1/oracle/prices/current"
2021-09-13 03:25:47 +00:00
// query the api
respBody, err := getHeliumApi(path, nil)
if err != nil {
return nil, err
}
// unmarshal the response
respobject := CurrentOraclePriceResp{}
2021-09-13 03:25:47 +00:00
err = json.Unmarshal(respBody, &respobject)
if err != nil {
2021-09-26 04:08:10 +00:00
return nil, fmt.Errorf("failed to unmarshal response from %v: %v", path, err)
2021-09-13 03:25:47 +00:00
}
return &respobject.Data, nil
2021-09-13 03:25:47 +00:00
}