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

    A user's stake position created by a StakedEvent.

    Amounts are raw SUI or afSUI balances. timestamp can be absent when the source event did not include a timestamp.

    interface StakePosition {
        afSuiAmount: bigint;
        afSuiId: string;
        epoch: bigint;
        isRestaked: boolean;
        stakedSuiId: string;
        staker: string;
        suiId: string;
        suiStakeAmount: bigint;
        timestamp: number | undefined;
        txnDigest: string;
        validatorAddress: string;
        validatorFee: number;
    }
    Index
    afSuiAmount: bigint

    afSUI amount issued, in raw afSUI units.

    afSuiId: string

    Object ID of the afSUI coin issued for the stake.

    epoch: bigint

    Protocol epoch in which the stake was established.

    isRestaked: boolean

    Whether this position came from a restake operation.

    stakedSuiId: string

    Object ID of the native staked SUI object.

    staker: string

    Address that performed the stake.

    suiId: string

    Object ID of the SUI coin consumed by the stake.

    suiStakeAmount: bigint

    SUI amount staked, in raw SUI units.

    timestamp: number | undefined

    Event timestamp, when the source event supplied one.

    txnDigest: string

    Digest of the transaction that emitted the stake event.

    validatorAddress: string

    Validator that received the stake.

    validatorFee: number

    Validator fee as a decimal ratio. 0.01 represents 1%.