Documentation
Everything you need to build on Tenzro Network. From edge AI inference to decentralized data access.
Quick Install
Install the SDK for your preferred language
TypeScript
npm install @tenzro/cloudPython
pip install tenzroRust
cargo add tenzroHello World
Connect to Tenzro Cloud and run AI inference
TypeScript
import { TenzroCloud } from '@tenzro/cloud'
const client = new TenzroCloud({
apiKey: process.env.TENZRO_API_KEY
})
// Run AI inference
const response = await client.ai.chat({
model: 'llama-3.3-70b',
messages: [
{ role: 'user', content: 'Hello, Tenzro!' }
]
})
console.log(response.choices[0].message.content)Network Architecture
Light Nodes
Edge devices and browsers. Run AI inference locally with WebGPU. Connect to full nodes for blockchain data via SPV proofs.
8 languages: TypeScript, Python, Rust, Go, Swift, C++, Java, Kotlin
Full Nodes
Store complete blockchain state. Serve light clients with Merkle proofs. Provide RPC endpoints for the network.
3 languages: Python, Rust, Go
Validators
Run THAC consensus. Produce blocks every 10 seconds. Earn rewards through staking and block production.
3 languages: Python, Rust, Go