(clBlock string)
| 110 | } |
| 111 | |
| 112 | func (c *BeaconClient) QueryUrlForV2BeaconBlock(clBlock string) (string, error) { |
| 113 | return url.JoinPath(c.beaconURL, fmt.Sprintf("/eth/v2/beacon/blocks/%s", clBlock)) |
| 114 | } |
| 115 | |
| 116 | func (c *BeaconClient) QueryUrlForV1BeaconBlobs(timestamp uint64, hashes []common.Hash) (string, error) { |
| 117 | slot := c.Timestamp2Slot(timestamp) |
no outgoing calls
no test coverage detected