fix(chess): add offchain.pub relay for jester interop
jester.nyo.dev uses offchain.pub as one of its relays. Adding it gives us 2 shared relays (relay.damus.io + offchain.pub) instead of 1, improving challenge visibility between Amethyst and Jester clients. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
+5
-2
@@ -30,14 +30,16 @@ import com.vitorpamplona.quartz.nip01Core.relay.normalizer.normalizeRelayUrl
|
|||||||
*/
|
*/
|
||||||
object ChessConfig {
|
object ChessConfig {
|
||||||
/**
|
/**
|
||||||
* The 3 main relays for chess events.
|
* Relays for chess events.
|
||||||
* These are used for both fetching and publishing chess events.
|
* Includes relays used by jester.nyo.dev (relay.damus.io, offchain.pub)
|
||||||
|
* and popular community relays for broader reach.
|
||||||
*/
|
*/
|
||||||
val CHESS_RELAYS =
|
val CHESS_RELAYS =
|
||||||
listOf(
|
listOf(
|
||||||
"wss://relay.damus.io",
|
"wss://relay.damus.io",
|
||||||
"wss://nos.lol",
|
"wss://nos.lol",
|
||||||
"wss://relay.primal.net",
|
"wss://relay.primal.net",
|
||||||
|
"wss://offchain.pub",
|
||||||
)
|
)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -48,6 +50,7 @@ object ChessConfig {
|
|||||||
"relay.damus.io".normalizeRelayUrl(),
|
"relay.damus.io".normalizeRelayUrl(),
|
||||||
"nos.lol".normalizeRelayUrl(),
|
"nos.lol".normalizeRelayUrl(),
|
||||||
"relay.primal.net".normalizeRelayUrl(),
|
"relay.primal.net".normalizeRelayUrl(),
|
||||||
|
"offchain.pub".normalizeRelayUrl(),
|
||||||
)
|
)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user