eos-sharp
eos-sharp copied to clipboard
Get table rows limit
I wrote web API to get all records of table using:
var result = await eos.GetTableRows(new GetTableRowsRequest() {
json = true,
code = "eosio.token",
scope = "EOS",
table = "stat"
});
By default, it gives first 10 records only. I know, if I want more I can give limit option parameter. But what if I need all records from a table? What value should I set the limit value to get all records of the table? Please guide.