Agent Maturity Compass API - v1.2.0
    Preparing search index...

    Interface ZKRangeProof

    interface ZKRangeProof {
        agentId: string;
        bitCommitments: string[];
        bitLength: number;
        bitProofs: BitProof[];
        challengeHash: string;
        claim: string;
        deltaCommitment: string;
        id: string;
        reconstructionProof: string;
        threshold: number;
        timestamp: number;
        valueCommitment: string;
        verified: boolean;
    }
    Index
    agentId: string
    bitCommitments: string[]

    Bit commitments: commit to each bit of delta individually

    bitLength: number

    Number of bits

    bitProofs: BitProof[]

    Schnorr proofs that each bit commitment is 0 or 1

    challengeHash: string

    Challenge hash (Fiat-Shamir)

    claim: string

    What is being proven

    deltaCommitment: string

    Pedersen commitment to (value - threshold)

    id: string
    reconstructionProof: string

    Proof that bit commitments reconstruct delta commitment

    threshold: number

    The threshold (public)

    timestamp: number
    valueCommitment: string

    Pedersen commitment to the actual value

    verified: boolean