Represents a product stored in PerpEngine

interface PerpProduct {
    productId: number;
    oraclePrice: BigNumber;
    longWeightInitial: BigNumber;
    shortWeightInitial: BigNumber;
    longWeightMaintenance: BigNumber;
    shortWeightMaintenance: BigNumber;
    totalLpQuoteAmount: BigNumber;
    totalLpBaseAmount: BigNumber;
    totalLpSupply: BigNumber;
    type: PERP;
    openInterest: BigNumber;
    cumulativeFundingLong: BigNumber;
    cumulativeFundingShort: BigNumber;
}

Hierarchy (view full)

Properties

productId: number
oraclePrice: BigNumber
longWeightInitial: BigNumber
shortWeightInitial: BigNumber
longWeightMaintenance: BigNumber
shortWeightMaintenance: BigNumber
totalLpQuoteAmount: BigNumber
totalLpBaseAmount: BigNumber
totalLpSupply: BigNumber
type: PERP
openInterest: BigNumber
cumulativeFundingLong: BigNumber
cumulativeFundingShort: BigNumber