From 6748d0115811bd574688648fac79ba9a3195a198 Mon Sep 17 00:00:00 2001 From: Sjors Provoost Date: Fri, 6 Sep 2024 12:40:33 +0200 Subject: [PATCH] Log event id after successful publish --- main.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/main.ts b/main.ts index e84ffbd..35b73af 100644 --- a/main.ts +++ b/main.ts @@ -184,6 +184,7 @@ alert("About to post to Nostr."); for (const i in events) { const event = events[i] await relay.event(event); + console.log(event.id); } await relay.close()