mirror of
https://github.com/nbd-wtf/go-nostr.git
synced 2025-03-17 21:32:56 +01:00
11 lines
189 B
Go
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
|
|
}
|