AI-Powered Cloud Services / Sandbox SDK — Deploy Secure Environments / Browser Agent — Automated Testing / Tax Agent — AI Tax Service / Try it free at ai.tangle.tools / AI-Powered Cloud Services / Sandbox SDK — Deploy Secure Environments / Browser Agent — Automated Testing / Tax Agent — AI Tax Service / Try it free at ai.tangle.tools /
Developers

Build on Tangle Network

Create and monetize decentralized services using the Blueprint SDK. Deploy AI agents, oracles, bridges, and MPC protocols — and earn on every execution.
Tangle Blueprints
The Future of Modular Infrastructure
Tangle Blueprints are an innovative way to build and monetize software with their flexibility and expressivity in leveraging open source libraries.
Modular Blueprint Diagram
Get Started
Your first Blueprint
Install the SDK, define your service, deploy to the network.
1
Learn the SDK

Read the docs, explore the Blueprint SDK, and understand how services are defined.

2
Build a Blueprint

Use the Blueprint Agent or the CLI to create your first service — oracles, bridges, AI agents, MPC.

3
Deploy & Earn

Deploy to Tangle Network. Operators pick up your Blueprint and you earn fees on every execution.

use blueprint_sdk::Router;
use blueprint_sdk::tangle::extract::{Caller, TangleArg, TangleResult};
use blueprint_sdk::alloy::sol;

sol! {
  struct PriceRequest  { string asset; }
  struct PriceResponse { uint256 price; }
}

pub const FETCH_PRICE: u8 = 0;

/// Fetch a live asset price. Operators earn
/// fees on every call to this job.
pub async fn fetch_price(
  Caller(who): Caller,
  TangleArg(req): TangleArg<PriceRequest>,
) -> TangleResult<PriceResponse> {
  let price = get_price(&req.asset).await?;
  TangleResult(PriceResponse { price });
}

pub fn router() -> Router {
  Router::new().route(FETCH_PRICE, fetch_price)
}
Ecosystem
Build on these platforms with AI
Custom templates and deep SDK integrations for 40+ ecosystems.
Coinbase

Coinbase

Solana

Solana

EigenLayer

EigenLayer

Worldcoin

Worldcoin

Arbitrum

Arbitrum

Base

Base

Chainlink

Chainlink

Aave

Aave

Aptos

Aptos

Sui

Sui

OpenZeppelin

OpenZeppelin

Starknet

Starknet

Learn more

Frequently Asked Questions

What is a Blueprint?
A Blueprint is a reusable template for a decentralized service. It defines jobs and background processes that operators run on Tangle Network. Blueprints let you monetize any software — oracles, bridges, AI agents, MPC protocols — as a service that earns fees on every execution.
What languages can I build with?
The Blueprint SDK supports Rust as the primary language, with TypeScript SDK extensions available. The Blueprint Agent (ai.tangle.tools) can generate Blueprints from natural language in any supported language.
How do I earn from my Blueprint?
When operators instantiate and run your Blueprint, you earn fees on every job execution. Pricing, billing, and payouts are handled by the protocol — you just deploy and collect.
Where do I start?
Visit docs.tangle.tools for the SDK documentation, or go to ai.tangle.tools to build your first Blueprint with AI assistance. Join our Discord for developer support.
Start building on Tangle.
Read the docs, build your first Blueprint, deploy to the network. Earn on every execution.