Files
nostrlib/nip19/utils.go
2025-04-15 00:00:03 -03:00

10 lines
169 B
Go

package nip19
import (
"fiatjaf.com/nostr"
)
func NeventFromRelayEvent(ie nostr.RelayEvent) string {
return EncodeNevent(ie.ID, []string{ie.Relay.URL}, ie.PubKey)
}