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

    Native Sui delegated stake returned for a wallet.

    This type describes a Sui StakedSui delegation. It is distinct from an Aftermath StakingPosition, which also includes afSUI and unstake events.

    interface SuiDelegatedStake {
        estimatedReward?: bigint;
        principal: bigint;
        stakeActiveEpoch: bigint;
        stakedSuiId: string;
        stakeRequestEpoch: bigint;
        stakingPool: string;
        status: SuiDelegatedStakeState;
        validatorAddress: string;
    }
    Index
    estimatedReward?: bigint

    Estimated rewards in raw SUI units, when the endpoint provides them.

    principal: bigint

    Delegated principal in raw SUI units.

    stakeActiveEpoch: bigint

    Epoch in which the delegation became, or will become, active.

    stakedSuiId: string

    Object ID of the native staked SUI object.

    stakeRequestEpoch: bigint

    Epoch in which the delegation request was made.

    stakingPool: string

    Address of the native Sui staking pool that manages this stake.

    Current native delegation state.

    validatorAddress: string

    Address of the validator receiving the delegation.