mirror of
https://github.com/dergigi/boris.git
synced 2026-02-16 12:34:41 +01:00
- Remove temporary relay additions that were added for debugging - Restore clean hardcoded relay list now that dynamic relay integration is working - The non-blocking relay loading implementation handles user relay lists properly
22 lines
556 B
TypeScript
22 lines
556 B
TypeScript
/**
|
|
* Centralized relay configuration
|
|
* Single set of relays used throughout the application
|
|
*/
|
|
|
|
// All relays including local relays
|
|
export const RELAYS = [
|
|
'ws://localhost:10547',
|
|
'ws://localhost:4869',
|
|
'wss://relay.nsec.app',
|
|
'wss://relay.damus.io',
|
|
'wss://nos.lol',
|
|
'wss://relay.nostr.band',
|
|
'wss://wot.dergigi.com',
|
|
'wss://relay.snort.social',
|
|
'wss://nostr-pub.wellorder.net',
|
|
'wss://purplepag.es',
|
|
'wss://relay.primal.net',
|
|
'wss://proxy.nostr-relay.app/5d0d38afc49c4b84ca0da951a336affa18438efed302aeedfa92eb8b0d3fcb87',
|
|
]
|
|
|