Interface VerificationBundle

interface VerificationBundle {
    version: string;
    agentId: string;
    publicKey: string;
    events: SignedEvent[];
    anchors: AnchorRecord[];
    exportedAt: string;
    bundleHash: string;
    bundleSignature: string;
}

Properties

version: string

Bundle format version.

agentId: string

Agent instance ID.

publicKey: string

Base64-encoded Ed25519 public key of the agent.

events: SignedEvent[]

Ordered list of signed events.

anchors: AnchorRecord[]

Anchor records covering the events.

exportedAt: string

ISO 8601 export timestamp.

bundleHash: string

SHA-256 hash of the bundle contents.

bundleSignature: string

Ed25519 signature of the bundle hash.