Skip to content

Commit

Permalink
Merge pull request #89 from jiftechnify/renew-bootstrap-relays
Browse files Browse the repository at this point in the history
Renew bootstrap relays
  • Loading branch information
jiftechnify authored Jan 8, 2024
2 parents 4b85366 + 335cd2f commit 6bcf81a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/states/nostr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,6 @@ const pubkeyInNostrExtAtomBase = loadable(

const pubkeyInNostrExtAtom = atom((get) => {
const pkLoadable = get(pubkeyInNostrExtAtomBase);
console.log(pkLoadable);
return pkLoadable.state === "hasData" ? pkLoadable.data : undefined;
});

Expand All @@ -250,7 +249,7 @@ const bootstrapFetcher = NostrFetcher.init();
const rxNostr = createRxNostr();
const fetcherOnRxNostr = NostrFetcher.withCustomPool(rxNostrAdapter(rxNostr));

const defaultBootstrapRelays = ["wss://relay.nostr.band", "wss://relayable.org", "wss://directory.yabu.me"];
const defaultBootstrapRelays = ["wss://relay.nostr.band", "wss://directory.yabu.me", "wss://purplepag.es"];

const fallbackRelayList: RelayList = {
"wss://relay.nostr.band": { read: true, write: true },
Expand Down

0 comments on commit 6bcf81a

Please sign in to comment.