Deploy custom modular blockchains with the Satellite SDK. Leverage DPO3 consensus, HyperLoom ABFT, and intermodular architecture for next-generation decentralized applications.
Massive throughput with parallel-sharded DAG-based execution
Dynamic Proof of 3 combining Stake, Storage, and Work
Modular architecture with seamless cross-chain communication
Complete development kit with HyperLoom execution engine
The Satellite SDK makes it simple to deploy custom modular blockchains with your own consensus parameters, governance rules, and economic models.
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; }