mirror of
https://github.com/dergigi/boris.git
synced 2026-01-09 01:44:24 +01:00
- Add ws://localhost:4869 to RELAYS configuration - Update comment to reflect multiple local relays - Support additional local relay option for users
23 lines
587 B
TypeScript
23 lines
587 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.damus.io',
|
|
'wss://nos.lol',
|
|
'wss://relay.nostr.band',
|
|
'wss://relay.dergigi.com',
|
|
'wss://wot.dergigi.com',
|
|
'wss://relay.snort.social',
|
|
'wss://relay.current.fyi',
|
|
'wss://nostr-pub.wellorder.net',
|
|
'wss://purplepag.es',
|
|
'wss://relay.primal.net',
|
|
'wss://proxy.nostr-relay.app/5d0d38afc49c4b84ca0da951a336affa18438efed302aeedfa92eb8b0d3fcb87'
|
|
]
|
|
|