Documentation
Build on ComputeNet
Everything you need to understand and integrate with the ComputeNet protocol
Documentation is under active development. Some sections contain placeholder content.
⌘K
Documentation Sections
Quick Example
example.tsDraft SDK
import { ComputeNet } from '@computenet/sdk';
// Initialize client (testnet)
const client = new ComputeNet({
network: 'testnet',
// API keys not required for testnet
});
// Submit a compute job
const job = await client.submit({
runtime: 'wasm',
code: myWasmModule,
inputs: { data: inputData },
verification: 'full'
});
// Wait for verified result
const result = await job.waitForCompletion();
console.log('Receipt:', result.receipt);Getting Started
New to ComputeNet? Start with the fundamentals.
Explore the Protocol
Dive into the whitepaper for a comprehensive technical overview of the ComputeNet protocol.
Read Whitepaper