From 2992ff414f9d700db3848923823d98f3c995bf24 Mon Sep 17 00:00:00 2001 From: martbost Date: Sat, 15 Aug 2026 11:42:00 -0500 Subject: [PATCH] Name "RM Circle team build" in every payout tweet + #RMCircle MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CTA line now reads "Join the RM Circle team build 👉" and hashtags lead with #RMCircle #CryptoTeamBuild. All templates verified <=280 (longest 270). Branding is in every tweet, not just implied by a hashtag. Co-Authored-By: Claude Fable 5 --- tweet.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tweet.js b/tweet.js index 64748a6..ccabcde 100644 --- a/tweet.js +++ b/tweet.js @@ -15,7 +15,7 @@ const MIN_GAP_MS = 2600; // ~23/min ceiling, under Blotato's 30/ const DATA_DIR = process.env.DATA_DIR || '.'; const TWEETED_FILE = path.join(DATA_DIR, 'tweeted-payouts.json'); const DEFAULT_CTA = 'https://rmcircle.saasy.top/?utm_source=x'; // short: Blotato counts raw URL length toward 280 -const DEFAULT_TAGS = '#Crypto #Polygon #POL #Web3 #CryptoTeamBuild'; +const DEFAULT_TAGS = '#RMCircle #CryptoTeamBuild #Polygon #Crypto #Web3'; const DEFAULT_TWITTER_ID = '7998'; // @cryptoteambuild in Blotato function readKey() { @@ -67,7 +67,7 @@ function render(evt, cfg) { `💰 Cha-ching! Member #${evt.toId} earned ${pol} POL on-chain the second a new member came aboard — no waiting. 🚀`, ]); } - const head = `${body}\n\nBuild with us 👉 ${cta}`; + const head = `${body}\n\nJoin the RM Circle team build 👉 ${cta}`; // Hard 280 guard (Blotato counts raw string length, no t.co shortening): // keep body + CTA, drop hashtags first, then trim the body as a last resort. let out = `${head}\n\n${tags}`;