★ Oracle source = spot DEX pool (no TWAP)
Aerodrome Finance's assessment for RD-F-053 — scored green on the v1.7.0 rubric. The evidence below is the curator's reasoning for this score.
Evidence summary #
GREEN — no ★ risk triggered. Aerodrome is a DEX and does not consume any spot DEX price from an external pool. Pool.sol uses internal reserve math (constant product xy>=k and stable curve x3y+y3x>=k). CLPool.sol emits TWAP oracle data (observe(), slot0) for downstream consumer use only — Aerodrome's own swap logic uses internal sqrtPriceX96 state. No getReserves() or slot0 from an external pool is consumed by any Aerodrome contract for internal pricing. OracleLibrary.sol in Slipstream periphery is a helper for external integrators, not used internally by Aerodrome core.
Sources #
- GitHubAerodrome Slipstream CLPool.sol — TWAP emitter, not consumerCLPool.sol — observe() function exposed for external consumers; swap path uses only internal sqrtPriceX96 stateretrieved 2026-05-04
- Aerodrome Pool.sol — internal reserve pricing, no external spot DEX oraclePool.sol _getAmountOut() function — uses reserve0/reserve1 state variables only; periodSize = 1800 for internal TWAP accumulation (not consumed by Aerodrome itself)retrieved 2026-05-04
Methodology #
Determine whether the primary oracle for any asset/market reads spot price from a single DEX pool without a TWAP window or secondary source.
See the full factor methodology and distribution across all protocols →