Standalone Installation
Instructions for the installation of the standalone PowerAgent package
Requirements
Recommended hardware requirements most likely will be capped from beneath by the requirements of your execution and consensus clients. However, if you install the PowerAgent on a separate machine than the blockchain node, it should have at least:
2-Core relatively modern CPU
8 GB RAM
20 GB SSD
Linux-based OS (Debian or Ubuntu are a good choice)
Standalone installation
Obtain a machine satisfying the requirements.
Install Node.js, npm, Docker Engine and Docker Compose.
Start a terminal session.
Clone the repo into a separate folder:
git clone https://github.com/eitelvolkerts/sepolia-agent-standalone
Follow the instructions specified here: powerpool-finance/powerpool-agent-v2-compose (github.com) to obtain a keyfile. Here is the short version:
git clone https://github.com/powerpool-finance/powerpool-agent-v2-compose
cd powerpool-agent-v2-compose
npm i
node jsongen.js ${A} ${B}
where ${A}
is the private key of your worker, and ${B}
is the password you choose to encrypt the private key.
Move the keyfile to the
sepolia-agent-standalone/keys/
directory. Remove the placeholder key.Open the file
sepolia-agent-standalone/config/main.yaml
and enter the values that are required there (see Chain-specific configs). Keep the quotation marks (""
) in the address field.
cd sepolia-agent-standalone
Launch the PowerAgent node:
docker compose up -d
This will create and launch the container. In order to remove it, execute the command:
docker compose down --rmi local
in sepolia-agent-standalone/
directory.
Last updated
Was this helpful?