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

    Interface ValidatorConfigObject

    Normalized validator configuration returned by the staking API.

    The object inherits objectId and objectType from SuiObject. fee is a decimal ratio, so 0.01 represents a 1% validator fee.

    interface ValidatorConfigObject {
        fee: number;
        objectId: string;
        objectType: string;
        operationCapId: string;
        suiAddress: string;
    }

    Hierarchy (View Summary)

    Index
    fee: number

    Current validator fee as a decimal ratio. 0.01 represents 1%.

    objectId: string

    The on-chain object ID.

    objectType: string

    The Move type of the object.

    operationCapId: string

    Object ID of the operation cap associated with this validator.

    suiAddress: string

    Address of the validator whose configuration this object describes.