I clip the best moments from streams so you don't miss a thing.
Posting daily, Entertainment only.
DM for promotionsyoutube.com/@ClipzzyEdit-n… EntertainmentJoined March 2024
Below is a project documentation draft you can use as the foundation for a product/technical spec.
@CadeMarket
Meme Madness
Project Documentation & Boost Builder Specification
1. Project Overview
Meme Madness is a gamified prediction-market competition built around fast-paced, daily trading rounds.
Participants receive daily credits and use those credits to predict whether selected meme-token markets will move Up or Down. Their performance is measured using net P&L, with each daily round having its own independent leaderboard.
The platform also includes a Boost Builder that allows users to complete onboarding and social actions before the competition to increase the number of credits they receive each day.
2. Core Objectives
The project is designed to:
Increase user registrations before the tournament.
Encourage users to complete onboarding actions.
Drive X/Twitter account connections and social engagement.
Encourage referrals and community growth.
Give users a recurring reason to return every day.
Create competition through daily rankings.
Combine prediction-market mechanics with meme/community culture.
3. Tournament Structure
3.1 Daily Rounds
Meme Madness consists of 7 daily rounds.
Each day operates as an independent competition.
At the end of each round:
The user's daily score is finalized.
Net P&L determines the user's position.
The leaderboard is reset.
Fresh credits are provided for the next round.
This prevents performance from one day permanently determining the user's position throughout the entire tournament.
3.2 Daily Credits
Users receive a base amount of credits for each daily round.
Additional credits can be earned through completed Boost Builder actions.
The reference page specifies that credit boosts apply daily at midnight EST.
Credit model
Daily Credits =
Base Daily Credits
+ Completed Boost Credits
The exact base-credit amount should be configurable by the campaign administrator.
4. Boost Builder
4.1 Purpose
The Boost Builder is the user-acquisition and engagement layer of Meme Madness.
Users complete predefined actions to earn points and unlock additional daily credits.
The reference implementation contains four primary boost actions.
4.2 Boost Actions
ActionDescriptionPointsCreate Cade ProfileUser signs in / creates a profile to save campaign progress10Connect X AccountUser connects the X account they intend to use for Meme Madness20Follow Pumpcade on XUser follows the designated X account20Share Meme Madness on XUser publishes the Meme Madness promotional post20
The reference therefore provides a maximum of 70 boost points from the four listed actions. (Cade)
Boost status
Each action should have one of the following states:
LOCKED
AVAILABLE
IN_PROGRESS
COMPLETED
VERIFICATION_REQUIRED
FAILED
A completed action should only award its points once.
5. Boost Builder User Flow
Step 1 — User visits registration page
The user lands on the Meme Madness registration page.
Step 2 — User signs in
The user creates or signs into their Cade profile.
The platform stores the user's campaign progress against their account.
Step 3 — Connect X
The user authorizes the X account they intend to use during the campaign.
The system stores the relationship between:
Cade User
↓
Connected X Account
Step 4 — Follow Pumpcade
The user follows the designated Pumpcade X account.
The system verifies the follow action.
Step 5 — Share Meme Madness
The user publishes the campaign post on X.
The platform verifies the required post/action.
Step 6 — Award Boost
After successful verification:
Action → Verified → Points Awarded → Daily Credit Boost Activated
The user's progress indicator is updated immediately.
6. Boost Builder Data Model
A recommended boost-action object:
{
"id": "connect_x",
"name": "Connect X Account",
"description": "Connect the X account you will use for Meme Madness.",
"points": 20,
"status": "completed",
"completedAt": "2026-08-17T00:00:00Z",
"verificationRequired": true
}
User boost profile
{
"userId": "USER_ID",
"campaignId": "MEME_MADNESS",
"totalBoostPoints": 70,
"dailyCreditBoost": 0,
"actions": [
{
"actionId": "create_profile",
"status": "completed",
"points": 10
},
{
"actionId": "connect_x",
"status": "completed",
"points": 20
},
{
"actionId": "follow_pumpcade",
"status": "completed",
"points": 20
},
{
"actionId": "share_meme_madness",
"status": "completed",
"points": 20
}
]
}
7. Prediction Market Mechanics
Users participate in fast-paced prediction markets.
For each market, the user predicts whether the relevant token will move:
UP
DOWN
The reference describes these as fast-paced markets with instant resolution. (Cade)
Basic flow
Market Opens
↓
User Selects UP / DOWN
↓
User Allocates Credits
↓
Market Resolves
↓
Profit/Loss Calculated
↓
Daily P&L Updated
↓
Leaderboard Updated
8. Daily Lineup
Each daily round contains:
8 All Stars
2 Battle Coins
The Battle Coin mechanism allows the community-selected battle to compete against the existing All Stars.
According to the reference, the Battle Coin with the highest volume on Cade markets can knock out the lowest-volume All Star and take its place in the following round. (Cade)
Lineup lifecycle
All Stars
+
Battle Coins
↓
Daily Market Activity
↓
Volume Comparison
↓
Battle Coin Winner
↓
Lowest-Volume All Star Removed
↓
Winning Battle Coin Enters Next Round
9. Scoring & Leaderboard
9.1 Primary Ranking Metric
The daily leaderboard is determined by net P&L.
Higher net P&L produces a higher daily ranking. (Cade)
Recommended calculation:
Net P&L = Realized Gains - Realized Losses
If fees or other deductions apply, they should be explicitly incorporated:
Net P&L =
Gross Gains
- Gross Losses
- Trading Fees
- Other Applicable Costs
9.2 Leaderboard Reset
At the end of every daily round:
Finalize P&L
↓
Freeze Daily Ranking
↓
Record Results
↓
Reset Daily Score
↓
Issue New Daily Credits
↓
Start New Round
Historical results should remain accessible even after the active leaderboard resets.
10. Referral System
The registration experience also includes an invitation/referral mechanism.
Users receive a personal invite link and may optionally create a custom invite code.
The reference specifies:
Pending referrals are worth 20 points each during preregistration.
Custom invite codes may contain 3–24 letters, numbers, dashes, or underscores. (Cade)
Referral flow
User A
↓
Generates Invite Link
↓
User B Opens Link
↓
User B Registers
↓
Referral Attributed
↓
User A Receives Referral Points
Referral requirements
The system should prevent:
Self-referrals.
Duplicate attribution.
Multiple rewards for the same referred account.
Referral-code abuse.
11. Registration Page
The registration experience should communicate the campaign value immediately.
Recommended page structure:
MEME MADNESS
"Boost Your Daily Credits"
[ PRE-REGISTER ]
----------------------------
BOOST YOUR DAILY CREDITS
Your Boost Progress
[✓] Create your Cade Profile +10
[✓] Connect your X Account +20
[ ] Follow Pumpcade on X +20
[ ] Share Meme Madness on X +20
----------------------------
MEME MADNESS
7 DAILY ROUNDS
8 ALL STARS + 2 BATTLE COINS
NET P&L DETERMINES YOUR RANK
----------------------------
INVITE FRIENDS
Your Invite Link
[ COPY LINK ]
Custom Invite Code
[ SAVE CODE ]
12. Authentication Requirements
The platform should support:
Cade authentication
Required for:
Saving campaign progress.
Associating boost actions with a user.
Tracking referrals.
Maintaining daily participation.
X authentication
Required for:
Connecting the user's X account.
Verifying eligible social actions.
Associating campaign posts with the participant.
The X account connection should be explicitly authorized by the user.
13. Verification System
Social actions should not be considered complete solely because the user clicked a button.
Recommended architecture:
Frontend
↓
Action Request
↓
Backend Verification Service
↓
External API / Platform Verification
↓
Verification Result
↓
Boost Ledger
Every awarded boost should generate an immutable event.
Example:
{
"userId": "USER_ID",
"campaignId": "MEME_MADNESS",
"action": "follow_pumpcade",
"points": 20,
"verified": true,
"verifiedAt": "2026-08-17T12:00:00Z"
}
14. Boost Ledger
A ledger should be used rather than simply storing a mutable point total.
Example
+10 Create profile
+20 Connect X
+20 Follow Pumpcade
+20 Share Meme Madness
----------------------
70 Total boost points
This provides:
Auditability.
Fraud detection.
Easier dispute resolution.
Historical campaign reporting.
15. Campaign State Machine
Recommended campaign states:
DRAFT
↓
PRE_REGISTRATION
↓
ACTIVE
↓
ROUND_COMPLETE
↓
NEXT_ROUND
↓
CAMPAIGN_COMPLETE
Round states
SCHEDULED
↓
OPEN
↓
LOCKED
↓
RESOLVING
↓
FINALIZED
16. Core Database Entities
Recommended entities:
Users
id
email
username
created_at
Campaigns
id
name
start_at
end_at
status
base_daily_credits
timezone
Campaign Participants
id
campaign_id
user_id
registered_at
Boost Actions
id
campaign_id
name
description
points
action_type
active
User Boosts
id
user_id
boost_action_id
status
verified_at
points_awarded
X Accounts
id
user_id
x_user_id
username
connected_at
Referrals
id
referrer_user_id
referred_user_id
invite_code
points
status
created_at
Rounds
id
campaign_id
round_number
starts_at
ends_at
status
Markets
id
round_id
asset
direction
open_at
close_at
resolution
Trades / Predictions
id
user_id
market_id
direction
credits
entry_price
exit_price
pnl
created_at
Leaderboard Entries
id
round_id
user_id
net_pnl
rank
finalized_at
17. Admin Dashboard
Administrators should be able to:
Create and edit campaigns.
Configure daily credit amounts.
Create boost actions.
Configure boost points.
Enable/disable actions.
View completion rates.
Review failed verifications.
Manage campaign rounds.
Monitor markets.
View leaderboards.
Inspect referrals.
Detect suspicious activity.
Export campaign analytics.
Key metrics
Total Registrations
Completed Profiles
Connected X Accounts
X Follow Conversion
Share Conversion
Average Boost Points
Referral Conversion
Daily Active Participants
Markets Traded
Total Prediction Volume
Average P&L
Top Participants
18. Anti-Abuse Requirements
The system should protect against:
Multiple accounts
Detect suspicious account creation patterns and duplicate identities.
Duplicate X accounts
An X account should not be attached to multiple campaign participants unless explicitly permitted.
Referral abuse
Prevent users from referring themselves or repeatedly creating accounts to generate referral points.
Social-action spoofing
A frontend "completed" state should never be treated as sufficient proof.
Point duplication
Every boost action should have a unique reward key:
campaign_id + user_id + boost_action_id
This should enforce idempotent reward processing.
19. Notifications
Recommended notifications include:
Registration
Welcome to Meme Madness. Your daily credit boost journey has started.
Boost completed
Boost unlocked: +20 points.
New round
Round 3 is live. Your daily credits have been refreshed.
Leaderboard
You're currently #12. Keep trading to climb the leaderboard.
Round finished
Round complete. Your final P&L was recorded.
Referral
Your referral joined Meme Madness. +20 points earned.
20. API Outline
Authentication
POST /api/auth/login
POST /api/auth/logout
GET /api/auth/me
Campaign
GET /api/campaigns/meme-madness
POST /api/campaigns/meme-madness/register
GET /api/campaigns/meme-madness/progress
Boosts
GET /api/campaigns/meme-madness/boosts
POST /api/boosts/{boostId}/start
POST /api/boosts/{boostId}/verify
GET /api/users/me/boosts
Referrals
GET /api/referrals
POST /api/referrals/code
GET /api/referrals/{code}
Rounds
GET /api/campaigns/meme-madness/rounds
GET /api/rounds/{roundId}
Markets
GET /api/rounds/{roundId}/markets
POST /api/markets/{marketId}/predict
GET /api/markets/{marketId}/result
Leaderboard
GET /api/rounds/{roundId}/leaderboard
GET /api/campaigns/meme-madness/leaderboard/history
21. Frontend Components
Recommended components:
MemeMadnessPage
├── CampaignHeader
├── RegistrationCTA
├── BoostBuilder
│ ├── BoostProgress
│ ├── BoostActionCard
│ ├── ConnectXButton
│ ├── FollowAction
│ └── ShareAction
├── TournamentOverview
├── DailyRoundCard
├── MarketCard
├── PredictionPanel
├── Leaderboard
├── ReferralPanel
└── Footer
22. UX Principles
The Boost Builder should make three things immediately obvious:
What the user needs to do.
How many points each action provides.
What the user gets for completing the actions.
Every incomplete action should have a clear CTA.
Example:
CONNECT X
Connect the account you'll use for Meme Madness.
+20 POINTS
[ CONNECT X ]
After completion:
✓ X CONNECTED
+20 POINTS EARNED
23. Analytics Events
Track the complete campaign funnel.
Recommended events:
campaign_page_viewed
registration_started
registration_completed
boost_viewed
boost_started
boost_completed
boost_failed
x_connection_started
x_connection_completed
x_follow_started
x_follow_verified
share_started
share_verified
referral_link_created
referral_link_clicked
referral_completed
round_started
market_viewed
prediction_submitted
market_resolved
leaderboard_viewed
campaign_completed
24. Success Metrics
The primary campaign KPIs should include:
Acquisition
Registration conversion rate.
Cost per registered user.
Referral acquisition rate.
Activation
Percentage completing profile creation.
Percentage connecting X.
Percentage completing at least one boost.
Percentage completing all boosts.
Engagement
Daily active participants.
Predictions per participant.
Average session frequency.
Round-to-round retention.
Social
X connection rate.
Follow completion rate.
Campaign share rate.
Referral rate.
Competition
Average daily participants.
Average market volume.
Leaderboard participation.
Percentage of participants returning for subsequent rounds.
25. Recommended MVP
The first release should prioritize:
Phase 1 — Registration
User authentication.
Campaign registration.
Campaign progress persistence.
Phase 2 — Boost Builder
Four boost actions.
Point tracking.
Verification.
Boost ledger.
Phase 3 — Referrals
Invite links.
Custom codes.
Referral attribution.
Referral points.
Phase 4 — Tournament
Daily rounds.
Daily credits.
Prediction markets.
P&L calculation.
Daily leaderboard.
Phase 5 — Battle System
All Stars.
Battle Coins.
Volume comparison.
Round-to-round lineup changes.
Phase 6 — Analytics & Admin
Campaign dashboard.
Participant analytics.
Boost analytics.
Referral analytics.
Fraud monitoring.
26. Product Principle
The central product loop should be:
REGISTER
↓
BOOST
↓
EARN MORE DAILY CREDITS
↓
PREDICT
↓
EARN / LOSE P&L
↓
CLIMB LEADERBOARD
↓
RETURN TOMORROW
↓
INVITE FRIENDS
↓
REPEAT
The Boost Builder is therefore not just an onboarding checklist. It is the acquisition → activation → engagement bridge that connects preregistration with the recurring daily competition.
Reference
Primary product reference:
Cade — Meme Madness Registration / Boost Builder
The reference page currently describes the four boost actions, seven daily rounds, 8 All Stars + 2 Battle Coins, net-P&L ranking, daily credit reset, and referral system used as the basis for this specification. (Cade)
I’ve seen enough crypto projects come and go to know that a loud timeline doesn’t automatically mean a strong project.
That’s why I’m taking a closer look at @themoonclave and $MCV. 🌙
What interests me is the community and the ecosystem being built around the Moonclave idea. Instead of blindly following whatever token is trending today, I’d rather discover projects early, understand what they’re trying to achieve, and watch how the community develops over time.
$MCV is now one of those projects sitting on my radar.
No fake promises. No “guaranteed 100x” nonsense. 😂
Just curiosity, research, and watching the builders turn an idea into something people actually want to be part of.
The funny thing about crypto is that everyone wants to say they were early… but nobody wants to do the homework that comes before being early. 👀
So I’m doing the homework.
Let’s see where @themoonclave takes this.
🌙 $MCV
JOIN HERE: rewards.moonclave.fun/loyalty?referr…#MCV#Moonclave#themoonclave
“Adeleke is already winning the election, but he should not sleep. APC has seen they are losing and are trying to do funny things” — Primate Ayodele alleges
There’s a difference between simply buying a token and actually becoming interested in the ecosystem behind it.
That’s what caught my attention with @themoonclave. 🌙
solana:76vtyUXAedrSAWJetcdQx4tZmKK9GfmhnCXQq55rpump has the kind of narrative that makes you want to look beyond the ticker and understand what the community is building, where the ecosystem is heading, and why people are paying attention.
Crypto is already full of noise, so I’m not here to scream “BUY NOW 🚀” every five minutes 😂.
I’d rather watch, learn, participate, and see whether Moonclave can turn its vision into something that keeps people around for the long run.
One thing is certain: if everyone is waiting until the Moon is crowded before looking for a seat, I’d rather know where the entrance is beforehand. 👀🌙
@themoonclave solana:76vtyUXAedrSAWJetcdQx4tZmKK9GfmhnCXQq55rpump
JOIN HERE: rewards.moonclave.fun/loyalty?referr…#MCV#Moonclave#themoonclave
Crypto moves fast, but I’ve learned that the best way to avoid getting lost in the noise is to actually pay attention to the projects building something interesting.
That’s why @themoonclave has been on my radar lately. 🌙
$MCV isn’t just another ticker I want to see pumping on my timeline. What interests me is the ecosystem, the community around it, and the bigger vision behind Moonclave.
There are thousands of tokens competing for attention every day, so when a project can create a narrative strong enough to make people stop scrolling and ask, “Wait… what is this?”, that’s worth watching.
I’m not saying I have a crystal ball 😂, but I’m definitely keeping my eyes on $MCV and seeing where the Moonclave journey goes.
Maybe the real alpha is simply discovering the destination before everyone starts asking for directions. 🚀🌙
@themoonclave
JOIN HERE: rewards.moonclave.fun/loyalty?referr…#MCV#Moonclave#themoonclave
Everyone is chasing the next big narrative, but I’ve been paying attention to what’s happening with @themoonclave 👀🌙
What caught my attention is the idea behind $MCV building around a community and ecosystem that feels like it’s trying to turn the “Moon” from just a crypto meme into an actual destination for people who want to participate early.
And honestly, that’s what makes these projects interesting to me. It’s not always about shouting “100x” every five seconds 😂. Sometimes it’s about discovering a project, understanding the vision, watching the community grow, and deciding whether the ecosystem deserves a place on your radar.
$MCV is definitely one I’m keeping an eye on.
The Moon looks far away, but crypto has taught me one thing: sometimes the earliest passengers are the ones who start packing before everyone else realizes there’s a trip. 🚀🌙
@themoonclave
JOIN HERE: rewards.moonclave.fun/loyalty?referr…#MCV#Moonclave#themoonclave
🚨 $𝟭𝟬,𝟬𝟬𝟬 𝗖𝗼𝗺𝗺𝘂𝗻𝗶𝘁𝘆 𝗖𝗮𝗺𝗽𝗮𝗶𝗴𝗻 𝗶𝘀 𝗟𝗶𝘃𝗲! { ending in 22 days}
Moonclave just launched a 30 day community campaign with $10,000 in rewards for creators and active community members.
@themoonclave
🏆 Rewards include:
🥇 1st — $1,500
🥈 2nd — $1,100
🥉 3rd — $850
🏅 4th — $650
🏅 5th — $450
🏅 6th–10th — $350 each
🏅 11th–25th — $180 each
🏅 26th–50th — $100 each
🏅 51st–100th — $70 each
To participate: join using the link below
rewards.moonclave.fun/loyalty?referr…
• Sign up through the Reward Hub.
• Join the Moonclave Discord and claim the Moonbound role.
• Link your X account, Discord, and wallet.
• Share content about Moonclave and $MCV.
• Complete daily engagement tasks like likes, comments, and reposts.
• Earn additional points by joining gaming nights and community events.
The campaign runs for one month, so consistent participation can make a difference. { DONT FADE}
#moonclavecard#mcv
We're looking for a limited number of users to participate in upcoming testing sessions.
To be considered:
• Repost this post • Fill out the form below
Selected participants will be contacted directly and invited to test new CoinHunter features .
Apply here: docs.google.com/forms/d/e/1FAI…�
Help shape the future of CoinHunter. We look forward to hearing from you.
2K Followers 2K FollowingFinancial consultant/Athletics/Leader/Dad/Husband/Uriri MP 2027(aspirant)/ Hater of https://t.co/M3okBll8dU DM for forex or Crypto.
19K Followers 19K FollowingLifelong Evertonian, Bitter Blue, Father of 3. Chosen not manufactured. Home and Away.
Will chat anything football and a bit more as well.
10K Followers 10K FollowingJust a Noob surviving in the pro Crypto & AI world 💯 | Web3 builder | AI creative | Good vibes only!
Open for Collabs 📥
TG: @SHsabzar
4K Followers 4K FollowingMedical student at FUTA | Web3 enthusiast | @TheDAOLabs member | Passionate about growth, innovation, and making a positive impact.
2K Followers 5K FollowingAI Agent giúp doanh nghiệp tự động hóa Marketing, CSKH và Bán hàng trên nhiều nền tảng.
🚀 Facebook • TikTok • Instagram • Zalo OA • CRM
1K Followers 388 FollowingI test products and give honest reviews to educate
Building : @nftgoogly • @axionprotocol
@openchainacad @traders_grail
Growth/Ops: @thetrustedprop
$YM $NQ
19K Followers 19K FollowingLifelong Evertonian, Bitter Blue, Father of 3. Chosen not manufactured. Home and Away.
Will chat anything football and a bit more as well.
69K Followers 338 FollowingDisclaimer: not related to seyi vibez, this is NOT him ..Billionaire in every currency 💴 Alhamdulillah || Parody || Fan Page || Commentary
3.3M Followers 444 Following📝 The biggest and the best. Bringing you all the latest news and updates | 📩 [email protected] | Follow → @TNLtips @TNLdotcom | @Stake 18+ gambleaware
1K Followers 17 FollowingThe official account of https://t.co/PT0DwRiQVE |
Ultra-fast real-time scores, results & AI prediction for all leagues.
Available on 💻 and 📱
1.9M Followers 228 Following📲 Independent hub for all your #RealMadrid, #UCL — updates, news, statistics, analysis and much more. Email: [email protected]
5K Followers 49 FollowingBet in group chats. Live on iMessage, Telegram and web.
Backed by @alliance, @fabric_vc, @animocaventures, @foundersfactory. No token.