Avalanche
Chapter 51: Avalanche Nodes
Section titled “Chapter 51: Avalanche Nodes”Overview
Section titled “Overview”Avalanche is a high-performance, scalable blockchain platform using a novel consensus protocol called Avalanche.
51.1 Avalanche Basics
Section titled “51.1 Avalanche Basics”| Feature | Value |
|---|---|
| Consensus | Avalanche (Snowman) |
| Block Time | < 1 second |
| TPS | 4,500+ |
| Token | AVAX |
51.2 Node Types
Section titled “51.2 Node Types”| Type | Description |
|---|---|
| Validator | Participates in consensus |
| API Node | RPC for applications |
| Archive Node | Full history |
51.3 Install AvalancheGo
Section titled “51.3 Install AvalancheGo”Install
Section titled “Install”# Downloadwget https://github.com/ava-labs/avalanchego/releases/download/v1.10.13/avalanchego-linux-amd64-v1.10.13.tar.gz
# Extracttar -xzf avalanchego-linux-amd64-v1.10.13.tar.gz
# Run./avalanchego51.4 Configuration
Section titled “51.4 Configuration”Create Config
Section titled “Create Config”# Create configmkdir -p ~/.avalanchego/confignano ~/.avalanchego/config/config.json{ "network-id": "mainnet", "http-host": "0.0.0.0", "http-port": 9650, "staking-enabled": false, "track-rewards": true}51.5 RPC API
Section titled “51.5 RPC API”Endpoints
Section titled “Endpoints”| Endpoint | Port |
|---|---|
| HTTP | 9650 |
| WebSocket | 9651 |
Example
Section titled “Example”# Get block chain IDcurl -X POST http://localhost:9650/ext/bc/C chainidSummary
Section titled “Summary”- Avalanche uses unique Avalanche consensus
- Lightweight node setup
- High throughput
Next Chapter
Section titled “Next Chapter”In Chapter 52: Polkadot/Substrate Nodes, we’ll explore Polkadot.
Last Updated: 2026-02-20