feat: automate social graph
This commit is contained in:
@ -12,6 +12,7 @@ import EventEmitter from "eventemitter3";
|
||||
import { QueryEvents } from "./query";
|
||||
import { CacheRelay } from "./cache-relay";
|
||||
import { RequestRouter } from "./request-router";
|
||||
import { UsersFollows } from "./cache/index";
|
||||
|
||||
export { NostrSystem } from "./nostr-system";
|
||||
export { default as EventKind } from "./event-kind";
|
||||
@ -48,8 +49,6 @@ export * from "./cache/user-relays";
|
||||
export * from "./cache/user-metadata";
|
||||
export * from "./cache/relay-metric";
|
||||
|
||||
export * from "./worker/system-worker";
|
||||
|
||||
export type QueryLike = {
|
||||
get progress(): number;
|
||||
feed: {
|
||||
@ -143,6 +142,11 @@ export interface SystemInterface {
|
||||
*/
|
||||
get eventsCache(): CachedTable<NostrEvent>;
|
||||
|
||||
/**
|
||||
* ContactList cache
|
||||
*/
|
||||
get userFollowsCache(): CachedTable<UsersFollows>;
|
||||
|
||||
/**
|
||||
* Relay loader loads relay metadata for a set of profiles
|
||||
*/
|
||||
|
Reference in New Issue
Block a user