bitcoin/contrib/seeds
furszy f9ac96b8d6
net: decouple state independent service flags from desirable ones
This former one will be moved to the peer manager class in the
following-up commit.
2024-01-15 10:28:20 -03:00
..
.gitignore contrib: Use asmap for ASN lookup in makeseeds 2022-05-31 11:57:49 +02:00
asmap.py test: replace Callable/Iterable with their collections.abc alternative (PEP 585) 2023-11-16 19:12:14 +01:00
generate-seeds.py doc: update references to kernel/chainparams.cpp 2023-04-18 11:02:05 +01:00
makeseeds.py test: use built-in collection types for type hints (Python 3.9 / PEP 585) 2023-10-25 01:10:21 +02:00
nodes_main.txt p2p: update hardcoded mainnet seeds for 25.x 2023-04-20 06:08:22 -07:00
nodes_main_manual.txt p2p: update manual tor/i2p/cjdns mainnet seeds for 25.x 2023-04-20 06:08:22 -07:00
nodes_test.txt contrib: update testnet torv3 hardcoded seeds 2022-08-28 14:34:49 +02:00
README.md net: decouple state independent service flags from desirable ones 2024-01-15 10:28:20 -03:00

Seeds

Utility to generate the seeds.txt list that is compiled into the client (see src/chainparamsseeds.h and other utilities in contrib/seeds).

Be sure to update PATTERN_AGENT in makeseeds.py to include the current version, and remove old versions as necessary (at a minimum when SeedsServiceFlags() changes its default return value, as those are the services which seeds are added to addrman with).

The seeds compiled into the release are created from sipa's DNS seed and AS map data. Run the following commands from the /contrib/seeds directory:

curl https://bitcoin.sipa.be/seeds.txt.gz | gzip -dc > seeds_main.txt
curl https://bitcoin.sipa.be/asmap-filled.dat > asmap-filled.dat
python3 makeseeds.py -a asmap-filled.dat -s seeds_main.txt > nodes_main.txt
cat nodes_main_manual.txt >> nodes_main.txt
python3 generate-seeds.py . > ../../src/chainparamsseeds.h