From 09b44c82863505b37f2809002456e508445f9d8e Mon Sep 17 00:00:00 2001 From: martbost Date: Sat, 15 Aug 2026 16:42:46 -0500 Subject: [PATCH] Reframe payout tweets around the Crypto Team Build Network Per Marty: Crypto Team Build Network is OUR team; The RM Circle is the third-party co-op we build in, not our brand. CTA changed from "Join The RM Circle team build" to "Join the Crypto Team Build Network", and hashtags now lead with #CryptoTeamBuild (then #TheRMCircle as the program tag). Payout facts unchanged. Longest render 278/280. 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 c34b133..6bd2a71 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 = '#TheRMCircle #CryptoTeamBuild #Polygon #Crypto #Web3'; +const DEFAULT_TAGS = '#CryptoTeamBuild #TheRMCircle #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.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}`; + const head = `${body}\n\nJoin the Crypto Team Build Network 👉 ${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}`;