💾Node Installation
Polkadot Mainnet guide
Hardware requirements:
Node Type | CPU | RAM | Storage |
---|---|---|---|
Mainnet | 8 | 32GB | 2TB |
Preparing the server
Docker and docker-compose
Build 02.09.24
After launch, we wait for our node to synchronize. You can track our condition using telemetry
After the node has synchronized, we pull out the key from our node by entering the command
Creating a validator
Go to the chain and first create a wallet
We create a validator. To do this, select
Network - Staking - Accounts - Validator
SnapShot Mainnet | RocksDB (pruned) - updated every 24 hours
You can check the size and time of snapshot creation with this command
curl -sI https://polkadot.snapshot.stavr.tech/polkadot-snap.tar.lz4 | grep "last" && curl -sI https://polkadot.snapshot.stavr.tech/polkadot-snap.tar.lz4 | grep content-length | awk '{printf "%.2f GB\n", $2/1024/1024/1024}'
SnapShot Mainnet | RocksDB (Archive) - updated every 7 days
You can check the size and time of snapshot creation with this command
curl -sI https://polkadot-archive.snapshot.stavr.tech/polkadot-archive-snap.tar.lz4 | grep "last" && curl -sI https://polkadot-archive.snapshot.stavr.tech/polkadot-archive-snap.tar.lz4 | grep content-length | awk '{printf "%.2f GB\n", $2/1024/1024/1024}'
Monitoring
You can set up your node status alarm here - Monitoring
Security
You can create secure management of your wallet and your node by following this links.
logs
restart
delete node
Last updated