GetTableByScope
GetTableByScope
Retrieves table scope
Code - accountName of the contract to search for tables
Table - table name to filter
LowerBound - lower bound of scope, optional
UpperBound - upper bound of scope, optional
Limit
Reverse - reverse result order
var result = await eos.GetTableByScope(new GetTableByScopeRequest() {
code = "eosio.token",
table = "accounts"
});
Returns:
class GetTableByScopeResponse
{
List<TableByScopeResultRow> rows
string more
}
class TableByScopeResultRow
{
string code;
string scope;
string table;
string payer;
UInt32? count;
}
Last updated