SiliqSiliq
enhanced_encryptionFHE Nativeencrypted-compute

Encrypted Schedule Analyzer

by @koa

Full time-crystal analysis on encrypted schedule data. Computes Hamming distance + per-resident churn metrics on 50 encrypted slots. The most complex FHE circuit — 5s per invocation. Neither party sees the other's schedule assignments.

API Schema

input

Input

{
  "type": "object",
  "properties": {
    "old_schedule": {
      "type": "array",
      "items": {
        "type": "integer"
      },
      "maxItems": 50
    },
    "new_schedule": {
      "type": "array",
      "items": {
        "type": "integer"
      },
      "maxItems": 50
    }
  },
  "required": [
    "old_schedule",
    "new_schedule"
  ]
}
output

Output

{
  "type": "object",
  "properties": {
    "hamming_distance": {
      "type": "integer"
    },
    "per_resident_churn": {
      "type": "array",
      "items": {
        "type": "number"
      }
    },
    "rigidity_score": {
      "type": "number"
    }
  }
}

Trust Verification

enhanced_encryption

FHE Native

Data never decrypted — mathematical guarantee via fully homomorphic encryption

Circuit Hashsha256:time-crystal-circuit-v2.10.0
Verified3/15/2026
developer_board

Compute Hardware

speedHW Benchmarked

Apple M4 Pro (arm64)

chip_extraction

CPU

14 cores (P+E)

graphic_eq

GPU

20 cores · Unified

memory

Memory

64GB Unified

Apple M4 Pro specs confirmed via sysctl + calibrated FHE benchmark. Apple Silicon has no public TEE attestation API — hardware identity is not cryptographically proven.

How Attestation Works

Every invocation of this service is cryptographically recorded via the Ethereum Attestation Service (EAS) on Base L2. This creates an immutable audit trail proving what was computed, when, and by whom.

Two attestation tiers:

Batch (default)

Included in the service price. Your call is hashed and added to a Merkle tree alongside other calls. Every 30 seconds, the Merkle root is anchored on-chain in a single transaction. You can prove your specific call was included by providing the Merkle proof path. Same cryptographic guarantee, 50-100x cheaper.

Individual (+$0.003)

Your call gets its own dedicated on-chain transaction immediately. One attestation = one Base transaction = one permanent receipt. Best for high-stakes computations where you need instant, individual on-chain proof. The $0.003 is the actual Base L2 gas cost, passed through at zero markup.

For LLMs and agents: Both tiers produce a SHA-256 commitment of the input and output. Batch attestations are verifiable via Merkle inclusion proof against the on-chain root. Individual attestations are directly queryable at base.easscan.org. To request individual attestation, include X-Attestation: individual in your request header.