# cocoon **Repository Path**: uesoft/cocoon ## Basic Information - **Project Name**: cocoon - **Description**: No description available - **Primary Language**: C++ - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-03-01 - **Last Updated**: 2026-03-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Confidential Compute Open Network (COCOON) – Decentralized AI Inference on TON COCOON enables running AI models in trusted execution environments, while earning TON cryptocurrency for compute services. - GPU owners earn TON by serving models - App developers plug into low-cost, secure and verifiable AI compute - Users enjoy AI seamlessly, with full privacy and confidentiality This repository contains all the necessary tools and documentation to both serve and access models via COCOON. ## Quick Links **For Workers:** offering GPUs for computation - **Download**: [Latest worker release](https://ci.cocoon.org/cocoon-worker-release-latest.tar.xz) – Ready-to-run TDX image and setup scripts - **Setup Guide**: Instructions are included in the release archive ([preview here](scripts/dist-worker/README.md)) **For Developers:** requiring secure AI compute - **Build Instructions**: See below for reproducing worker distribution from source ## Reproducible Build Anyone can verify the worker distribution by rebuilding from source. Note that this step is not needed to run your own workers. ```bash # 1. Build the VM image (reproducible) ./scripts/build-image prod # 2. Generate distribution ./scripts/prepare-worker-dist ../cocoon-worker-dist # 3. Verify the TDX image matches the published release cd ../cocoon-worker-dist sha256sum images/prod/{OVMF.fd,image.vmlinuz,image.initrd,image.cmdline} # Compare with the published checksums ``` The same goes for model images: ```bash # 1. This will generate a model tar file with the full model name, which includes hash and commit. ./scripts/build-model Qwen/Qwen3-0.6B # Compare with the published model name ``` ## License See LICENSE file.