Where your deposit is held, what the keeper is allowed to do with it, and what can still go wrong.
Your deposit sits in one of exactly two places, and there is no function anywhere that sends it to a third.
The manager can only be funded by calling the vault, and the vault only accepts that call from the same contract that reports position value — so the thing holding the positions is necessarily the thing pricing them. Every keeper action is wrapped in a check that value has not left the system by more than a set tolerance, and that nothing was left stranded in the manager afterwards. If either fails, the whole action reverts.
The keeper cannot choose where to put money. It can only use pools that governance has already listed in the registry, and listing is not a matter of trust — the registry asks the Uniswap factory whether it deployed that pool, for that exact token pair and fee tier, and refuses the listing if the factory says no. 0x8D81A3DC…0D2b3cA4
That check matters more on this chain than most. The canonical Uniswap addresses from Ethereum mainnet are squatted here by a contract whose entire interface is {changeOwner, recoverETH, recoverUSDT, transferTokensTo} — a fund sweeper that the block explorer labels “UniswapV3Factory”. Worse, calls to it succeed with empty data rather than reverting, so a naive integration decodes zeros and carries on. There are also explorer-verified counterfeit tokens: a fake “USD Coin” with 18 decimals, a fake “Tether USD”, and a memecoin using the ticker USDG. Making the factory vouch for every pool is what makes any of that survivable.
A Pippin Leaf is a share of the vault. The leaf token records who may mint it as an immutable set at construction, and there is no setter — so the only address that can ever create a leaf is the vault, and the only way the vault creates one is when someone deposits. No premine, no treasury allocation, no owner mint. 0xbAD1293b…85755035
You are priced at the mint-side mark — the more conservative of spot and the TWAP, whichever is worse for you. That is what stops a deposit diluting the people already in.
You are priced at the redeem-side mark — again the more conservative of the two. The same rule, pointed the other way, so an exit cannot extract value from those who stay.
Your leaf count never changes on its own. What moves is what each leaf is worth: net asset value divided by leaves outstanding. Because deposits and exits are both priced at the conservative mark, neither can shift that number in their own favour — so what drives it is the strategy earning, which is what carries the leaf price up.
Exiting instantly while the vault is fully deployed pays a redemption fee. It is the only fee live in the contracts today, it scales with how much of the buffer your exit drains, it is capped, and it is zero when the buffer absorbs you. It is not our revenue — it stays in the vault and accrues to the holders who did not exit, which is what stops a race to be first out. 0xa722bdA6…0C564B49
The minimum comes first. 15% a year in stables and 50% a year in ETH is what you receive, and our share is taken from what the strategy earns beyond it — so a fee is only ever charged against money you would not otherwise have had.
Every one of those goes into buying Pippin tokens, so what we earn is tied to the token rather than to churn in your position. Nothing in the schedule rewards us for trading you more often.