Vana SDK - v4.1.0
    Preparing search index...

    Interface JobSubmission

    Outer body of POST /v1/jobs (signed Web3Signed by the builder).

    interface JobSubmission {
        jobId: string;
        requestCiphertext: string;
        maxPrice?: string;
    }
    Index

    Properties

    jobId: string

    Client UUID, echoed in JobRequest.jobId.

    requestCiphertext: string

    Base64 ECIES from sealJobRequest.

    maxPrice?: string

    The most the builder accepts for this read, uint256 decimal. The Gateway refuses a quote above it rather than charging a price nobody agreed to.

    This submission is authenticated by a Web3Signed body hash, not by an EIP-712 struct, so these three fields are covered by the builder's existing request signature. No typed-data version changes.