Interface AnchorTarget

interface AnchorTarget {
    type: "none" | "custom" | "worm-snapshot" | "rekor" | "opentimestamps" | "ethereum" | "solana" | "composite";
    endpoint?: string;
    options?: Record<string, unknown>;
    targets?: AnchorTarget[];
}

Properties

type: "none" | "custom" | "worm-snapshot" | "rekor" | "opentimestamps" | "ethereum" | "solana" | "composite"

Type of external anchor (extensible).

endpoint?: string

Endpoint or identifier for the anchor target.

options?: Record<string, unknown>

Additional options specific to the anchor target type.

targets?: AnchorTarget[]

For composite: list of sub-targets to publish to in parallel.