/rounds
Returns a list of all rounds available on blockchain
Parameters
fromOPTIONAL(number)- Number of items to skip for the result setsizeOPTIONAL(number)- Number of items to retrievevalidatorOPTIONAL(string)- Filter by validatorconditionOPTIONAL(string)-Filter by conditionshardOPTIONAL(number)- Filter by shard identifierepochOPTIONAL(string)- Filter by epoch number
Returns
blockWasProposed:(boolean)round:(number)shard:(number)epoch:(number)timestamp:(number)
Example
Request
curl -X 'GET' \
'https://elrond-api.public.blastapi.io/rounds?shard=2&epoch=720' \
-H 'accept: application/json'
Result
[
{
"blockWasProposed": true,
"round": 10383123,
"shard": 2,
"epoch": 720,
"timestamp": 1658416338
},
{
"blockWasProposed": true,
"round": 10383122,
"shard": 2,
"epoch": 720,
"timestamp": 1658416332
}
]