launch icon indicating copy to clipboard operation
launch copied to clipboard

Need usable peer bor (Mumbai testnet)

Open iltumio opened this issue 4 years ago • 5 comments

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?

iltumio avatar Jul 16 '21 11:07 iltumio

Which documentation are you following to setup your Mumbai node

delroybosco avatar Jul 16 '21 11:07 delroybosco

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

iltumio avatar Jul 16 '21 11:07 iltumio

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

stephansmit avatar Jul 16 '21 11:07 stephansmit

The correct documentation to follow is: https://docs.matic.network/docs/integrate/full-node-deployment/

delroybosco avatar Jul 16 '21 11:07 delroybosco

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.

stephansmit avatar Jul 16 '21 11:07 stephansmit

Please contact official discord for more support if this is still relevant

temaniarpit27 avatar Nov 17 '22 06:11 temaniarpit27