Skip to content

Solana

Solana is a high-performance blockchain known for fast transaction processing. It uses a unique Proof of History (PoH) consensus mechanism.


FeatureValue
ConsensusProof of History + Proof of Stake
Block Time~0.4 seconds
TPS65,000+ theoretical
TokenSOL

ComponentMinimumRecommended
CPU12 cores16+ cores
RAM128 GB256 GB
Storage1 TB NVMe2 TB NVMe
Network1 Gbps10 Gbps

Terminal window
# Install Solana tools
sh -c "$(curl -sSfL https://release.solana.com/v1.18.4/install)"
# Verify
solana --version

Terminal window
# Create validator identity
solana-keygen new -o ~/validator-keypair.json
# Create vote account
solana-keygen new -o ~/vote-account-keypair.json
Terminal window
solana-validator \
--identity ~/validator-keypair.json \
--vote-account ~/vote-account-keypair.json \
--rpc-port 8899 \
--entrypoint entrypoint.mainnet-beta.solana.com:8001 \
--known-validator 7Np41oe9qjpffe7o9f9udmrm9fjn7euhPGXK7x5rVFH \
--known-validator A1WbuX2JuaA8z6ZcA5J2J9E3vBj9dG5m5K5y5y5y5y5 \
--limit-ledger-size 50000000 \
--enable-rpc \
--rpc-port 8899

Terminal window
solana-validator \
--identity ~/validator-keypair.json \
--rpc-port 8899 \
--entrypoint entrypoint.mainnet-beta.solana.com:8001 \
--enable-rpc
Terminal window
# Check cluster health
solana cluster-version
# Get slot
solana slot
# Get block height
solana block-height

QuestionAnswer
What is Proof of History?Solana’s unique consensus using verifiable delay functions
Why is Solana so fast?PoH + parallel transaction processing

  • Solana requires high-spec hardware (256GB RAM)
  • Uses Proof of History consensus
  • Run validators or RPC nodes

In Chapter 51: Avalanche Nodes, we’ll explore Avalanche.


Last Updated: 2026-02-20