Need usable peer bor (Mumbai testnet)
It's impossible to sync bor on mumbai testnet since all the enodes found over the internet are not alive or have a broken state. Does anyone have a list of peers that can be used to sync bor on mumbai testnet?
Which documentation are you following to setup your Mumbai node
I'm just following the instructions here inside the docker folder, then I got the enode list from different sources (Matic official documentation first) https://github.com/maticnetwork/launch/blob/master/docker/README.md
Coincidentally, I have a similar issue. Managed to sync heimdall (on Mumbai), but now Bor has trouble finding peers. I downloaded the snapshot from: https://snapshots.matic.today/. I am following this blogpost: https://chasewright.com/how-to-run-a-polygon-matic-mainnet-node/ While also incorporating the correct seeds and startup nodes as mentioned in this github repo.
This is the current docker compose file I used to deploy Bor. It starts up nicely, the snapshots are read succesfully, but cant find any peers. And "Snapshot extension registration" fails continuously (due to "peer connected on snap without compatible eth support").
version: '3.4'
services:
bor:
container_name: bor
image: bor:latest
build: /home/anonymous/Repositories/bor
volumes:
- /data/matic/mumbai/bor/:/root/.bor
ports:
- "10545:10545" # RPC
- "31333:31333" # Peers (TCP)
- "31333:31333/udp" # Peers (UDP)
command:
- bor
- --syncmode=full
- --networkid=137
- --bor.heimdall=http://heimdallr:1317
- --miner.gaslimit=200000000
- --miner.gastarget=20000000
- --datadir=/root/.bor/
- --http
- --port=31333
- --http.addr=0.0.0.0
- --http.port=10545
- --http.api=eth,net,web3,admin,debug,bor
- --http.corsdomain=*
- --http.vhosts=*
- --ws
- --ws.addr=0.0.0.0
- --ws.port=10545
- --ws.api=eth,net,web3,admin,debug,bor
- --ws.origins=*
- --bootnodes=enode://095c4465fe509bd7107bbf421aea0d3ad4d4bfc3ff8f9fdc86f4f950892ae3bbc3e5c715343c4cf60c1c06e088e621d6f1b43ab9130ae56c2cacfd356a284ee4@18.213.200.99:30303
The correct documentation to follow is: https://docs.matic.network/docs/integrate/full-node-deployment/
Thanks, Ill try that. I checked the bootnodes with nmap and it seems they are actually up. Maybe the docker is complicating the network connectivity.
Please contact official discord for more support if this is still relevant