For Developers

Build on NECTAR's Hyper-Parallelized Network

Deploy custom modular blockchains with the Satellite SDK. Leverage DPO3 consensus, HyperLoom ABFT, and intermodular architecture for next-generation decentralized applications.

Why Build on NECTAR?

Hyper-Parallelized

Massive throughput with parallel-sharded DAG-based execution

DPO3 Consensus

Dynamic Proof of 3 combining Stake, Storage, and Work

Intermodular

Modular architecture with seamless cross-chain communication

Satellite SDK

Complete development kit with HyperLoom execution engine

SDKs & Tools

Satellite SDK
Complete development kit with HyperLoom execution engine
v2.1.0
50K+ downloads
NECTAR CLI
Command-line interface for chain deployment and management
v1.8.2
25K+ downloads
Module Templates
Pre-built modules for common blockchain functionality
v1.5.1
15K+ downloads
Validator Tools
DPO3 validator setup and monitoring utilities
v1.3.0
8K+ downloads

Deploy Your Chain in Minutes

The Satellite SDK makes it simple to deploy custom modular blockchains with your own consensus parameters, governance rules, and economic models.

Modular architecture with plug-and-play components
Built-in DPO3 consensus with customizable parameters
HyperLoom ABFT for high-performance execution
Deploy Custom Chain
Satellite SDK
import { SatelliteSDK, DPO3Consensus } from '@nectar/satellite';

const sdk = new SatelliteSDK({
  network: 'nectar-mainnet',
  apiKey: process.env.NECTAR_API_KEY
});

async function deployChain() {
  const chainConfig = {
    name: 'MyCustomChain',
    consensus: new DPO3Consensus({
      stakeWeight: 0.6,
      storageWeight: 0.3,
      workWeight: 0.1
    }),
    modules: [
      'governance',
      'defi',
      'nft'
    ],
    validators: 21
  };
  
  const deployment = await sdk.deployChain(chainConfig);
  console.log('Chain deployed:', deployment.chainId);
  
  return deployment;
}

Example Projects

Custom Chain Deployment
Satellite SDK
Deploy your own modular blockchain with custom consensus
Advanced
DeFi Module
TypeScript
Pre-built DeFi functionality with AMM and lending protocols
Intermediate
Cross-Chain Bridge
Rust
Bridge assets between NECTAR and other blockchain networks
Advanced
Governance Module
Go
Decentralized governance with proposal and voting systems
Intermediate

Join the Developer Community

Connect with other developers, get help, and stay updated on the latest developments