Fees and Reflection

Sustainability of the protocol

GMI incorporates fee and reflection mechanisms to improve Total Value Locked (TVL) via Protocol Owned Liquidity, increase the resiliency of the Index, and generate funds to maintain the protocol.

Please refer to the GMIndex contract for full deposit and withdraw function logic.

Fees

Fees will slide between a minimum and maximum fee based on if the token transfer benefits the Index or not. A transaction benefits the Index when it brings the GM asset being transferred closer to its target weighting (see Deposit/Withdrawal Examples for example calculations). This mechanism encourages user behavior that brings the entire Index toward its ideal token balances of the best performing assets.

  • Minimum Fee Bps = 33 basis points (0.33%)

  • Fee Bps (Nominal Base Fee) = 100 basis points (1%)

  • Tax Bps (Nominal Base Tax) = 60 basis points (0.6%)

With these fee parameters in mind, there are two scenarios possible for any given transaction:

  1. If the transaction improves the GM asset's weighting in the Index, a rebate is generated, which will be subtracted from the set Fee Bps. The further the asset is away from it's target weighting/balance, the higher the rebate is until the fee subtraction hits the Minimum Fee Bps. The fee would then become the Minimum Fee Bps. Any transactions of the asset with an initial balance worse than that will generate the Minimum Fee Bps.

  2. If the transaction worsens the GM asset's weighting in the Index, a tax is levied, which will be added to the set Fee Bps. When comparing the before and after asset balances with the target weight balance, the further that average difference is, the higher the tax is. If the average difference is equal to or greater than the gm Asset's target balance, then the maximum tax of 60 basis points will be incurred, bringing the final maximum transaction fee to 160 basis points (1.6%).

For deposits, the calculated fee (in basis points) gets multiplied by the amount of GMI tokens to be minted, before being divided by the FEE_DIVISOR (done second to avoid math underflow), which converts the fee into a token amount called feeAmount. This amount gets subtracted from the amount of GMI tokens to be minted. The user then receives the amountOut:

feeAmount = (mintAmount * fee) / FEE_DIVISOR

amountOut = mintAmount - feeAmount

It's the same calculation for withdrawals, except the calculated fee (in basis points) gets multiplied by the amount of GM tokens to be withdrawn.

feeAmount = (withdrawAmount * fee) / FEE_DIVISOR

amountOut = withdrawAmount - feeAmount

Reflection

In order to grow TVL and make the Index more robust, the deposit fees (feeAmount) generated are split into two buckets. These percentages were set at protocol launch:

  • 60% for reflection

  • 40% for USDC looping liquidity

Deposits

The reflection amount stays in the Index in the form of freshly minted GMI tokens, thereby increasing TVL (see Deposit/Withdrawal Examples for example calculations).

The leftover portion of the feeAmount gets sent to the protocolFeeRecipient address (set by the owner), which is in charge of the USDC looping liquidity transactions. More info on this coming soon.

Withdrawals

The reflection amount is taken from the GM tokens requested to be withdrawn. This amount stays in the Index, thereby increasing TVL (see Deposit/Withdrawal Examples for example calculations).

The leftover portion of the feeAmount again gets sent to the protocolFeeRecipient address.

Last updated