ManagementFee
Some definitions
Management fee rate (annual, in percent):x
Effective management fee rate (annual, in percent, after dilution): k
Since management fee is not paid out (as a percentage of assets), but is allocated as newly minted shares in the fund, we need to use the effective management fee rate. This ensures that the manager receives the correct ratio of shares.
The two fee rates are related as follows:
or, alternatively
Continuous compounding
Management fee accrual happens at irregular and unknown intervals, so we have to resort to continuous compounding. The continuous management fee rate z
is related to the annual effective management fee rate k
as follows:
or, alternatively
Substituting for the effective management fee rate k
yields the relation between the continuous management fee rate and the annual management fee rate:
or, alternatively
Management fee allocation
Whenever management fee is due after a time period t
(expressed as a fraction of a year), the number of shares changes as follows
S
is the total supply of shares before the allocation of the management fee shares, and S'
is the total supply of shares after the allocation of the management fee shares.
The share allocation to the manager is S_{manager} = S'-S
, and it is calculated as follows:
or
Using t = \Delta t / N
, we can rewrite this as
where
f
is calculated off-chain when configuring the fee, and it is stored on-chain as scaledPerSecondRate
. The on-chain computation is then
sharesDue = (rpow(scaledPerSecondRate, numberOfSeconds, 10**27) - 10**27) * totalSupply / 10**27
Last updated