Skip to main content

Win routes you could not win before

Aggregators compete on execution quality. Routes are won or lost based on which liquidity source offers the best price for a given trade. On large trades, traditional AMM pools degrade because slippage increases with trade size. This means aggregators are limited by the depth of the pools they route through. Bolt changes this equation.

What Bolt gives you

Zero slippage on every route through Bolt. Trade size does not affect execution price. Your users get better fills. You win more routes.
Every swap executes at oracle-referenced prices, regardless of size. This removes the trade-off between size and execution quality. On large trades where traditional pools would slip hard, Bolt becomes increasingly attractive to your routing engine.

How integration works

1

Install the Bolt SDK

Get started with npm or yarn:
npm install @boltliquidity/sdk
See the 5-Minute Integration guide for full setup.
2

Query available pairs

Call getAssets() to see the pairs supported on Sui:
const pairs = await bolt.getAssets();
This gives you the complete list of tradeable pairs in the Bolt network.
3

Request a quote

Call getQuote() with the pair, amount, and direction:
const quote = await bolt.getQuote({
  from: "SUI",
  to: "USDC",
  amount: "1000000",
  direction: "exact_in"
});
Bolt returns the exact output amount. No slippage estimate needed.
4

Execute the swap

Pass the quote to executeSwap() for atomic on-chain settlement:
const txn = await bolt.executeSwap(quote);
Settlement happens in a single transaction. Your user receives the quoted amount.
5

Route comparison

Compare Bolt quotes against other liquidity sources in your routing engine. On large trades, Bolt’s zero-slippage execution will win more routes than traditional pools.

Live on Sui

FlowX and Aftermath Finance are already routing through Bolt. These integrations demonstrate that Bolt wins routes in production, not just in theory. Both platforms saw immediate gains in execution quality by adding Bolt to their routing logic.

The business case

Bolt wins routes that traditional AMMs lose, especially on larger trades. Because trade size does not affect execution price, Bolt becomes increasingly competitive as trade size grows. Your routing engine gains a new liquidity source that thrives on the trades where other pools are weak.
Single SDK. No liquidity pool management. No oracle infrastructure to maintain. Integration measured in days, not weeks. Your engineering team can ship this quickly and move on to other priorities.
$125M+ volume on $25K liquidity. This efficiency enables Bolt to offer competitive pricing without requiring a deep capital commitment from the aggregator. You route through a source that doesn’t need massive TVL to function.
If you are evaluating Bolt for your routing engine, the fastest path is the 5-Minute Integration guide. You can go from install to simulated swap in one sitting.

5-Minute Integration

Get up and running with Bolt in under five minutes.

Talk to the Team

Questions about routing, integration, or execution strategy? Reach out.