getAccountsByCodeHash method
Get list of accounts by code hash. Returns AccountsList or throw error
Implementation
@override
Future<AccountsList> getAccountsByCodeHash({
required String codeHash,
required int limit,
String? continuation,
}) async {
if (_disposed) throw TransportCallAfterDisposeError();
final res = await transport.getAccountsByCodeHash(
codeHash: codeHash,
limit: limit,
continuation: continuation,
);
return AccountsList.fromJson(jsonDecode(res));
}