clone of repo on github
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.
 
 
 
 

59 lines
1.4 KiB

// AI SHOULD NEVER CHANGE THIS FILE
export const wikiKind = 30818;
export const indexKind = 30040;
export const zettelKinds = [30041, 30818, 30023];
export const repostKinds = [6, 16];
export const communityRelays = [
"wss://theforest.nostr1.com",
//"wss://theforest.gitcitadel.eu"
];
export const searchRelays = [
"wss://thecitadel.nostr1.com",
"wss://aggr.nostr.land",
"wss://relay.noswhere.com",
"wss://nostr.wine",
"wss://relay.damus.io",
"wss://freelay.sovbit.host",
];
export const secondaryRelays = [
"wss://theforest.nostr1.com",
//"wss://theforest.gitcitadel.eu"
"wss://thecitadel.nostr1.com",
//"wss://thecitadel.gitcitadel.eu",
"wss://nostr.land",
"wss://nostr.wine",
"wss://nostr.sovbit.host",
"wss://nostr21.com",
];
export const anonymousRelays = [
"wss://freelay.sovbit.host",
"wss://thecitadel.nostr1.com",
];
export const lowbandwidthRelays = [
"wss://theforest.nostr1.com",
"wss://thecitadel.nostr1.com",
"wss://aggr.nostr.land",
];
export const localRelays: string[] = [
"ws://localhost:8080",
"ws://localhost:4869",
"ws://localhost:3334",
"ws://localhost:7777"
];
export enum FeedType {
CommunityRelays = "standard",
UserRelays = "user",
}
export const EXPIRATION_DURATION = 28 * 24 * 60 * 60; // 4 weeks in seconds
export const loginStorageKey = "alexandria/login/pubkey";
export const feedTypeStorageKey = "alexandria/feed/type";