Skip to content

Authority Tokens · the receipt

The token is the receipt. The receipt is the record.

Authority Tokens are Ed25519-signed JWS objects issued only when verification passes. They are single-use, TTL-bounded, scoped to one action, and verified against the tenant’s kid-pinned public key — per-tenant JWKS verification is live.

Authority Token · EdDSA · Ed25519 · issued LOCALtyp: JWT
..
Header · the JWS algorithm + token type
contents{ "alg": "EdDSA", "typ": "JWT", "kid": "…" }
algEdDSA · Ed25519 (pure EdDSA), per-tenant key
typJWT · authority-scoped, single-use
kidminting…
Live · single-use · 5 min ttl
Verify on jwt.io →

02 · What the token guarantees

01 · Authorization

Verification happened

The token’s existence is proof that policy, conformance, and risk all permitted this exact action.

02 · Scope

One action, one actor

The token claims bind it to a specific action, actor, and target. The connector refuses scope mismatches.

03 · Provenance

Signed by tenant authority

Ed25519 signature with the tenant-scoped private key. Verified against the kid-pinned tenant public key.

04 · Enforcement

Verified at the gate

The connector — not Intended — verifies. If the gate refuses, nothing executes. If Intended disappeared, the receipt would still stand.

Watch one mint live.

Authority Tokens — Cryptographic Proof-of-Authority | Intended