nip05: identifier to url.

This commit is contained in:
fiatjaf
2024-11-27 01:12:57 -03:00
parent 1ac5516440
commit a1a4c04a18
2 changed files with 11 additions and 3 deletions

View File

@@ -95,3 +95,11 @@ func NormalizeIdentifier(fullname string) string {
return fullname
}
func IdentifierToURL(address string) string {
spl := strings.Split(address, "@")
if len(spl) == 1 {
return fmt.Sprintf("https://%s/.well-known/nostr.json?name=_", spl[0])
}
return fmt.Sprintf("https://%s/.well-known/nostr.json?name=%s", spl[1], spl[0])
}