// description

stockpool is a single-asset liquidity protocol on bnb chain. its entire market — price discovery, fee capture, and supply policy — lives inside one programmable uniswap v4 pool. rather than treating liquidity as a passive deposit, stockpool runs a custom v4 hook that reads the pool on every swap and adjusts its own economics in real time.

fees are not fixed. the hook scales the swap fee to realized volatility: quiet markets trade cheaply to attract flow, turbulent markets widen to protect the people holding the book. every fee the pool earns is split on-chain — a share compounds back to long-term liquidity, a share funds the treasury, and a share is routed into programmatic buyback and burn, tightening supply in proportion to real volume rather than emissions.

liquidity is time-aware. positions are timestamped on entry, and the hook discourages just-in-time and sandwich extraction with an early-exit fee that decays to zero over a lock window. providers who stay are paid more; providers who flash in and out subsidize them. a manipulation-resistant twap, maintained by the same hook, anchors the fee curve and the oracle the rest of the protocol reads.

the result is a token whose monetary policy is its market structure. there is no separate emissions farm to dump, no manual fee switch, no off-chain promise — the rules execute in the pool, every block.

// pool
single uniswap v4 pool. dynamic fee set per swap by the protocol hook.
pair$pool / wbnb
chainbnb
liquidity
current fee
depth
slippage
reserves
utilization
apr (lp)
cycles
// data source not configured. set VITE_BIRDEYE_API_KEY to enable the authenticated feed.
// mechanisms
the protocol's monetary policy, executed inside one v4 pool. each row is enforced on-chain by the hook.
dynamic fee curve
current fee
the swap fee is a function of the pool, not a constant.
the fee is not fixed. on every swap the hook reads realized volatility and pool imbalance, then sets the fee — cheap when calm to pull volume, wider when turbulent to protect the book.
on-chain fee router
every fee is split deterministically inside the same transaction.
every fee the pool earns is split in the same transaction: a share compounds to long-term liquidity, a share to the treasury, a share to buyback & burn.
buyback & burn engine
supply contracts as a function of real traded volume.
the treasury share market-buys $pool from the pool and burns it. supply tightens in proportion to real volume, not emissions.
time-weighted liquidity (anti-jit)
long-duration liquidity is paid; flash liquidity is taxed.
positions are timestamped on entry. a decaying early-exit fee discourages just-in-time and sandwich liquidity; providers who stay are paid more.
manipulation-resistant twap oracle
an on-chain price the rest of the protocol can trust.
the same hook maintains a time-weighted average price on-chain, hard to move in a single block, used by the fee curve and read by the rest of the protocol.
donate-based emissions
emissions compound into the pool instead of being farmed.
protocol emissions stream to in-range, long-duration providers through v4's donate, compounding into the pool instead of being farmed and dumped.