r/Solana_Memes

▲ 6 r/Solana_Memes+3 crossposts

What if the next memecoin meta isn’t something new, but a RETURN TO MEMES?

I’ve been involved with Return to Memes ($RTM) for a while now, and I wanted to share the story here because I think the idea behind it is pretty different from what most memecoins are trying to do right now.

Every few weeks crypto seems to need a new narrative:
AI agents, celebrities, politics, new launch mechanics, new buzzwords. Meanwhile, the thing that originally made memecoins fun has almost become secondary: the memes themselves.

That’s basically the entire philosophy behind RTM: **RETURN TO MEMES.**No fake utility, no pretending we’re revolutionizing finance, and no complicated roadmap designed to make a memecoin sound like a tech company.
It’s a memecoin built around meme culture, community, content and collaboration.

The project was basically brought back from the dead

RTM was taken over by the community at around a $3K market cap. Since then, the dev/lead (@elchefdesol on x) has stayed involved and continued building instead of treating it like a quick launch and disappearing.

One of the more interesting things he built is an
AI-powered bot that automatically claims the rewards generated by the project, uses them to buy back $RTM and then adds those tokens back into liquidity.
In other words, instead of manually claiming rewards and deciding what to do with them every time, the process can continuously feed value back into the ecosystem — essentially creating an automated compounding engine for RTM liquidity.
He’s also been working directly with the community, supporting content creators and building relationships with other memecoin communities.
More than $130K in creator fees has already been put back into the project through things like liquidity, buybacks, LP locks/burns and other community-focused actions.

That’s probably one of the biggest reasons I personally stayed involved. You can say anything on Twitter, but watching what someone actually builds and what they do with the money is much more interesting.

Then there’s the Ansem (@blknoiz06 on x) connection

This is probably the part that gets the most attention. Ansem has posted and interacted with RTM multiple times. Not one random mention or one reply that the community has been milking for months, he has shared RTM-related content on multiple occasions and has continued interacting with the narrative.
He also holds roughly 10% of the RTM supply, and the connection didn’t stop at social media. RTM also created liquidity paired directly with $ANSEM.
So instead of the relationship existing purely through posts and screenshots, part of it is actually connected through liquidity on-chain. Personally, I think that makes the story much more interesting.

The community is probably the actual “utility”

RTM has people creating content every day - memes, videos, artwork, 3D models, physical figurines, the Black Bull character and collaborations with other communities.

We’ve also been trying to do something that memecoin communities don’t always do very well: support each other.
Instead of treating every other token as competition, RTM content regularly includes and supports other established meme communities, and in some cases that support has started coming back the other way.
$ALUN is a good example. Our community regularly included them in RTM content, supported their posts and gave them exposure. Over time their community and dev started returning that support and sharing RTM as well.
That’s what collaboration in this space should look like, in my opinion. Not paying someone for one tweet and not forcing a partnership announcement - just communities actually interacting with each other.

I’m obviously not pretending to be neutral

I’m involved with the RTM community, so obviously I want the project to succeed. This isn’t financial advice, and I’m not posting this pretending I randomly discovered some hidden gem yesterday.
I just think the experiment itself is interesting. Can a memecoin build a long-term identity around meme culture itself, instead of constantly abandoning its narrative to chase whatever happens to be trending that week?

Because maybe memecoins don’t need another completely new meta. Maybe the original meta was already good enough.

Return to Memes. $RTM

Ca:
3d1qHSAkQhoN7kN1C6tvpAArCkXWxwYdBng6taXCDM6u

X: @rtmsol

u/No_Relative7450 — 1 day ago
▲ 17 r/Solana_Memes+5 crossposts

Update on DeFade (the memecoin analyzer I posted here a few months ago): 4 chains, 29 modules, and the signal engine I'm testing that lost 96% on its

I posted here a few months back about DeFade, the memecoin analyzer I've been building. Plenty has changed, so this is an update - but the part worth your time isn't the feature list. It's that I tried to turn the scanner into something that calls entries, the first attempt lost almost everything, and the post-mortem taught me more about this market than any of the wins did.

Part 1 - the scan

The core product is still the same one-line pitch: paste a contract address, get the truth about it.

A scan returns a rug pull probability from 0 to 100 - a weighted composite with kill-switch floors, so a single fatal condition can't be averaged away by a dozen healthy-looking ones - plus every piece of evidence that produced it. Roughly 29 modules, 13 of them free:

Distribution - holder concentration with the pool, burn address, lockers, CEX wallets and contracts classified out. This matters more than it sounds: read a raw top-10 list and you'll count the liquidity pool as a whale and panic over a perfectly normal token. There's also an exit liquidity calculator (what actually comes out if you try to sell your bag into the current book) and a bubble map.

Coordination - bundle detection with a launch window pass plus a delayed sweep hours later, accounted on peak net exposure rather than naive buy totals. Sniper bots, Sybil band clustering, an insider network graph, a cross-funding graph, and multi-hop funding-origin tracing that walks back toward a KYC'd source.

Actors - creator intelligence and serial-deployer detection, dev wallet tracking, fresh wallet detection, smart money and copy-trade tracking, plus a reputation ledger for deployers and wallets that fills in as scans land.

Market - LP burn and lock verification (including v3/v4 position-based liquidity), lifecycle stage, social sentiment timeline.

Two examples of why this is harder than it looks, both real bugs I shipped and then had to fix:

  • Bundlers stopped holding. The obvious way to measure a bundle is "how much supply did these coordinated wallets buy, and are they still holding it". Then I hit a token where the bundle wallets sold and forwarded the proceeds to a collector in the same transaction, so extraction measured as zero. Then the exact inverse: tokens hop to fresh wallets first, and those fresh wallets do the dumping, so the original bundle looks like it's still holding while the supply is already gone. Both needed one-hop follow accounting, credited to a separate bucket so the numbers stay honest.
  • A bot made an innocent token look like a serial rugger. One token came back flagged with "25 prior rugs" from its deployer family. It was a false positive: a permissionless MEV bot that cranks bonding-curve -> AMM migrations buys atomically inside the pool-creation transaction, so it appears as an early insider on hundreds of unrelated launches. Fixing it meant detecting the migration instruction deterministically rather than inferring intent from timing.

It runs on Solana, Ethereum, Base and Robinhood Chain, in the browser, as a Chrome extension that scans whatever token page you're already on, as iOS and Android apps, as a Telegram bot, or as an API if you are building something. Free tier is 3 full scans a day with all the core modules, no card, no account needed for the basic path.

Around the scanner there's a public rug database of everything flagged, a survival tracker (how long scanned tokens actually lived, using drawdown-based death detection rather than waiting for a zero), deployer and wallet lookup, and shareable receipts for calls that aged well or badly.

Part 2 - Signals, which is in testing and not live yet

A scanner answers "is this dangerous". I wanted to know whether the same data could answer "is this attracting real capital". So I built a signal pipeline - market polling for momentum, liquidity behaviour and volume quality, combined with the scan snapshot for holder and dev quality - with a forced outcome ledger. Every fire is dated, and its forward return is tracked at 1h/6h/24h/48h whether I like the result or not.

First cohort: 17 fires, median return -96% at 24h.

The post-mortem is the useful part, because the losses were not what I assumed:

  • They weren't rugs. Only 1 of the signalled tokens ever entered my own rug database, and several are still alive today. I had built a rug detector and pointed it at a problem that wasn't rugs.
  • They were tops. Every bad fire happened mid-vertical - the 1h change at the moment of firing ranged from +137% to +578%. The three fires that actually ran afterwards had 1h changes between +3% and +28%. My momentum scoring treated "already went up a lot" as its strongest positive signal, which is a top-buying machine with extra steps. Momentum now inverts past the extremes: beyond +120% on the hour it's capped and labelled "PARABOLIC - LATE".
  • Thin-book markups look identical to real moves. A 50%+ hourly move with under 15% liquidity growth is someone marking up an empty order book. That was the signature of the worst fires: price up several hundred percent on a stable $19–33k pool.
  • High turnover is not wash trading. I nearly shipped a rule rejecting anything trading over 5x its market cap in a day. It would have rejected 30% of the candidate pool and every signal that ever worked - one genuine runner did 18.5x turnover and ran 3.3x. The real wash signature is turnover with no consequence: high volume plus a price that went nowhere over six hours. Over one hour, even a real runner looks flat between legs.
  • The deployer check was silently missing. Two components disagreed about a response shape - one returned the reputation nested, the reader expected it flat - so serial ruggers scored as CLEAN with no error logged anywhere. Every fire in that cohort was made without a signal it claimed to be using.

Replaying the corrected rules against all 17 historical fires blocked 12 of them, including every bad one, while preserving the three that ran.

Where it stands after the fixes: 9 signals, 9 distinct tokens.

Peak multiple from the moment each signal fired: 56.8x, 37.9x, 16.2x, 15.9x, 6.6x, 4.6x, 3.5x, 1.5x, 1.0x. That's 78% reaching 2x and 56% reaching 5x, with a median move of +31% at 1h and +208% at 6h. The two that didn't work: one is flat, one drew down 73% and is the clear loser of the set. A third of the set drew down 30%+ at some point even while working, which is the number I'd actually pay attention to if I were trading these - peak multiple is not what you realise, it's what was theoretically on the table.

Nine calls is not evidence. It's an early read that the entry-quality rules are doing something, on a sample small enough that two bad weeks would erase it. That's exactly why the ledger is built into the product instead of screenshotted when convenient, and why Signals is still in testing behind a gate rather than launched: I'd rather be publicly wrong on a timestamp than sell a backtest. It opens when the record earns it.

Free either way

The scanner is free at 3 scans a day with the core modules unlocked, which is enough to check a coin before you ape it. Paid tiers exist for people working the feed all day, but the free path is the one I'd want a first-time visitor to use.

defade.org - happy to answer anything technical about the detection, and genuinely curious what people think the momentum inversion gets wrong, because that's the rule I'm least sure about. A few things in this post came from comments on the last one.

Still slightly stunned by this part: 350+ people now pay for it, over 1,000 use it free, and 22 are on API keys - which for something I built to check my own bags is not where I expected to end up.

https://preview.redd.it/cytx3y4hctjh1.png?width=1310&format=png&auto=webp&s=f913372b2adf10d3296318f18a01c03f229ff751

reddit.com
u/O_Parent — 2 days ago
▲ 18 r/Solana_Memes+1 crossposts

$PMV Still running

It’s only a matter of time before this goes parabolic. And you really are gonna wait for shill-fluencers to call it?

u/SubstantialOption410 — 3 days ago
▲ 11 r/Solana_Memes+7 crossposts

JiC Raffle!

🔊 - Good Morning! Jump_in_Jack here!

💡- In light of some stuff coming up in the not so distant future. I made a new role on our discord to identify who is running bots.

📤 - Once every two weeks I will have a raffle draw for a lucky JiJbot User, on our discord, to recieve a FREE Gominer.

You will need to sign up to Gominer to receive it through the referral link unless you already have a Gominer account.

https://gomining.com/?ref=X71MRYX

Thank you all for being part of JiJ and JiC.

📰 - First Draw will be Tuesday Aug. 25th 2026

So head over to https://www.jumpinjack.ca to download your FREE JiJbot and get rdy to win a gominer.

Visit the announcement section on our discord --> https://discord.gg/VbMS4z9qNM be added to the draw.

~JiJ

u/Jump_in_Jack — 9 days ago