Fees
The three fees a fund can charge — management, performance (high-water mark), and redemption.
Fee
When it is charged
Base
Management fee
managementFee = netSupply * managementFeeRate * timeElapsed / (10_000 * 365 days)Performance fee (high-water mark)
function calculatePerformanceFee(
uint256 sharesPrice, // current price, 8-decimal USD
uint256 timeElapsed,
uint256 feePct, // performanceFeeRate, bps
uint256 netSupply
) external returns (uint256 fee);Redemption fee
Events
Last updated