getAccountsByCodeHash method
Get list of accounts by code hash. Returns json-encoded AccountsList or throw error
Implementation
Future<String> getAccountsByCodeHash(
{required String codeHash,
required int limit,
String? continuation}) =>
NekotonBridge.instance.api
.crateApiMergedProtoTransportImplGetAccountsByCodeHash(
that: this,
codeHash: codeHash,
limit: limit,
continuation: continuation);