33 lines
1021 B
TypeScript
33 lines
1021 B
TypeScript
export const APP_VERSION = '0.2.5';
|
|
|
|
export const DEFAULT_AVATAR = 'https://void.cat/d/KmypFh2fBdYCEvyJrPiN89.webp';
|
|
|
|
export const DEFAULT_CHANNEL_BANNER =
|
|
'https://bafybeiacwit7hjmdefqggxqtgh6ht5dhth7ndptwn2msl5kpkodudsr7py.ipfs.w3s.link/banner-1.jpg';
|
|
|
|
// img proxy
|
|
export const IMGPROXY_URL = 'https://imgproxy.iris.to/insecure';
|
|
|
|
// metadata service
|
|
export const METADATA_SERVICE = 'https://us.rbr.bio';
|
|
|
|
// read-only relay list
|
|
export const READONLY_RELAYS = ['wss://welcome.nostr.wine', 'wss://relay.nostr.band'];
|
|
|
|
// write-only relay list
|
|
export const WRITEONLY_RELAYS = ['wss://nostr.mutinywallet.com', 'wss://relay.nostr.band'];
|
|
|
|
// full-relay list, used for inital page and chat/channel messages loading
|
|
export const FULL_RELAYS = [
|
|
'wss://relay.damus.io',
|
|
'wss://nos.lol',
|
|
'wss://nostr.mom',
|
|
'wss://relay.plebstr.com',
|
|
'wss://nostr-pub.wellorder.net',
|
|
'wss://nostr.zebedee.cloud',
|
|
'wss://nostr.fmt.wiz.biz',
|
|
'wss://relay.snort.social',
|
|
'wss://offchain.pub',
|
|
'wss://relay.current.fyi',
|
|
];
|