loadNip05s method
Implementation
@override
Future<List<Nip05?>> loadNip05s(List<String> pubKeys) async {
final snapshots = await _nip05Store.records(pubKeys).get(_database);
return snapshots.map((data) {
if (data == null) return null;
return Nip05Extension.fromJsonStorage(data);
}).toList();
}