Run a Node
Setting Up Your Node:
Node Installation:
How to install Polygon from source:
sudo apt update && sudo apt upgrade -y && sudo apt install -y build-essential curl wget jq
curl -L https://raw.githubusercontent.com/maticnetwork/install/main/heimdall.sh | bash -s -- <heimdall_version> <network_type> <node_type>heimdalld version --longsudo ufw allow 26656To install Erigon, run the below commands:
git clone https://github.com/0xPolygon/erigon.git
cd erigon
git checkout v3.1.3
make erigonCreate a new erigon service file
The configuration below assumes that you are running it on amoy
Run erigon using configs provided in the config.toml
Once the has been configured, we are ready to start the node and sync the data:
Start Erigon.
Last updated