Skip to content

Commit

Permalink
changed nostr relays from examples
Browse files Browse the repository at this point in the history
  • Loading branch information
npub1337 committed Apr 11, 2024
1 parent 907cfd7 commit 0fe8e80
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func main() {

``` go
ctx := context.Background()
relay, err := nostr.RelayConnect(ctx, "wss://nostr.zebedee.cloud")
relay, err := nostr.RelayConnect(ctx, "wss:///relay.stoner.com")
if err != nil {
panic(err)
}
Expand Down Expand Up @@ -95,7 +95,7 @@ ev.Sign(sk)

// publish the event to two relays
ctx := context.Background()
for _, url := range []string{"wss://nostr.zebedee.cloud", "wss://nostr-pub.wellorder.net"} {
for _, url := range []string{"wss:///relay.stoner.com", "wss://nostr-pub.wellorder.net"} {
relay, err := nostr.RelayConnect(ctx, url)
if err != nil {
fmt.Println(err)
Expand Down
4 changes: 2 additions & 2 deletions example/example.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ func main() {
ctx, cancel := context.WithTimeout(context.Background(), 3*time.Second)

// connect to relay
url := "wss://nostr.zebedee.cloud"
url := "wss:///relay.stoner.com"
relay, err := nostr.RelayConnect(ctx, url)
if err != nil {
panic(err)
Expand Down Expand Up @@ -116,7 +116,7 @@ func main() {
}
ev.Content = strings.TrimSpace(content)
ev.Sign(sk)
for _, url := range []string{"wss://nostr.zebedee.cloud"} {
for _, url := range []string{"wss:///relay.stoner.com"} {
ctx := context.WithValue(context.Background(), "url", url)
relay, e := nostr.RelayConnect(ctx, url)
if e != nil {
Expand Down

0 comments on commit 0fe8e80

Please sign in to comment.