Developer FAQs

Content Out of Date

This content is not maintained and refers to an out-of-date version of Perpetual Protocol.

For the latest documentation, see https://docs.perp.com

Is there an API?

There is no API in the regular sense. Perpetual Protocol uses The Graph API to provide data, and protocol functions can be called using tools that interact directly with the on-chain smart contracts.

Useful subgraphs

How do I get quotes for a given asset?

AKA how much vUSD will I pay for 1 vETH and similar questions.

You can get quotes using our quoter contract: 0xE99d0FBe203E3697285166f599d8E57f8e335ed0

Example code:

export class QuoterService {
    constructor(private readonly contractProxyFactory: ContractProxyFactory) {}
    async getPerpAveragePrice(baseToken: string, amountType: AmountType, amount: Big) {
        const quoterProxy = await this.contractProxyFactory.createQuoterProxy()
        const side = amount.gt(0) ? Side.LONG : Side.SHORT
        const { isBaseToQuote, isExactInput } = convertSideAndAmountType(side, amountType)
        const swapResp = await quoterProxy.quote({
            baseToken,
            isBaseToQuote,
            isExactInput,
            amount: toWei(amount.abs()),
            sqrtPriceLimitX96: Big(0),
        })
        return swapResp.exchangedPositionNotional.div(swapResp.exchangedPositionSize).abs()
    }
}

For more info about `isBaseToQuote` and other values, see the dev docs.

How do I obtain a value for liquidity?

First call

Orderbook.getOpenOrder(address trader,
        address baseToken,
        int24 lowerTick,
        int24 upperTick
)

and the function will return a struct:

struct Info {
        uint128 liquidity;
        int24 lowerTick;
        int24 upperTick;
        uint256 lastFeeGrowthInsideX128;
        int256 lastTwPremiumGrowthInsideX96;
        int256 lastTwPremiumGrowthBelowX96;
        int256 lastTwPremiumDivBySqrtPriceGrowthInsideX96;
        uint256 baseDebt;
        uint256 quoteDebt;
    }

How is Net Return calculated?

netReturn=impermanentLoss+pendingFeesForThisLiquiditynet Return = impermanent Loss + pending Fees For This Liquidity

To get this number programmatically, you need to get your impermanent position size

impermanentPosition = accountBalance.getTotalPositionSize() - accountBalance.getTakerPositionSize()

and the open notional

impermanentOpenNotional = accountBalance.getTotalOpenNotional() - accountBalance.getTakerOpenNotional()

then you can get

impermanentLoss = impermanentPosition * indexPrice + impermanentOpenNotional

next get pending fees

pendingFees = accountBalance.getPnlAndPendingFee()

now you can calculate net return

netReturn = pendingFees + impermanentLoss

How are base and quote calculated?

We can calculate the base/quote amount in a liquidity at any given time as long as we know the current price at that time.

p_c = current price
p_u = upper price of the liquidity
p_l = lower price of the liquidity
L = liquidity amount

There are 3 cases: 1. current price is in the range:

base amount = (1/√p_c - 1/√p_u) * L
quote amount = (√p_c - √p_l) * L

2. current price is above the upper price, only quote token in the liquidity:

quote amount = (√p_u - √p_l) * L

3. current price is below the lower price, only base toke in the liquidity:

base amount = (1/√p_l - 1/√p_u) * L

Last updated