getAccountManagerForBlock static method

Future<String> getAccountManagerForBlock(
  1. String server,
  2. String block,
  3. String publicKeyHash, {
  4. String chainid = 'main',
})

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() : '';
}