Documentation Index
Fetch the complete documentation index at: https://new-docs.velora.xyz/llms.txt
Use this file to discover all available pages before exploring further.
This page is a stub. Full content lands in Workstream C.2.
What breaks if you do nothing
Nothing. This migration is opt-in. Your existing Market integration keeps working as-is.Why migrate
- Better UX — Delta intents are gasless and MEV-protected. Users sign once; the solver network fills.
- No code rewrite —
POST /quotewithmode=ALLreturns both a MarketpriceRouteand a Deltadeltablock in a single response. You pick which to execute per-quote.
Steps
- Change
mode=MARKET(or omit) tomode=ALLon yourPOST /quotecalls. - Branch on the response: if
response.deltaexists, take the gasless path; else fall back to the existingpriceRouteflow. - For the Delta path, call
POST /delta/orders/build, sign the EIP-712 typed data, thenPOST /delta/orders.
End-state check
Run a quote withmode=ALL. Confirm both priceRoute and delta are present. Pick one and complete a swap end-to-end.