Choose Your Tool
Pick the right tool for your use case - from full-featured SDKs to simple REST APIs
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:
- Choose your SDK or tool
- Follow the installation guide
- Copy the examples
- 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);