Skip to content

Avalanche

Avalanche is a high-performance, scalable blockchain platform using a novel consensus protocol called Avalanche.


FeatureValue
ConsensusAvalanche (Snowman)
Block Time< 1 second
TPS4,500+
TokenAVAX

TypeDescription
ValidatorParticipates in consensus
API NodeRPC for applications
Archive NodeFull history

Terminal window
# Download
wget https://github.com/ava-labs/avalanchego/releases/download/v1.10.13/avalanchego-linux-amd64-v1.10.13.tar.gz
# Extract
tar -xzf avalanchego-linux-amd64-v1.10.13.tar.gz
# Run
./avalanchego

Terminal window
# Create config
mkdir -p ~/.avalanchego/config
nano ~/.avalanchego/config/config.json
{
"network-id": "mainnet",
"http-host": "0.0.0.0",
"http-port": 9650,
"staking-enabled": false,
"track-rewards": true
}

EndpointPort
HTTP9650
WebSocket9651
Terminal window
# Get block chain ID
curl -X POST http://localhost:9650/ext/bc/C chainid

  • Avalanche uses unique Avalanche consensus
  • Lightweight node setup
  • High throughput

In Chapter 52: Polkadot/Substrate Nodes, we’ll explore Polkadot.


Last Updated: 2026-02-20