queryAddressWithAccountIndex method

Future<List?> queryAddressWithAccountIndex(
  1. String index,
  2. int? ss58
)

query address with account index

Implementation

Future<List?> queryAddressWithAccountIndex(String index, int? ss58) async {
  final res = await serviceRoot.webView!.evalJavascript(
      'account.queryAddressWithAccountIndex(api, "$index", $ss58)');
  return res;
}