πŸ₯¦Fresh Peer

URL="https://symphony-rpc.node9x.com/net_info"
response=$(curl -s $URL)
PEERS=$(echo $response | jq -r '.result.peers[] | "\(.node_info.id)@\(.remote_ip):" + (.node_info.listen_addr | capture("(?<ip>.+):(?<port>[0-9]+)$").port)' | paste -sd "," -)
echo "PEERS=\"$PEERS\""
sed -i 's|^persistent_peers *=.*|persistent_peers = "'$PEERS'"|' $HOME/.symphonyd/config/config.toml
sudo systemctl daemon-reload
sudo systemctl restart symphonyd
sudo journalctl -u symphonyd -f -o cat

➑️ Number of peers to which the node connects

curl -Ss localhost:(whatever you typed in custom_port)657/net_info | jq .result.n_peers

➑️ You can see the details of your peers with this code

curl -sS http://localhost:(whatever you typed in custom_port)657/net_info | jq -r '.result.peers[] | "\(.node_info.id)@\(.remote_ip):\(.node_info.listen_addr)"' | awk -F ':' '{print $1":"$(NF)}'

Last updated