Awiteb on Nostr: No, it's didn't work, because your `nostr.json` content is ...
No, it's didn't work, because your `nostr.json` content is https://prickigakatten.se/.well-known/nostr.json
```json
{
"names": {
"Speedy Gonzales": "f83e8392a4cddf17b56287bb5805b4adf5ce2c66bb9e4e7c8baf9770e519e9a5"
}
}
```
The nip-5 says:
> NIP-05 assumes the <local-part> part will be restricted to the characters a-z0-9-_., case-insensitive.
So you shouldn't use a space, you can change it to
```json
{
"names": {
"speedy": "f83e8392a4cddf17b56287bb5805b4adf5ce2c66bb9e4e7c8baf9770e519e9a5"
}
}
```
And it will works. Also consider to add your recommended relays.
```json
{
"names": {
"Speedy Gonzales": "f83e8392a4cddf17b56287bb5805b4adf5ce2c66bb9e4e7c8baf9770e519e9a5"
}
}
```
The nip-5 says:
> NIP-05 assumes the <local-part> part will be restricted to the characters a-z0-9-_., case-insensitive.
So you shouldn't use a space, you can change it to
```json
{
"names": {
"speedy": "f83e8392a4cddf17b56287bb5805b4adf5ce2c66bb9e4e7c8baf9770e519e9a5"
}
}
```
And it will works. Also consider to add your recommended relays.