diff --git a/README.md b/README.md
index 1e18366..4950386 100644
--- a/README.md
+++ b/README.md
@@ -3,9 +3,9 @@
go-nostr
========
-A set of useful things for [Nostr Protocol](https://github.com/fiatjaf/nostr) implementations.
+A set of useful things for [Nostr Protocol](https://github.com/nostr-protocol/nostr) implementations.
-
+
### Subscribing to a set of relays
diff --git a/example/example.go b/example/example.go
index 6a2821f..10b8a48 100644
--- a/example/example.go
+++ b/example/example.go
@@ -4,7 +4,7 @@ import (
"fmt"
"time"
- "github.com/fiatjaf/go-nostr/nostr"
+ "github.com/nbd-wtf/go-nostr"
)
// some nostr relay in the wild
@@ -70,7 +70,6 @@ func main() {
time.Sleep(20 * time.Second)
fmt.Println("unsubscribing from nostr subscription")
sub.Unsub()
-
}
// handle events from out publish events
diff --git a/go.mod b/go.mod
index 17a50a6..d07c8c0 100644
--- a/go.mod
+++ b/go.mod
@@ -1,4 +1,4 @@
-module github.com/fiatjaf/go-nostr
+module github.com/nbd-wtf/go-nostr
go 1.18