Add more relays (high performance)

For eden, @Cameri has said it has a load balanced setup.
For nostr-pub.semisol, it's mostly running on idle right now with 8 threads and 16GB RAM.
This commit is contained in:
Semisol 2023-01-27 18:50:50 +03:00 committed by GitHub
parent 3d7661214c
commit fba99b4713
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -24,7 +24,9 @@ export const ProfileCacheExpire = (1_000 * 60 * 5);
* Default bootstrap relays
*/
export const DefaultRelays = new Map<string, RelaySettings>([
["wss://relay.snort.social", { read: true, write: true }]
["wss://relay.snort.social", { read: true, write: true }],
["wss://eden.nostr.land", { read: true, write: true }],
["wss://nostr-pub.semisol.dev", { read: true, write: true }]
]);
/**
@ -107,4 +109,4 @@ export const SoundCloudRegex = /soundcloud\.com\/(?!live)([a-zA-Z0-9]+)\/([a-zA-
* Mixcloud regex
*/
export const MixCloudRegex = /mixcloud\.com\/(?!live)([a-zA-Z0-9]+)\/([a-zA-Z0-9-]+)/
export const MixCloudRegex = /mixcloud\.com\/(?!live)([a-zA-Z0-9]+)\/([a-zA-Z0-9-]+)/