go-nostr/nip19/utils.go
2025-03-06 11:49:10 -03:00

11 lines
189 B
Go

package nip19
import (
"github.com/nbd-wtf/go-nostr"
)
func NeventFromRelayEvent(ie nostr.RelayEvent) string {
v, _ := EncodeEvent(ie.ID, []string{ie.Relay.URL}, ie.PubKey)
return v
}