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

    Interface WriteTransportRetryOptions

    Transport-level retry knobs shared by every Write API call.

    Applies only when fetch throws (connection reset, DNS, a relay drop). Every attempt signs a fresh proof, because the Personal Server consumes a proof the moment it accepts it. A received HTTP response is never retried: a 4xx/5xx is surfaced as a typed error.

    interface WriteTransportRetryOptions {
        attempts?: number;
        initialDelayMs?: number;
    }
    Index

    Properties

    attempts?: number

    Total attempts including the first (default 3). 1 disables retries.

    initialDelayMs?: number

    Delay before the first retry (ms); doubles per retry (default 1_000).