Use cases
AI Agent Compute
Self-Provisioning Agents
// Agent detects it needs to run a heavy task
if (task.requiresGPU || task.memoryGB > 8) {
const vm = await sadclaw.purchaseVm({
tier: 'LARGE',
durationHours: 2,
});
// Run task on dedicated VM
await runTaskOnVm(vm, task);
// Clean up when done
await sadclaw.destroyVm(vm.nftMint);
}Agent Swarms
Compute Marketplace
Development & Testing
Disposable Dev Environments
CI/CD Runners
Load Testing
Decentralized Applications
DAO-Owned Infrastructure
Decentralized Services
Backup Infrastructure
Trading & Finance
VM Arbitrage
Compute Derivatives
Collateralized Lending
Research & Education
Reproducible Research
Educational Labs
Last updated