Skip to content

Commit

Permalink
use relay.damus.io because nostrhitch is using that
Browse files Browse the repository at this point in the history
  • Loading branch information
K committed Oct 17, 2024
1 parent c149ae3 commit aaa5a51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nr-app/app/(tabs)/explore.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default function TabTwoScreen() {
const verificationResult = verifyEvent(event);
console.log("#QPwp7w Verification result", verificationResult);

const relay = new Relay("wss://nos.lol");
const relay = new Relay("wss://relay.damus.io");
await relay.connect();
const sub = relay.subscribe([{ kinds: [397], limit: 10 }], {
onevent: (event) =>
Expand Down Expand Up @@ -78,7 +78,7 @@ export default function TabTwoScreen() {
<Text style={{ color: "#008800" }}>{event.event.pubkey}</Text>
<Text style={{ color: "#008800" }}>
{Array.isArray(event.event.tags[1]) && event.event.tags[1][1]
? JSON.stringify(event.event.tags[1][1])
? event.event.tags[1][1]
: null}
</Text>
<Text style={{ color: "#008800" }}>----------------------</Text>
Expand Down

0 comments on commit aaa5a51

Please sign in to comment.