Add initial project structure with Svelte, TypeScript support, and basic Nostr client implementation

This commit is contained in:
2025-10-08 16:09:37 +01:00
parent 23985719ba
commit 7ee613bb0e
12 changed files with 620 additions and 0 deletions

11
app/web/src/constants.js Normal file
View File

@@ -0,0 +1,11 @@
// Default Nostr relays for searching
export const DEFAULT_RELAYS = [
'wss://relay.damus.io',
'wss://relay.nostr.band',
'wss://nos.lol',
'wss://relay.nostr.net',
'wss://relay.minibits.cash',
'wss://relay.coinos.io/',
'wss://nwc.primal.net',
'wss://relay.orly.dev',
];