P2P Node Release

Should you possess a public IP and aim to establish a fluent mode network, you might proceed in the following manner.

Add a command, when you start your node

Binary

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

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

[Install]
WantedBy=multi-user.target

Docker

sudo docker run -d -p 30333:30333 -v /var/lib/node_bevm_test_storage:/root/.local/share/bevm btclayer2/bevm:v0.1.1 bevm "--chain=testnet" "--name=your_node_name" "--pruning=archive" --telemetry-url "wss://telemetry.bevm.io/submit 0"

Open the endpoint with the firewall

sudo iptables -A INPUT -p tcp --dport 30333 -j ACCEPT
sudo iptables -A OUTPUT -p tcp --dport 30333 -j ACCEPT

Find your nodePublicKey

docker logs -f <your container id>

Contribute your node to the community

Send via Discord or another method, and replace 'publicIP' and 'nodePublicKey' with your configuration.

/ip4/publicIP/tcp/30333/ws/p2p/nodePublicKey

Last updated