getAccountManagerForBlock static method
Implementation
static Future<String> getAccountManagerForBlock(
String server, String block, String publicKeyHash,
{String chainid = 'main'}) async {
var response = await HttpHelper.performGetRequest(server,
'chains/$chainid/blocks/$block/context/contracts/$publicKeyHash/manager_key');
return response != null ? response.toString() : '';
}