Delta is Velora’s intent protocol: gasless, MEV-protected, Crosschain swaps that settle in one signature. Here’s what makes it different from a regular swap.
Delta is Velora’s intent protocol. Instead of building, signing, and submitting an on-chain transaction yourself, you sign an off-chain order describing what you want. A competitive network of solvers (the Portikus Network) submits fill calldata, and Delta settles the winning fill for you.
The full lifecycle is four calls (quote, build, sign, submit), then you poll for status:
# 1. Get a Delta quote (returns a delta block: route + alternatives + spender)curl "https://api.velora.xyz/v2/quote?...&mode=DELTA&partner=my-app-name"# 2. Build the order from the route (returns toSign + orderHash)curl -X POST "https://api.velora.xyz/v2/delta/orders/build" -d @build.json# 3. Sign the returned toSign with the user's wallet (ERC-2098 compact)# 4. Submit the signed ordercurl -X POST "https://api.velora.xyz/v2/delta/orders" -d @signed.json# 5. Poll statuscurl "https://api.velora.xyz/v2/delta/orders/{orderId}"
Walk through the full flow in the Quickstart →For a side-by-side breakdown of when to pick mode=DELTA, mode=MARKET, or mode=ALL, see Trading modes.