getBlockHeadersByStart

Retrieves blocks from SEQ starting at the Start timestamp given in Args and ending when the timestamp is greater than End given in Args.

type GetBlockHeadersByStartArgs struct {
    Start int64 `json:"start"`
    End   int64 `json:"end"`
}
Response: BlockHeadersResponse 

Last updated