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.
23 lines
614 B
23 lines
614 B
export const StorageKey = { |
|
THEME_SETTING: 'themeSetting', |
|
RELAY_SETS: 'relaySets', |
|
ACTIVE_RELAY_SET_ID: 'activeRelaySetId', |
|
FEED_TYPE: 'feedType', |
|
ACCOUNTS: 'accounts', |
|
CURRENT_ACCOUNT: 'currentAccount', |
|
ADD_CLIENT_TAG: 'addClientTag' |
|
} |
|
|
|
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/'] |
|
|
|
export const PICTURE_EVENT_KIND = 20 |
|
export const COMMENT_EVENT_KIND = 1111 |
|
|
|
export const URL_REGEX = /(https?:\/\/[^\s"']+)/g
|
|
|