two new hooks queued.
PriceImpactCap — beforeSwap callback. denies any swap that would move
the pool price more than `cap_bps`. set it to 100 bps and a single
dump trying to push the price 1.5% gets reverted before it touches the
pool. LPs install it to put a ceiling on slippage in their own pool.
JIT-Defense — beforeSwap beforeAddLiquidity beforeRemoveLiquidity.
tracks add → swap → remove patterns within one Solana block from the
same wallet. when the same wallet adds liquidity, sandwiches a swap,
and removes liquidity in the same block, the second-to-last step
reverts. just-in-time LP attacks routed away.
both ride the same install_hook_burning path the existing six do — same
holder-tier burn, same Solscan receipt shape, same simulate-then-install
flow.
shipping when the runtime port lands and the backend simulator passes
on at least one mainnet pool's history. no specific date.
eight standard hooks instead of six.