one point oh only, I have some beautiful parsing logic to try to guess at 1.0 support since the nip hasn't been merged yet:
```
export const hasNegentropy = (url: string) => {
const p = relaysByUrl.get().get(url)?.profile
if (p?.supported_nips?.includes(77)) return true
if (p?.software?.includes('strfry') && !p?.version?.match(/^0\./)) return true
return false
}
```