TEE (Trusted Execution Environment) is a cool CPU feature that makes your code Verifiable and Privacy-Preserving by locking it in a black box. Trusted hardware ensures even the OS or hardware can't mess with your code. Now, when you put a Web2 app in a TEE, you get Web3 out! :)
Meet Dstack a Flashbots X Project, the TEE backend for running docker apps in a TEE to deploy kickass dApps.
git clone https://github.com/Phala-Network/nextjs-viem-tee-sim-template.git
yarn # Install dependencies
docker pull phalanetwork/tappd-simulator:latest
docker run --rm -p 8090:8090 phalanetwork/tappd-simulator
Build The Docker Image
docker build -t your-dapp:latest .
Run Your Docker App
docker run --rm -p 3000:3000 your-dapp:latest
Wait No More! Get Started in Minutes
git clone https://github.com/Phala-Network/python-tee-sim-template.git
The verifiable hardware produces Remote Attestation, which proves the exact code is running in a genuine TEE with integrity and privacy guarantees.
Get the RA quote from your app and verify it on the TEE Attestation Explorer at https://ra-quote-explorer.vercel.app
Every program comes with a ready-to-use secret key in JS and Python
const client = new TappdClient()
const randomDeriveKey = await client.deriveKey("keyName", "");
client = AsyncTappdClient()
deriveKey = await client.derive_key('key_name', '')
Generate Remote Attestations in JS and Python at will
const getRemoteAttestation = await client.tdxQuote("input");
tdxQuote = await client.tdx_quote('input')
Use viem SDK To Go Onchain
const [blockNumber, block] = await Promise.all([client.getBlockNumber(), client.getBlock()]);
With Project RedPill, you have access to top LLMs from OpenAI, Anthropic, Meta and more with 1 API Key
git clone https://github.com/Phala-Network/redpill-tee-sim-template.git
Reach out to us on Telegram to grab your free LLM credits!
await fetch('https://api.red-pill.ai/v1/chat/completions', {
body: JSON.stringify({
messages: /****/,
model: '${model}', // Change model here!!
})
});
For more Templates, check out our offerings or reach out to us on Telegram to help create a new template for your project in minutes!
Hacker's TG Group
bit.ly/phala-ethglobalFull Guide
bit.ly/phala-hackathon-guide