mirror of
https://github.com/nbd-wtf/go-nostr.git
synced 2025-09-17 19:13:56 +02:00
nip05: identifier to url.
This commit is contained in:
@@ -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])
|
||||
}
|
||||
|
Reference in New Issue
Block a user