Binary

BEVM TESTNET

Install BEVM Node by UI

Download the latest stable release of the BEVM node from the builds repo and unpack. Make sure you're running the Ubuntu system. Choose the corresponding binary package according to your operating system architecture.

Unzip the downloaded package then you can try to run the node:

$ bevm --version
bevm 0.1.3-1144e8d45ca

Install BEVM Node by cURL

curl -L -o bevm <binary url>

Run node (Run in the background)

Copy the path for the bevm, and then create a systemd service file.

sudo vim /etc/systemd/system/bevm.service

Copy the content into your file (be sure to understand how to use VI)

If you want to get incentives from the BEVM TestNet FullNode Program, set "your_node_name" as the BEVM address.

[Unit]
Description=BEVM Node Service
After=network.target

[Service]
Type=simple
User=your user name
ExecStart=<your bevm binary path> --chain=testnet --name="your node name" --pruning=archive 
Restart=always
RestartSec=0

[Install]
WantedBy=multi-user.target

To synchronize swiftly, you can manually configure a boot node in the following way. ExecStart=<your bevm binary path> --chain=testnet --name="your node name" --pruning=archive --telemetry-url "wss://telemetry.bevm.io/submit 0" --bootnodes="/ip4/publicIP/tcp/30333/ws/p2p/nodePublicKey" Where you can find bootnode here

Reload the systemd configuration

sudo systemctl daemon-reload

Start the node service

sudo systemctl start bevm.service

Set the service to start automatically on boot

sudo systemctl enable bevm.service

Check the service running status

sudo systemctl status bevm.service

Run node (Unrecommend)

You must set your node name.

$ bevm --chain=testnet --name="Your Node Name" --pruning=archive --telemetry-url "wss://telemetry.bevm.io/submit 0"

If you want to get incentives from the BEVM TestNet FullNode Program, set "your_node_name" as the BEVM address.

Last updated