Vana SDK - v2.2.3
    Preparing search index...

    Interface StakerEntitySummary

    Comprehensive staking summary for a staker in an entity.

    interface StakerEntitySummary {
        shares: bigint;
        costBasis: bigint;
        currentValue: bigint;
        rewardEligibilityTimestamp: bigint;
        remainingBondingTime: bigint;
        isInBondingPeriod: boolean;
        vestedRewards: bigint;
        unvestedRewards: bigint;
        realizedRewards: bigint;
        earnedRewards: bigint;
    }
    Index

    Properties

    shares: bigint

    Number of shares owned by the staker

    costBasis: bigint

    Cost basis - the original VANA amount staked

    currentValue: bigint

    Current value of the staker's shares in VANA

    rewardEligibilityTimestamp: bigint

    Timestamp when rewards become eligible

    remainingBondingTime: bigint

    Remaining bonding time in seconds (0 if bonding period has passed)

    isInBondingPeriod: boolean

    Whether the staker is still in the bonding period

    vestedRewards: bigint

    Vested rewards that can be claimed without penalty

    unvestedRewards: bigint

    Unvested rewards (pending interest = currentValue - costBasis)

    realizedRewards: bigint

    Realized/withdrawn rewards (already claimed)

    earnedRewards: bigint

    Total earned rewards (includes vested, unvested, and realized)