Deepdive into the passive perps

The perpetual futures give traders to gain leveraged exposure to a reference market by paying a funding rate. Each market is determined as an instance of the passive perp instrument determined by an oracle. Like any ‘cash-settled’ derivative, it is full determined by its cashflows:

PnL=priceVariation+fundingFee\mathrm{PnL}=\mathrm{priceVariation} + \mathrm{fundingFee}

Price variation

For Reya’s passive perps, the intermediate price variation (before position closing) are computed using the spot price given by the oracle, consistent with the pegging. This means that at any time, for each unit of exposure the account’s unrealized PnL is

spotPriceentryPrice\mathrm{spotPrice}-\mathrm{entryPrice}

where entryPrice\mathrm{entryPrice} might be an average of actual entry prices, or also of prices at the last PnL realization.

In Reya perps, this mark to market due to price variation is credited initially to the account’s unrealized PnL. This is so that the system keeps profits on escrow for a while, in case an extreme event makes an auto-deleveraging (ADL) necessary: ADL computes bankruptcy prices on the basis of unrealized PnL (see the documentation for the Derivatives Clearing Protocol).

Dynamic funding rate

Rather than a traditional funding rate mechanism, Reya Network uses a dynamic funding rate, introduced by Synthetix, adapted to the constant-product pegging. In a dynamic funding rate, the price deviation determines not the funding rate itself, but its velocity.

Details of how the funding rate velocity is set can be found below. But if r˙\dot{r} denotes the current funding rate velocity, and the original funding rate is r0r_0 at time t0t_0, the funding rate at subsequent time TT is

rT=r0+r˙Δd(t,T) r_T=r_0+\dot{r}\Delta^d(t,T)

Here, Δd(t,T)\Delta^d(t,T) is the time interval between and TT measured in days. The convention for traditional perps is to express the time interval in hours, in which case a factor of 1/241/24 must be included.

In the absence of ADL events, the funding fee accrued by a single exposure token while the velocity remains constant is

0Δd(T1,T2)pt(rT1+r˙T1Δh(T1,t))dΔh\int_{0}^{\Delta^d(T_1,T_2)}p_t\left(r_{T_1}+\dot{r}_{T_1}\Delta^h(T_1,t)\right)d\Delta^h

where ptp_t is the spot price. This could be approximated by querying the spot price at regular interval, but this is not practical given the smart contract limitations. Instead, the accrued funding is approximated as

pT2(rT1+r˙T1Δh(T1,t))Δh(T1,T2)p_{T_2}\left(r_{T_1}+\dot{r}_{T_1}\Delta^h(T_1,t)\right)\Delta^h(T_1,T_2)

This accrued amount is added every time the funding rate velocity changes, and so the accuracy of this approximation depends on the frequency of transactions and so should it is expected to be high. On the other hand, the use of pT2p_{T_2} means that the actual amount is not known until the end of the interval, and so intermediate queries are estimations only — but the frequency of transactions should make this sufficiently accurate.

The constant-product pegging mechanism

The constant-product pegging formula

Reya’s constant-product pegging mechanism takes into consideration:

  1. the spot price

  2. the available liquidity in the pool;

  3. the pool’s net exposure.

The pegging is ‘constant-product’ because it uses the slippage implied by the constant product curve known, for example, from Uniswap and other AMMs. It immediately adjusts trade prices in response to any of these three variable. Concretely,

tradePrice=spotPrice×(1netExposuremaxExposure+netExposure)\mathrm{tradePrice}=\mathrm{spotPrice}\times \left( 1-\frac{\mathrm{netExposure}}{\mathrm{maxExposure}+\mathrm{netExposure}}\right)

Here, netExposure=longOIshortOI\mathrm{netExposure}=\mathrm{longOI} - \mathrm{shortOI} is the pool’s net exposure after the trade.

Notice a couple of important features of the pegging formula:

  1. if there is no net exposure (i.e., the long and short sides are perfectly balanced), the quoted price is actually the spot price;

  2. however, whenever previous trades cause an imbalance, the price gets adjusted in a way that disincentivizes further unbalancing, and does so increasingly stronger.

This price deviation is approximately linear when the trade volume is much smaller that the maximum exposure, but, as it approaches the limit, the constant product effect kicks in and it quickly shoots up. The following table illustrates this effect for a maximal exposure of 100,000.

Units:0 (spot)606006,00060,000

Price:

$2000

$2001.2

$2012.1

$2127.7

$5,000

Deviation (bp):

0

6

60

638

15000

Uniquely, in Reya Network’s constant-product-pegged passive liquidity mechanism the price impact function automatically adjusts both trade prices and the funding rate in response to liquidity changes. This optimizes trading conditions to the risk profile of the pool at any moment: increasing the price impact and the funding rate if liquidity were drained; but also improving trading conditions in response to increases in liquidity both from new deposits and accumulated PnL.

The maximal exposure

Because the pool is not a spot exchange, but rather trading in ‘cash-settled’ derivatives, the maximal exposure is a measure of capital consumption by margin requirements. The capital locked for the existing exposure is expressed as a Protocol-set multiple λ\lambda of the initial margin requirement IMR\mathrm{IMR}. The pool’s capital would be exhausted if

totalCapital=λIMR\mathrm{totalCapital}=\lambda\mathrm{IMR}

since it could take on more positions. Maximal exposure is so defined that this is never verified as trading the pool to this level would set an infinite trade price.

The maximal exposure for a given market is the maximum exposure that would result in the pool’s exhaustion, holding all other exposures constant. Holding the other exposures constant might both have a positive or negative effect in the maximal exposure, because cross-margining might actually offset the net exposure in a market with those of others.

Last updated