Skip to content

Commit

Permalink
update default zap receipt relays
Browse files Browse the repository at this point in the history
Blastr no longer exists.
  • Loading branch information
SamSamskies committed Jan 4, 2025
1 parent fb1a15e commit de8f717
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Zap any Nostr npub or note from anywhere.
Specify a target npub using a `data-npub` attribute on any HTML elements that you would like to turn into click targets. Optionally,
you can specify a note ID using a `data-note-id` attribute if you'd like to zap a specific note. You can also optionally specify relays
that you'd like the zap receipt published to using a `data-relays` attribute. If you don't add a `data-relays` attribute, the zap
receipt will be blasted out to the top 300 relays using Blastr (wss://nostr.mutinywallet.com).
receipt will be sent to a small set of default relays.

If the user doesn't have an ext that supports nip-07 installed or does not authorize signing the zap event, an anonymous zap will be sent.
```html
Expand Down
2 changes: 1 addition & 1 deletion src/view.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ const renderAmountDialog = async ({
`${hex.substring(0, 12)}...${hex.substring(npub.length - 12)}`;
const normalizedRelays = relays
? relays.split(",")
: ["wss://nostr.mutinywallet.com"];
: ["wss://relay.nostr.band", "wss://relay.damus.io", "wss://nos.lol"];

const authorId = decodeNpub(npub);
const metadataPromise = getProfileMetadata(authorId);
Expand Down

0 comments on commit de8f717

Please sign in to comment.