Skip to main content

Trading

Pairband exposes one buy/sell flow that routes to the correct venue based on token status. Limits are a separate path onto the on-chain book after graduation.

Venues at a glance

Token statusBuy / sell routes throughPrice discovery
curveVirtual x·y=k bonding curveCurve reserves (80 USDC × 1B tokens)
graduatedPairbandBookPairbandPairCLOB price-time, then AMM getAmountOut

You do not pick the venue manually — the launchpad/router selects it from on-chain state.

Market orders

On the curve

  • Pay USDC to receive tokens (buy) or send tokens to receive USDC (sell)
  • Slippage is bonding-curve slippage; check the quote before confirming
  • Fees (USDC): 1.0% protocol + 0.5% creator

After graduation

Market flow:

  1. Match the book — walk resting limits at best price, FIFO at each level
  2. AMM fallback — residual size swaps against the locked pair at 0.30%

The Uniswap-style pair uses constant-product math with fee taken from input; liquidity cannot be withdrawn (LP burned).

Limit orders

Available only when status == graduated:

SideEscrowBehavior
BidUSDCRests on PairbandBook; fills when a sell crosses your price
AskTokensRests on PairbandBook; fills when a buy crosses your price
  • Cancel — returns unfilled escrow to the maker
  • Partial fills — supported; remainder stays on book
  • Ordering — price-time via on-chain linked list (no centralized matcher)

Fees summary

VenueFeePaid inNotes
Token launch$1.00 flatUSDC on ArcOne-time at create — see Business model
Bonding curve1.0% protocol + 0.5% creatorUSDCSkimmed on curve trades
Uniswap pair0.30%Input tokenStays in pool reserves
Vault agent proposal$0.25 flatUSDC on ArcWhen policy.agent is set
Code cap2.00% maxNo fee charged on failed swap

Full economics (treasury routing, agent incentives, examples): Business model.

UI chips (preview app)

The preview surfaces venue and state with small labels — useful when demoing:

ChipMeaning
CurveToken still on bonding curve; graduation not reached
GraduatedLP locked; book + AMM active
BookLast fill or route touched the CLOB
AMMResidual routed to the locked pair
CCTPCross-chain USDC settlement in progress or completed

Chips reflect routing intent in the preview engine; on-chain, read status and events from the launchpad and book contracts.

Slippage and failed swaps

  • Set a minimum out (or maximum in) consistent with your tolerance
  • If the swap would exceed the fee cap or violate k, the transaction reverts with no fee
  • Post-graduation, large market orders may walk multiple book levels before hitting the AMM — simulate or quote when possible
  • Architecture — graduation and contract roles
  • CCTP — funding Arc USDC from other chains
  • Contracts — addresses per chain