Getting Started

Quick Start Guide

Connect your application to the Inception blockchain using ethers.js. Below is a simple example to get you started with network connection and basic transactions.

// Initialize ethers.js provider
const provider = new ethers.providers.JsonRpcProvider('https://rpc.inceptionchain.io');

// Get network information
const network = await provider.getNetwork();
console.log('Connected to chain:', network.chainId);

// Create a signer from private key
const wallet = new ethers.Wallet('YOUR_PRIVATE_KEY', provider);

// Send a transaction
const tx = await wallet.sendTransaction({
  to: '0x742d35Cc6634C0532925a3b844Bc9e7595f00000',
  value: ethers.utils.parseEther('1.0'),
  gasLimit: 21000,
  gasPrice: await provider.getGasPrice()
});

console.log('Transaction hash:', tx.hash);
const receipt = await tx.wait();
console.log('Transaction confirmed:', receipt.blockNumber);
Architecture

Core Concepts

Inception is built on a layered architecture designed for RWA tokenization at scale. Understanding these core components is essential for development.

Consensus Layer

Proof of Stake with Casper FFG finality mechanism. 24-second block time with economic security from INP token staking.

Execution Layer

EVM-compatible execution with Geth client. 100% Solidity compatible smart contracts with optimized gas efficiency.

Fee Model

EIP-1559 dynamic fees ensure predictable costs. Base fee burns to INP, with MEV-resistant transaction ordering.

RWA Infrastructure

Purpose-built for real-world assets. Custody connectors, compliance middleware, and identity verification included.

Configuration

Network Details

Parameter Value
Chain ID 13000
Network Name Inception Mainnet
RPC URL https://rpc.inceptionchain.io
Block Explorer https://scan.inceptionchain.io
Currency Symbol INP
Block Time 24 seconds

Build with Confidence

Everything you need to get started is here. Full documentation, code examples, and community support await.

Ready to Build?

Explore our RWA Dev Kit for pre-built tokenization tools, or dive deeper with our comprehensive tutorials and API reference.

RWA Dev Kit API Reference