Run a Node
Guideline to run a full node on DERA chain
Dependencies
A public static IP
Build the Node binary
Clone the AvalancheGo repository
git clone https://github.com/ava-labs/avalanchego.gitCompile binary
cd avalanchego
./scripts/build.shCreate AvalancheGo service directory
sudo mkdir /var/lib/avalanchegoCopy executable to binary directory
sudo cp avalanchego/build/avalanchego /usr/local/bin/
sudo chmod 755 /usr/local/bin/avalanchegoCreate AvalancheGo working directory
Download the subnet EVM from official repository
Copy subnet EVM to AvalancheGo working directory
mDVK6hF1rcPB2e7ftmYbMQgnYMnQSnnk7cUfu8dENAYqH9XJA is the VMID of DERA chain.
Create chainConfigs directory
2XCTEc8CfNK9MtQWYMfgNt32QjZsZqq92LH7eTV5xY8YjY44du is blockchain ID of DERA chain.
Create chain
config.json
with content.
Create
config.jsonfor AvalancheGo
with content.
Create systemd startup scripts
with content.
Load the systemd service
Start and enable the AvalancheGo service
Tracking the bootstrap process, until the node is fully bootstrapped
Verify node is fully bootstrapped
DERA chain
P-chain
Ensure that both requests response are
Then your node is ready to work to secure DERA chain consensus.
Last updated