The fast venues trust a single sequencer to order your trades. The safe venues wait for a block. Gilt does neither — bilateral edges match in under a millisecond, then settle through a DAG no single actor can reorder. That's how 0DTE options work on-chain for the first time.
Four stages. Sub-millisecond at the edge, ~500ms to root finality. Each layer handles what it's best at, and nothing else.
Order-to-match latency, order of magnitude. Sub-millisecond edge matching is how a 0DTE options market on-chain is even possible.
Funds live in on-chain Cudo Contracts, not a company wallet. Any position can be force-settled to the root layer without permission — the exchange can't freeze you.
No single sequencer to bribe. Orders are bilateral on edges — invisible until they match. DAG consensus finalizes bundles without a linear block ordering. No frontrunning, no sandwich, no orderflow auctions.
One margin pool for perps, options, and event markets. A long put offsets a long perp. A NO share on "BTC > $90k" offsets upside-breakout risk. Everywhere else, you double-collateralize.
AI agents and bots trade with protocol-enforced scopes — not API keys. Position caps, leverage caps, drawdown stops, and session expiry are enforced by the matching engine. Revoke with a signature.
agent.scope({ budget: $10_000, maxLeverage: 5, markets: ["BTC", "ETH", "SPY"], canWithdraw: false })
Everything on Gilt is a program. Vaults, copy-trading, structured products, agents — they plug directly into the same margin pool and settlement path as our own UI.
Compose options, perps, and margin into a single vault token anyone can deposit into. The vault auto-rolls weekly, collects premium, hedges delta, and distributes yield — all as one atomic on-chain program.
vault.deposit(USDC) options.sellCall(BTC, strike, "0DTE") perps.hedgeDelta(BTC, -0.3) // auto-rolls, yield → depositors
Follow a trader's multi-asset strategy with on-chain spending limits and instrument restrictions. The trader can't steal your funds — delegation is scoped and revocable at the protocol.
delegate.follow(trader, { maxSize: $5000, instruments: ["PERPS", "OPTIONS"], canWithdraw: false }) // on-chain enforcement, not trust
Give an agent scoped access to place multi-leg trades across perps, options, and event markets. It reads sentiment, manages risk, and executes — inside a budget and leverage cap enforced by the matching engine.
agent.onPriceMove(ETH, -10%, () => { options.buyPut(ETH, atm, "1d") perps.reduceExposure(50%) }) // scoped agent, auto-hedge downside
Build a prediction-market app, a pro options terminal, or a mobile-first perps experience. Everything sits on the same order books and margin pool as Gilt itself — no cold-start problem.
import { MarginVault, OptionsEngine, EventMarket } from "@gilt/sdk" // Your UI. Shared liquidity. // No cold start. No custody risk.
0DTE options, perps, and event markets — all from one non-custodial account.