You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
518 B
22 lines
518 B
/** |
|
* Configuration constants |
|
*/ |
|
|
|
// NIP-98 auth event kind |
|
export const KIND_NIP98_AUTH = 27235; |
|
|
|
// Default server URL |
|
export const DEFAULT_SERVER = process.env.GITREPUBLIC_SERVER || 'http://localhost:5173'; |
|
|
|
// Default relays |
|
export const DEFAULT_RELAYS = [ |
|
'wss://nostr.land', |
|
'wss://relay.damus.io', |
|
'wss://thecitadel.nostr1.com', |
|
'wss://nostr21.com', |
|
'wss://theforest.nostr1.com', |
|
'wss://freelay.sovbit.host', |
|
'wss://nostr.sovbit.host', |
|
'wss://bevos.nostr1.com', |
|
'wss://relay.primal.net', |
|
];
|
|
|