order of filters, defaults to asc
asc
Available options: defines the range to filter in. e.g.
{
"range": {
"unit": "block",
"from": 10,
"to": 1000
}
}
refers to the range from block 10 to block 1000.
null
stands for the full range.
pass these parameters if you need filtered results paged. e.g.
{
"options": {
"offset": 0,
"limit": 10
}
}
the above refers that page offset is 0, and the page size is 10.
pass options null
if you don't need to demand paging.
OK