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.
15 lines
388 B
15 lines
388 B
export const StorageKey = { |
|
THEME_SETTING: 'themeSetting', |
|
RELAY_GROUPS: 'relayGroups', |
|
ACCOUNTS: 'accounts', |
|
CURRENT_ACCOUNT: 'currentAccount' |
|
} |
|
|
|
export const BIG_RELAY_URLS = [ |
|
'wss://relay.damus.io/', |
|
'wss://nos.lol/', |
|
'wss://relay.nostr.band/', |
|
'wss://relay.noswhere.com/' |
|
] |
|
|
|
export const SEARCHABLE_RELAY_URLS = ['wss://relay.nostr.band/', 'wss://search.nos.today/']
|
|
|