···1313export const app = new App<State>();
14141515export const botInstances: Map<Did, StreamplaceBot> = new Map();
1616+export const followerAtUris: Map<Did, string> = new Map();
16171718// Initialize for self
1819export const atprotoClient = new AtprotoClient(BOT_CREDENTIALS, BOT_SERVICE);
···3233 100, // I should fetch all of them, but I also don't know if I can handle that many
3334 );
3435 const filteredBacklinks = await filterByStreamplace(backlinks);
3535- for (const backlinkDid of filteredBacklinks) {
3636- //if(backlinkDid !== "did:plc:dvh3s2edmdijbcv3k45ze22l") continue;
3737- const streamplaceBot = new StreamplaceBot(backlinkDid);
3636+ for (const backlink of filteredBacklinks) {
3737+ const streamplaceBot = new StreamplaceBot(backlink.did);
3838 streamplaceBot.init();
3939- botInstances.set(backlinkDid, streamplaceBot);
3939+ botInstances.set(backlink.did, streamplaceBot);
4040+ followerAtUris.set(backlink.did, backlink.atUri);
4041 }
4142}
4243streamplaceWS.start();