Documentation

Everything you need to build on NovaLayer, from quick start guides to comprehensive API references.

Quick Start

Deploy your first L2 in under 5 minutes

Get Started

API Reference

Complete API documentation and examples

View APIs

Examples

Sample applications and code snippets

Browse Examples

Quick Example

// Deploy your first NovaLayer L2
import { NovaLayer } from '@novalayer/sdk'

const nova = new NovaLayer({
  network: 'testnet',
  apiKey: process.env.NOVA_API_KEY
})

// Create a new L2 instance
const l2 = await nova.createL2({
  name: 'MyChain',
  consensus: 'proof-of-stake',
  mevProtection: true,
  features: ['ai-optimized', 'cross-chain']
})

console.log(`L2 deployed at: ${l2.rpcUrl}`)
// L2 deployed at: https://mychian.nova.dev