mirror of
https://github.com/nbd-wtf/go-nostr.git
synced 2025-03-19 22:31:54 +01:00
9 lines
184 B
Go
9 lines
184 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
|
|
}
|