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

    Interface StakedSuiVaultStateObject

    Normalized state of the Aftermath stakedSui vault.

    Balance fields are raw token amounts represented as bigints. Fee fields use the unsigned 18-decimal fixed-point scale, where 1_000_000_000_000_000_000n represents 100%.

    interface StakedSuiVaultStateObject {
        activeEpoch: bigint;
        atomicUnstakeSuiReserves: bigint;
        atomicUnstakeSuiReservesTargetValue: bigint;
        maxAtomicUnstakeFee: bigint;
        minAtomicUnstakeFee: bigint;
        objectId: string;
        objectType: string;
        totalRewardsAmount: bigint;
        totalSuiAmount: bigint;
    }

    Hierarchy (View Summary)

    • Object
      • StakedSuiVaultStateObject
    Index
    activeEpoch: bigint

    Current protocol epoch as a bigint.

    atomicUnstakeSuiReserves: bigint

    Current SUI reserve available for atomic unstakes, in raw SUI units.

    atomicUnstakeSuiReservesTargetValue: bigint

    Target SUI reserve for atomic unstakes, in raw SUI units.

    maxAtomicUnstakeFee: bigint

    Maximum atomic-unstake fee as an 18-decimal fixed-point value.

    minAtomicUnstakeFee: bigint

    Minimum atomic-unstake fee as an 18-decimal fixed-point value. 50_000_000_000_000_000n represents 5%.

    objectId: string

    The on-chain object ID.

    objectType: string

    The Move type of the object.

    totalRewardsAmount: bigint

    Total SUI rewards accumulated in the vault, in raw SUI units.

    totalSuiAmount: bigint

    Total SUI amount held by the vault, in raw SUI units.