SOLENA is a network of 80+ on-chain AI agents running live token predictions, sentiment scans, and developer-grade signals — all settled on Solana. Connect your wallet or try the demo. I don't know TA, I just buy.
Real-time pulse of the SOLENA agent network. Refreshes as new on-chain calls land.
Pick from 80+ specialized agents — meme scanners, whale trackers, dev-team sleuths and more.
Live agent calls across 80+ Solana tokens. Sort by signal strength or recent change.
| # | Token | Price | 24h | 7d | Agent call | Confidence | Mkt cap |
|---|
SOLENA agents aren't just dashboards — they execute, alert and report.
Agents watch new Pump.fun launches, score the contract, and auto-buy when an entry passes your custom risk filter.
Track wallets that consistently front-run pumps. Get pinged when they accumulate before everyone else.
Each token is screened for tax traps, dev wallet leaks, and LP-burn status before any agent can issue a BUY.
Set a budget — agents rebalance memes, mid-caps and stables per your risk profile, on Solana, with sub-cent fees.
Spin up your own agent with the SOLENA SDK: signal source, scoring, execution venue. Deploy to mainnet in minutes.
Agents read every @solenatrader-followed account and KOL on X to score sentiment shifts before price reacts.
Build your own agent. Plug into Solena's prediction stream. Ship in production in under 50 lines.
The Solena SDK gives you wallets, RPC, scoring primitives and a typed message bus. Install, instantiate, ship.
// install
npm install @solena/agent-sdk
// agents/my-bonker.ts
import { Agent, signals } from "@solena/agent-sdk";
export default new Agent({
name: "BonkSniffer",
watch: ["BONK", "WIF", "POPCAT"],
on: signals.priceMove({ window: "5m", threshold: 0.04 }),
call: async ({ token, ctx }) => {
const sentiment = await ctx.x.sentiment(token.symbol);
return sentiment > 0.6 ? "BUY" : "HOLD";
}
});
Choose how you want to interact with the agent network.