Skip to content
View quantasolana's full-sized avatar

Block or report quantasolana

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
quantasolana/README.md

TICK

Block intelligence for Solana agents.

Slot windows open and close in 400ms. No human reacts that fast. TICK gives your agent real-time leader schedule awareness — so every transaction fires at the optimal moment.


The Problem

Every agent on Solana submits transactions the same way: fire and hope.

No awareness of who's producing the next block. No scoring of MEV risk. No timing logic. Just send and pray.

TICK changes that.


How It Works

The Solana leader schedule is deterministic and public. TICK reads it in real time, scores each upcoming validator on MEV aggression, inclusion rate, and client type — then exposes the result as three simple tools your agent calls before any transaction.

const window = await tick.get_best_leader()
// → { slot: 312847214, eta_ms: 1200, validator: "Triton-2", client: "Firedancer", mev: 8, inclusion: 99.6 }

Tools

Tool Description
get_best_leader() Next ideal slot, ETA in ms, validator profile
wait_for_clean_window() Blocks until MEV score clears and inclusion rate holds
score_current_leader() 0–100 risk score on the live leader
subscribe_alerts() Push events as conditions change

Client Behavior

Client Notes
Firedancer Best inclusion rate, lowest MEV. Send now.
Jito High MEV capture. Use for bundles, avoid for swaps.
Agave Baseline. Predictable, slower block packing.
Rakurai Aggressive scheduling. High MEV, high throughput.

Install

clawpkg install tick-skill

Send on the right tick.

Popular repositories Loading

  1. ModSecurity ModSecurity Public

    Forked from owasp-modsecurity/ModSecurity

    ModSecurity is an open source, cross platform web application firewall (WAF) engine for Apache, IIS and Nginx that is developed by Trustwave's SpiderLabs. It has a robust event-based programming la…

    C++

  2. quantasolana quantasolana Public

    Quanta → Autonomous market making infrastructure for AI agents on Solana

    TypeScript

  3. sdk sdk Public

    TypeScript SDK for Quanta protocol — agent-native market making on Solana

    TypeScript

  4. tick-core tick-core Public

    On-chain scoring program for Solana validator reputation and MEV risk.

  5. tick-sdk tick-sdk Public

    TypeScript SDK for TICK — get_best_leader(), wait_for_clean_window(), score_current_leader()

  6. tick-docs tick-docs Public

    Official documentation for TICK block intelligence.