How to recover from a burner wallet on Solana
A practical guide to recover froming a burner wallet. Built from how MicroEdge actually does it — scanner + cost-dominance gates + Jupiter routing.
why this is hard
A burner wallet sits behind several layers of noise on Solana. Most explorers show after-the-fact data; by the time a pattern is visible to humans, the move is largely done. The way to recover from it is to compute the pattern programmatically from a real-time stream and gate aggressively against false positives.
the MicroEdge approach
- Pull live observations every ~12s from Helius parsed transactions + Jupiter routing.
- Maintain rolling baselines (1m, 5m, 15m, 1h) excluding the current observation.
- Score the observation against five strategies, each producing 0–100.
- Run hard rejection filters: liquidity floor, spread cap, freeze auth, age, holders.
- Run cost-dominance gate: expected profit must exceed fixed Solana toll ($0.0076/trade).
- Run payoff-viability gate: TP/SL pair must be achievable at empirical win rates.
- Classify: SKIP / WATCH / PAPER / PROBE_CANDIDATE / STRIKE_CANDIDATE.
- Fire to Telegram / Discord premium channel within seconds; delayed 15m to free.
manual approach (if you're not subscribing)
If you want to do this yourself, here are the signals worth watching for a burner wallet:
- 5m volume > 5× the trailing 5m baseline
- Unique buyers in 5m > 3× the trailing baseline
- Liquidity stable or increasing (not the spike + drain pattern)
- Jupiter route depth deep enough for your size
- Spread < ~80 bps
- Price not already +25% in 1m or +80% in 5m (late-chase)
where it breaks
Tools that try to recover from a burner wallet usually fail one of three ways:
- Late entry. By the time the alert hits, the price has already moved 30%+.
- Fake volume. Wash trading inflates volume; few unique buyers means it's not real.
- Toll dominance. Even with a 3% move, fees + priority + slippage eat $0.0076 — at $1 trade size, that's 76 bps you have to clear before any profit.
what to do once you spot it
The hardest part isn't recover froming — it's executing. Once a real signal fires on a burner wallet, latency matters. MicroEdge Pro subscribers can use the API to integrate signals into their own bots. Manual traders can use the Phantom-signed execute button on the dashboard.
faq
Does MicroEdge guarantee these alerts work?
No. Every alert is a hypothesis. Most strategies have negative expectancy at small size — the gates exist to reject those, but no system is perfect.
How often does a burner wallet fire?
Highly variable. Active markets: 5–50/day. Quiet: 0–5/day. We don't manufacture signals to look busy.
Is this just a copy-trade bot?
No. We don't follow specific wallets. We score on-chain state changes and gate against the math of fees + slippage.