> ## Documentation Index
> Fetch the complete documentation index at: https://docs.boltliquidity.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Welcome

export const GlitchWord = () => {
  const words = ['BUILD', 'DEPLOY', 'INTEGRATE', 'SHIP', 'EXECUTE', 'SCALE', 'SUPERCHARGE', 'POWER', 'TRADE', 'SWAP', 'ROUTE', 'SETTLE', 'QUOTE', 'OPTIMIZE', 'UNLOCK', 'LAUNCH', 'OUTPERFORM', 'RETHINK', 'DISRUPT'];
  const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%&*+=/<>?-|';
  const [display, setDisplay] = React.useState('BUILD');
  React.useEffect(() => {
    let current = 0;
    const glitch = target => {
      let iter = 0;
      const interval = setInterval(() => {
        setDisplay(target.split('').map((char, i) => {
          if (i < iter) return target[i];
          return chars[Math.floor(Math.random() * chars.length)];
        }).join(''));
        if (iter >= target.length) {
          setDisplay(target);
          clearInterval(interval);
        }
        iter += 0.4;
      }, 40);
    };
    const loop = setInterval(() => {
      current = (current + 1) % words.length;
      glitch(words[current]);
    }, 2500);
    return () => clearInterval(loop);
  }, []);
  return <span style={{
    color: "#FFED2C",
    fontFamily: "'PPNeueCorp', sans-serif"
  }}>{display}</span>;
};

<div style={{textAlign: "center", maxWidth: "1080px", margin: "0 auto", padding: "1rem 2rem 3rem"}}>
  <div style={{color: "#FFED2C", fontSize: "0.9rem", fontWeight: "500", marginBottom: "0.75rem", fontFamily: "'Saans', sans-serif", letterSpacing: "0.05em"}}>
    Welcome to Bolt's Documentation!
  </div>

  <div style={{fontSize: "4rem", fontWeight: "900", lineHeight: "1", marginBottom: "1rem", fontFamily: "'PPNeueCorp', sans-serif", textTransform: "uppercase", letterSpacing: "-1px", color: "#fff"}}>
    <GlitchWord /> WITH BOLT
  </div>

  <div style={{color: "#888", fontSize: "1.1rem", maxWidth: "1080px", margin: "0 auto", fontFamily: "'Saans', sans-serif"}}>
    Integrate zero slippage execution for aggregators, builders, and market makers.
  </div>
</div>

<Frame>
  <img src="https://mintcdn.com/boltliquidity/WooR6lPPxky-vf1j/images/BoltZeroSlippageBannerv2.png?fit=max&auto=format&n=WooR6lPPxky-vf1j&q=85&s=f998a445089b9c7bee9efd1fb3921b7b" alt="Bolt Zero Slippage Bannerv2" width="3000" height="1000" data-path="images/BoltZeroSlippageBannerv2.png" />
</Frame>

Bolt Liquidity is a <Tooltip tip="A proprietary automated market maker that uses oracle-referenced deterministic pricing instead of bonding curves or order books.">prop-AMM</Tooltip> that **decouples pricing from liquidity depth.** By using oracle-referenced deterministic pricing and treating pools as settlement infrastructure rather than pricing engines, Bolt delivers zero-slippage execution that is fully on-chain, composable, and radically capital-efficient. **The price you see is the price you get.**

<Note>
  **29.7x daily inventory turnover — 23x the Sui DEX peer average.** Across 16 SUI/USDC pools spanning 8 protocols and 4 AMM architectures, the volume-weighted peer turnover is 1.28x. The highest single peer pool achieves 2.70x. Bolt's oracle-referenced architecture produces a turnover rate that is structurally different, not incrementally better. This is what happens when pricing does not depend on pool depth.
</Note>

## Start here

<CardGroup cols={2}>
  <Card title="What is Bolt?" icon="bolt" href="/what-is-bolt">
    Understand the category, the architecture, and what makes Bolt different from every alternative.
  </Card>

  <Card title="Quick Start" icon="rocket" href="/5-minute-integration">
    Go from install to your first swap simulation in under 5 minutes with the Sui SDK.
  </Card>

  <Card title="For Integrators" icon="handshake" href="/dex-aggregators">
    Aggregators, lending protocols, foundations, and market makers: find your integration path.
  </Card>

  <Card title="Contact & Support" icon="messages" href="/contact">
    Talk to the team. Developer Telegram, partnership inquiries, and technical support.
  </Card>
</CardGroup>

<script
  dangerouslySetInnerHTML={{
__html: `
window.addEventListener('scroll', () => {
const navbar = document.getElementById('navbar');
if (window.scrollY > 10) {
navbar.classList.add('scrolled');
} else {
navbar.classList.remove('scrolled');
}
});
`
}}
/>
