@arkade-os/sdk Documentation - v0.4.36
    Preparing search index...

    Interface SignerClassification

    Result of classifying a single contract's server signer against the current ArkInfo signer set.

    interface SignerClassification {
        cutoffDate?: bigint;
        secondsUntilCutoff?: number;
        signerPubKey: string;
        status: SignerStatus;
    }
    Index

    Properties

    cutoffDate?: bigint

    Absolute cutoff as a Unix timestamp in seconds, present only when the server advertised one for this deprecated signer.

    secondsUntilCutoff?: number

    Derived seconds until the advertised cutoff (cutoffDate - now), present only for MIGRATABLE/EXPIRED (i.e. an advertised cutoff exists). Negative once the cutoff has passed.

    signerPubKey: string

    The contract's server signer, normalized to x-only (32-byte) hex.

    status: SignerStatus