In continuation to https://forum.polygon.technology/t/introducing-the-amoy-testnet-for-polygon-pos/13388, the basic setup of Amoy Testnet is complete with a small number of nodes and the network is up and running. More tooling and services are required in order to onboard users and developers. This document outlines the steps for setting up a new Amoy Testnet node.
<aside> 💡 Follow the steps in the same sequence as described here, else you might run into issues.
</aside>
Install the latest Amoy version (currently v1.0.3-amoy-2
) with sentry
profile for Heimdall:
curl -L <https://raw.githubusercontent.com/maticnetwork/install/main/heimdall.sh> | bash -s -- v1.0.3-amoy-2 amoy sentry
Install the latest Amoy version (currently v1.1.0-amoy-2
) with sentry
/archive
profile for Bor:
curl -L <https://raw.githubusercontent.com/maticnetwork/install/main/bor.sh> | bash -s -- v1.1.0-amoy-2 amoy <sentry/archive>
In this section, we will go through steps to configure the node.
Initialize Heimdall configs
# For Amoy
sudo -u heimdall heimdalld init --chain=amoy --home /var/lib/heimdall
You will need to add a few details in the config.toml
file. Open /var/lib/heimdall/config/config.toml
and
Change Moniker
moniker=<enter unique identifier> For example, moniker=my-sentry-node
Change the value of Prometheus to true
Set the max_open_connections
value to 100
Make sure you keep the proper formatting when you make the changes above.