aftermath-ts-sdk - v3.3.3
    Preparing search index...

    Network-specific protocol limits shared by all Perpetuals vaults.

    These values come from the current on-chain vaults configuration rather

    • than SDK constants. Fetch them with Perpetuals.getVaultsConfig.
    interface PerpetualsVaultsConfig {
        collateralPriceFeedStorageToleranceMs: bigint;
        forceWithdrawPauseMs: bigint;
        id: string;
        maxAssistantsPerVault: bigint;
        maxForceWithdrawDelayMs: bigint;
        maxLockPeriodMs: bigint;
        maxMarketsInVault: bigint;
        maxOwnerLockUsd: number;
        maxPendingOrdersPerPosition: bigint;
        maxPerformanceFeePercentage: number;
        minDepositUsd: number;
        minOwnerLockUsd: number;
        version: bigint;
    }
    Index
    collateralPriceFeedStorageToleranceMs: bigint

    Default collateral price-feed staleness tolerance, in milliseconds.

    forceWithdrawPauseMs: bigint

    Time a vault remains paused for force withdrawal, in milliseconds.

    id: string

    ID of the on-chain vaults configuration object.

    maxAssistantsPerVault: bigint

    Maximum active assistant capabilities associated with one vault.

    maxForceWithdrawDelayMs: bigint

    Maximum force-withdraw delay, in milliseconds.

    maxLockPeriodMs: bigint

    Maximum vault deposit lock period, in milliseconds.

    maxMarketsInVault: bigint

    Maximum number of distinct markets supported by one vault.

    maxOwnerLockUsd: number

    Maximum USD value the owner may lock when creating a vault.

    maxPendingOrdersPerPosition: bigint

    Maximum pending orders allowed per vault position.

    maxPerformanceFeePercentage: number

    Maximum vault owner performance fee as a fraction (for example, 0.2).

    minDepositUsd: number

    Minimum USD value accepted for a user deposit.

    minOwnerLockUsd: number

    Minimum USD value the owner must lock when creating a vault.

    version: bigint

    On-chain configuration version.