Returns validators uptime data for time range limited by from_state_version
and at_state_version
.
For at_ledger_state
and from_ledger_state
you can use one of state_version
, epoch
, epoch
and round
, or timestamp
, but then ongoing epoch will be selected and used for querying data.
i.e for request with { "from_state_version" = { "state_version" = 100 }, "at_state_version" = { "state_version" = 300} }
gateway api will check in which epoch transactions with state version 100 and 300 were and then use that as inclusive boundary for request.
defines upper boundary (inclusive) for queried data. i.e { "at_state_version" = {"epoch" = 10} }
, will return data till 10 epoch.
defines lower boundary (inclusive) for queried data. i.e { "from_state_version" = {"epoch" = 10} }
, will return data from epoch 10 till current max ledger tip.