From 5c53945aeedfd8821c4205fd5f82808e65f80741 Mon Sep 17 00:00:00 2001 From: martbost Date: Sat, 15 Aug 2026 11:48:47 -0500 Subject: [PATCH] Name both sides of the event in referral tweets (purchase + payout) Each join/upgrade yields exactly one payment, so one tweet tells the whole story. Upgrade tweets already named the upgrader + recipient; referral tweets now name the joining member (evt.fromId) too, e.g. "Member #129 just joined and Member #30 instantly earned 326.2 POL". All templates verified <=280. Co-Authored-By: Claude Fable 5 --- tweet.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tweet.js b/tweet.js index 58b9387..c34b133 100644 --- a/tweet.js +++ b/tweet.js @@ -62,9 +62,9 @@ function render(evt, cfg) { ]); } else { body = pick([ - `💸 Boom! A new teammate joined and Member #${evt.toId} instantly earned ${pol} POL — paid on-chain, verifiable by anyone. ⚡`, - `🎉 New teammate, instant reward! Member #${evt.toId} just banked ${pol} POL the moment someone joined under them. 🔗`, - `💰 Cha-ching! Member #${evt.toId} earned ${pol} POL on-chain the second a new member came aboard — no waiting. 🚀`, + `💸 Boom! Member #${evt.fromId} just joined and Member #${evt.toId} instantly earned ${pol} POL — paid on-chain, verifiable by anyone. ⚡`, + `🎉 New teammate! Member #${evt.fromId} came aboard and Member #${evt.toId} banked ${pol} POL the same moment. 🔗`, + `💰 Cha-ching! Member #${evt.fromId} joined the team and Member #${evt.toId} earned ${pol} POL on-chain — instantly. 🚀`, ]); } const head = `${body}\n\nJoin The RM Circle team build 👉 ${cta}`;