10 lines
169 B
Go
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)
|
|
}
|