query_counterparties method
Attention this query retrieves data from 'Counterparties' service which is not supported in the opensource version of DApp Server (and will not be supported) as well as in Evernode SE (will be supported in SE in future), but is always accessible via EVER OS Clouds
Implementation
Future<ResultOfQueryCollection> query_counterparties(
ParamsOfQueryCounterparties params) async {
final res = await _tonCore.request(
'net.query_counterparties', params.toString());
return ResultOfQueryCollection.fromMap(res);
}