getAccountsByCodeHash method

Future<String> getAccountsByCodeHash({
  1. required String codeHash,
  2. required int limit,
  3. String? continuation,
})

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);