Developer Documentation

Build on NECTAR

Comprehensive guides, API references, and tools to help you build the next generation of decentralized applications.

Documentation

API Reference
Complete API documentation and examples
Smart Contracts
Build and deploy smart contracts
Node Operations
Run and maintain NECTAR nodes

Start Building in Minutes

NECTAR's developer-friendly APIs and SDKs make it easy to integrate blockchain functionality into your applications.

Simple REST and WebSocket APIs
Comprehensive SDKs for popular languages
Detailed examples and tutorials
Quick Start Example
JavaScript
import { NectarClient } from '@nectar/sdk';

const client = new NectarClient({
  network: 'mainnet',
  apiKey: 'your-api-key'
});

// Send a transaction
const tx = await client.sendTransaction({
  to: '0x742d35Cc6634C0532925a3b8D',
  value: '1000000000000000000', // 1 NECTAR
  data: '0x'
});

console.log('Transaction hash:', tx.hash);

Need Help?

Our community and support team are here to help you succeed