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
Calldata returned byPOST /transactions now targets Augustus v6.2 by default. If your contract integration hardcoded the v5 router or TokenTransferProxy address, those approvals and contract calls will silently route to a deprecated surface.
High-level diffs
TokenTransferProxyis gone. v6.2 pulls tokens directly via the router contract. ERC-20 approvals must be granted to the v6.2 router address, not to a separate proxy.excludeContractMethodsWithoutFeeModelhas been renamed (see new param list in API Reference).- Method signatures changed. v6.2 introduces
swapExactAmountInandswapExactAmountOutas canonical entry points; v5’smultiSwap/megaSwapare deprecated.
Steps
- Look up the v6.2 router address per chain on Chains & contracts.
- Re-grant ERC-20 approvals to the v6.2 router. Revoke the legacy v5 TokenTransferProxy approval if you want cleanup.
- If you decode calldata server-side, regenerate ABIs against v6.2.
- Update any hardcoded contract-method names in your dApp.
End-state check
POST /quote response → priceRoute.version is "6.2" and priceRoute.contractAddress matches the v6.2 router for the chain.