# User relay lists

low level

# Example

final response = await ndk.userRelayLists.getSingleUserRelayList(
    '30782a8323b7c98b172c5a2af7206bb8283c655be6ddce11133611a03d5f1177');

// read entity
print("RELAYS:");
print(response?.relays.length ?? "no relays");
print(response!.toNip65());

# When to use

User relay lists provides you with the relays for a given user.
It orients itself on nip65 but also uses data from nip02 in case nip65 is not available.
It's used by inbox/outbox; only use this if you are doing something custom that is not directly handled by inbox/outbox.