šŸ’°Funding Payments

The Significance

The SNV index price is calculated on the floor prices of the compositions and is essentially independent of our perpetual market. The SNV Mark Price, on the other hand, is discovered by the participants' trading activity.

During trading, the participants may deviate the Mark Price of the SNV away from the Index Price (which is taken as the underlying).

To de-incentivize the deviation of the Mark Price away from the Index Price, Funding Payment is introduced, which flows from long position holders to short position holders if the Mark Price deviates higher and vice versa.

Funding Rate

The funding rate is a determining factor at which the deviation between mark and index prices converges.

FundingRate=(MarkPriceTwapāˆ’IndexPriceTwap)/IndexPriceTwapFundingRate = (MarkPriceTwap - IndexPriceTwap)/IndexPriceTwap

FundingAmount=FundingRateāˆ—PositionSizeFunding Amount = Funding Rate * PositionSize

The funding rate is bound to be kept between [-0.75% and 0.75%] at the protocol level.

Global Index(G)

Instead of sending out funding payments every hour, we are accumulating the funding of each user and settling whenever he/she interacts with the contracts.

We are maintaining a global Accumulator defined by the following:

Gt=Gtāˆ’1+(Ī”t)(Markāˆ’Index)/86400G_t = G_{t-1} + (\Delta_t) (Mark - Index) / 86400

Say, with 5 mins as the Delta,

Gt=Gtāˆ’1+(Markāˆ’Index)/288where(Ī”n)=5mins=5āˆ—60G_t = G_{t-1} + (Mark - Index)/288 \quad where(\Delta_n) = 5 mins=5*60

Where Ī”t\Delta_t = Time in seconds between GtG_t and Gtāˆ’1G_{t-1}

Thus,

Gi=(āˆ‘iMarkiāˆ—Ī”iāˆ’āˆ‘iIndexiāˆ—Ī”i)/86400G_i=(\sum_i Mark_i*\Delta_i-\sum_iIndex_i*\Delta_i)/86400

We also maintain a relative accumulator for each account with a position opened.

Whenever a user interacts with the account, funding to be paid is:

Funding=(Giāˆ’Ii)āˆ—PositionFunding = (G_i - I_i) * Position

Where IiI_i is the Cached Index maintained for each participant, this is reset as GiGievery time after the funding is settled.

Last updated