Solana Frontier Hackathon

The Bloomberg
Terminal
for
Solana agents

Your agent knows what @theo just bought before his followers do. One API call returns the highest-conviction KOL trade in the last 60 seconds. $0.001 in USDC. No key, no account.

--
KOL wallets watched
$0.001
per signal
<400ms
block to signal
x402
pay-per-request

What your agent sees right now

LIVE
Loading live signals...
How It Works

Your agent gets smarter
in three steps

01

We watch

Hundreds of KOL wallets monitored 24/7 via Helius. Every swap on Jupiter, Raydium, and Meteora — captured in under 400ms.

02

We score

Each trade gets a 0-100 conviction score. How much did they buy? Do they hold or flip? Have they been rugged before? Five signals, one number.

03

Your agent acts

One API call. The response tells your agent exactly what was bought, by whom, and how confident they are. Your agent decides what to do next.

The API

One endpoint. One penny. One answer.

No API key. No account. No subscription. Your agent pays $0.001 in USDC per request via the x402 protocol. That's it.

GET /v1/signals$0.001 USDC per call
// Request
const res = await fetch("https://sentric.sh/v1/signals", {
  headers: { "X-402-Payment": signedUsdcPayment }
});

// Response
{
  "kol": "@theo",
  "action": "BUY",
  "token": "POPCAT",
  "mint": "7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr",
  "conviction": 94,
  "size_sol": 142.5,
  "timestamp": 1715284800
}
Agent Kit Pluginnpm install @sentric/agent-kit
// Two lines to add KOL intelligence to any Solana agent
import { SentricPlugin } from "@sentric/agent-kit";

const agent = new SolanaAgentKit(wallet, rpc).use(SentricPlugin);

const signal = await agent.getBestSignal();
if (signal.conviction > 90) {
  await agent.trade(signal.mint, signal.size_sol);
}
Under the Hood

What makes the score real

Not vibes. Five on-chain metrics weighted into a single conviction number.

40%

Position Size

How much of their portfolio did they put in? A $500 trade from a $1M wallet is noise. A $50K trade is conviction.

20%

Hold History

Do they hold for days or flip in minutes? Diamond hands score higher. Serial flippers get discounted.

15%

Historical PnL

Has this wallet actually made money? Past returns on similar tokens weight the score up or down.

15%

Rug Avoidance

How often have they been rugged? Wallets that consistently avoid scam tokens earn trust in the scoring model.

Live on Devnet

Give your agent
an edge

Open source. One endpoint. The highest-conviction KOL trade, delivered to your agent in milliseconds.