Files
nostrlib/README.md

633 B

go-nostr

A set of useful things for Nostr Protocol implementations.

GoDoc

Generating a key

sk, _ := nostr.GenerateKey()

fmt.Println("sk:", sk)
fmt.Println("pk:", nostr.GetPublicKey(sk))

Subscriptions

go run example/example.go