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

    Move fields that track progress through an afSUI epoch update.

    interface EpochWasChangedStateFieldsOnChain {
        amount_to_unstake: string;
        is_epoch_processing: boolean;
        is_inactive_stakes_processed: boolean;
        is_pending_unstakes_processed: boolean;
        is_total_sui_amount_updated: boolean;
        is_unstaking_deque_sorted: boolean;
        is_unstaking_from_storage_processed: boolean;
        reserves_before_unstake: string;
    }
    Index
    amount_to_unstake: string

    SUI amount queued for processing, as a decimal string in raw units.

    is_epoch_processing: boolean

    Whether the vault is currently processing the epoch.

    is_inactive_stakes_processed: boolean

    Whether inactive native stakes have been processed.

    is_pending_unstakes_processed: boolean

    Whether pending unstake records have been processed.

    is_total_sui_amount_updated: boolean

    Whether the vault's total SUI amount has been updated.

    is_unstaking_deque_sorted: boolean

    Whether the pending unstake deque has been sorted.

    is_unstaking_from_storage_processed: boolean

    Whether unstake records from storage have been processed.

    reserves_before_unstake: string

    SUI reserve amount recorded before unstake processing, in raw units.