Skip to main content

Build on Hoosat Blockchain

Fast, scalable, developer-friendly blockchain platform with comprehensive SDKs and tools

Why Hoosat Network?

Lightning Fast

Block time of just 1 second with instant transaction confirmation. Experience the speed of next-generation blockchain technology.

📈

Highly Scalable

BlockDAG architecture with 1 block per second throughput. Built to handle real-world application demands without congestion.

💎

Minimal Fees

Transaction fees as low as 0.00001 HTN. Perfect for micropayments, DeFi, and high-frequency applications.

💻

Developer Friendly

Multiple SDKs (Node.js, Browser), REST API, comprehensive documentation, and working examples. Build faster with better tools.

🔒

Secure by Design

ECDSA secp256k1 signatures, BLAKE3 hashing, and battle-tested cryptographic primitives. Your assets are protected.

🔗

UTXO Model

Bitcoin-like UTXO architecture ensures transparency, parallelization, and efficient state management for scalable dApps.

Quick Start

Get started with Hoosat in minutes:

  1. Choose your SDK or tool
  2. Follow the installation guide
  3. Copy the examples
  4. Start building!
// Node.js SDK
import { HoosatClient } from 'hoosat-sdk';

const client = new HoosatClient({
  host: 'localhost',
  port: 42420
});

// Send transaction
const txId = await client.sendTransaction({
  to: 'hoosat:qp...',
  amount: 100000000 // 1 HTN
});

console.log('TX ID:', txId);