WIP Hello world

This commit is contained in:
2024-10-20 19:59:06 +02:00
commit b618c6a1a1
9 changed files with 657 additions and 0 deletions

24
nostr.ts Normal file
View File

@@ -0,0 +1,24 @@
import { NRelay1 } from "@nostrify/nostrify";
export const relay = new NRelay1("wss://nostr.kosmos.org");
export async function fetchReplaceableEvent(pubkey: string, identifier: string) {
const events = await relay.query([{
authors: [pubkey],
kinds: [30023],
"#d": [identifier],
limit: 1,
}]);
return events.length > 0 ? events[0] : null;
}
export async function fetchProfileEvent(pubkey: string) {
const events = await relay.query([{
authors: [pubkey],
kinds: [0],
limit: 1,
}]);
return events.length > 0 ? events[0] : null;
}