mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-05 14:06:27 -05:00
Merge bitcoin/bitcoin#30008: seeds: Pull additional nodes from my seeder and update fixed seeds
41ad84a00c
seeds: Use fjahr's more up to date asmap (Ava Chow)d8fd1e0faf
seeds: Fixed seeds update (Ava Chow)f1f24d7214
seeds: Add testnet4 fixed seeds file (Ava Chow)8ace71c737
seeds: Remove manual onion and i2p seeds (Ava Chow)ed5b86cbe4
seeds: Add testnet instructions (Ava Chow)0676515397
seeds: Also pull from achow101 seeder (Ava Chow)5bab3175a6
makeseeds: Configurable minimum blocks for testnet4's smaller chain (Ava Chow)d2465dfac6
makeseeds: Shuffle ips after parsing (Ava Chow)af550b3a0f
makeseeds: Support CJDNS (Ava Chow)d5a8c4c4bd
makeseeds: Update user agent regex (Ava Chow) Pull request description: The [DNS seeder](https://github.com/achow101/dnsseedrs) that I wrote collects statistics on node reliability in the same way that sipa's seeder does, and also outputs this information in the same file format. Thus it can also be used in our fixed seeds update scripts. My seeder additionally crawls onion v3, i2p, and cjdns, so will now be able to set those fixed seeds automatically rather than curating manual lists. In doing this update, I've found that `makeseeds.py` is missing newer versions from the regex as well as cjdns support; both of these have been updated. I also noticed that the testnet fixed seeds are all manually curated and sipa's seeder does not appear to publish any testnet data. Since I am also running the seeder for testnet, I've added the commands to generate testnet fixed seeds from my seeder's data too. Lastly, I've updated all of the fixed seeds. However, since my seeder has not found any cjdns nodes that met the reliability criteria (possibly due to connectivity issues present in those networks), I've left the previous manual seeds for that network. ACKs for top commit: fjahr: re-ACK41ad84a00c
virtu: ACK [41ad84a
](41ad84a00c
) Tree-SHA512: 6ba0141f053d9d6ae7d8c9574f061be38f3e65b28de1d6660c1885ab942623b5a0ec70754b4fcfc5d98fe970f5f179a940d5880b5061ed698f7932500e01d3ee
This commit is contained in:
commit
37cdb5f248
8 changed files with 2072 additions and 4177 deletions
1
contrib/seeds/.gitignore
vendored
1
contrib/seeds/.gitignore
vendored
|
@ -1,2 +1,3 @@
|
|||
seeds_main.txt
|
||||
seeds_test.txt
|
||||
asmap-filled.dat
|
||||
|
|
|
@ -8,13 +8,18 @@ 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
|
||||
The seeds compiled into the release are created from sipa's and achow101'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
|
||||
curl https://mainnet.achownodes.xyz/seeds.txt.gz | gzip -dc >> seeds_main.txt
|
||||
curl https://testnet.achownodes.xyz/seeds.txt.gz | gzip -dc > seeds_test.txt
|
||||
curl https://raw.githubusercontent.com/fjahr/asmap-data/main/latest_asmap.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 makeseeds.py -a asmap-filled.dat -s seeds_test.txt > nodes_test.txt
|
||||
# TODO: Uncomment when a seeder publishes seeds.txt.gz for testnet4
|
||||
# python3 makeseeds.py -a asmap-filled.dat -s seeds_testnet4.txt -m 30000 > nodes_testnet4.txt
|
||||
python3 generate-seeds.py . > ../../src/chainparamsseeds.h
|
||||
```
|
||||
|
|
|
@ -10,6 +10,7 @@ import argparse
|
|||
import collections
|
||||
import ipaddress
|
||||
from pathlib import Path
|
||||
import random
|
||||
import re
|
||||
import sys
|
||||
from typing import Union
|
||||
|
@ -25,7 +26,7 @@ MAX_SEEDS_PER_ASN = {
|
|||
'ipv6': 10,
|
||||
}
|
||||
|
||||
MIN_BLOCKS = 730000
|
||||
MIN_BLOCKS = 840000
|
||||
|
||||
PATTERN_IPV4 = re.compile(r"^((\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})):(\d+)$")
|
||||
PATTERN_IPV6 = re.compile(r"^\[([0-9a-z:]+)\]:(\d+)$")
|
||||
|
@ -41,11 +42,13 @@ PATTERN_AGENT = re.compile(
|
|||
r"0.19.(0|1|2|99)|"
|
||||
r"0.20.(0|1|2|99)|"
|
||||
r"0.21.(0|1|2|99)|"
|
||||
r"22.(0|1|99)|"
|
||||
r"23.(0|1|99)|"
|
||||
r"24.(0|1|99)|"
|
||||
r"25.(0|1|99)|"
|
||||
r"26.(0|99)|"
|
||||
r"22.(0|1|99).0|"
|
||||
r"23.(0|1|99).0|"
|
||||
r"24.(0|1|2|99).(0|1)|"
|
||||
r"25.(0|1|2|99).0|"
|
||||
r"26.(0|1|99).0|"
|
||||
r"27.(0|1|99).0|"
|
||||
r"28.(0|99).0|"
|
||||
r")")
|
||||
|
||||
def parseline(line: str) -> Union[dict, None]:
|
||||
|
@ -86,6 +89,8 @@ def parseline(line: str) -> Union[dict, None]:
|
|||
if m.group(1) in ['::']: # Not interested in localhost
|
||||
return None
|
||||
ipstr = m.group(1)
|
||||
if ipstr.startswith("fc"): # cjdns looks like ipv6 but always begins with fc
|
||||
net = "cjdns"
|
||||
sortkey = ipstr # XXX parse IPv6 into number, could use name_to_ipv6 from generate-seeds
|
||||
port = int(m.group(2))
|
||||
else:
|
||||
|
@ -152,6 +157,7 @@ def filterbyasn(asmap: ASMap, ips: list[dict], max_per_asn: dict, max_per_net: i
|
|||
ips_ipv46 = [ip for ip in ips if ip['net'] in ['ipv4', 'ipv6']]
|
||||
ips_onion = [ip for ip in ips if ip['net'] == 'onion']
|
||||
ips_i2p = [ip for ip in ips if ip['net'] == 'i2p']
|
||||
ips_cjdns = [ip for ip in ips if ip["net"] == "cjdns"]
|
||||
|
||||
# Filter IPv46 by ASN, and limit to max_per_net per network
|
||||
result = []
|
||||
|
@ -176,6 +182,7 @@ def filterbyasn(asmap: ASMap, ips: list[dict], max_per_asn: dict, max_per_net: i
|
|||
# Add back Onions (up to max_per_net)
|
||||
result.extend(ips_onion[0:max_per_net])
|
||||
result.extend(ips_i2p[0:max_per_net])
|
||||
result.extend(ips_cjdns[0:max_per_net])
|
||||
return result
|
||||
|
||||
def ip_stats(ips: list[dict]) -> str:
|
||||
|
@ -185,12 +192,13 @@ def ip_stats(ips: list[dict]) -> str:
|
|||
if ip is not None:
|
||||
hist[ip['net']] += 1
|
||||
|
||||
return f"{hist['ipv4']:6d} {hist['ipv6']:6d} {hist['onion']:6d} {hist['i2p']:6d}"
|
||||
return f"{hist['ipv4']:6d} {hist['ipv6']:6d} {hist['onion']:6d} {hist['i2p']:6d} {hist['cjdns']:6d}"
|
||||
|
||||
def parse_args():
|
||||
argparser = argparse.ArgumentParser(description='Generate a list of bitcoin node seed ip addresses.')
|
||||
argparser.add_argument("-a","--asmap", help='the location of the asmap asn database file (required)', required=True)
|
||||
argparser.add_argument("-s","--seeds", help='the location of the DNS seeds file (required)', required=True)
|
||||
argparser.add_argument("-m", "--minblocks", help="The minimum number of blocks each node must have", default=MIN_BLOCKS, type=int)
|
||||
return argparser.parse_args()
|
||||
|
||||
def main():
|
||||
|
@ -205,9 +213,10 @@ def main():
|
|||
with open(args.seeds, 'r', encoding='utf8') as f:
|
||||
lines = f.readlines()
|
||||
ips = [parseline(line) for line in lines]
|
||||
random.shuffle(ips)
|
||||
print('Done.', file=sys.stderr)
|
||||
|
||||
print('\x1b[7m IPv4 IPv6 Onion I2P Pass \x1b[0m', file=sys.stderr)
|
||||
print('\x1b[7m IPv4 IPv6 Onion I2P CJDNS Pass \x1b[0m', file=sys.stderr)
|
||||
print(f'{ip_stats(ips):s} Initial', file=sys.stderr)
|
||||
# Skip entries with invalid address.
|
||||
ips = [ip for ip in ips if ip is not None]
|
||||
|
@ -216,7 +225,7 @@ def main():
|
|||
ips = dedup(ips)
|
||||
print(f'{ip_stats(ips):s} After removing duplicates', file=sys.stderr)
|
||||
# Enforce minimal number of blocks.
|
||||
ips = [ip for ip in ips if ip['blocks'] >= MIN_BLOCKS]
|
||||
ips = [ip for ip in ips if ip['blocks'] >= args.minblocks]
|
||||
print(f'{ip_stats(ips):s} Enforce minimal number of blocks', file=sys.stderr)
|
||||
# Require service bit 1.
|
||||
ips = [ip for ip in ips if (ip['service'] & 1) == 1]
|
||||
|
@ -227,6 +236,7 @@ def main():
|
|||
'ipv6': 50,
|
||||
'onion': 10,
|
||||
'i2p' : 10,
|
||||
'cjdns': 10,
|
||||
}
|
||||
ips = [ip for ip in ips if ip['uptime'] > req_uptime[ip['net']]]
|
||||
print(f'{ip_stats(ips):s} Require minimum uptime', file=sys.stderr)
|
||||
|
@ -244,7 +254,7 @@ def main():
|
|||
# Sort the results by IP address (for deterministic output).
|
||||
ips.sort(key=lambda x: (x['net'], x['sortkey']))
|
||||
for ip in ips:
|
||||
if ip['net'] == 'ipv6':
|
||||
if ip['net'] == 'ipv6' or ip["net"] == "cjdns":
|
||||
print(f"[{ip['ip']}]:{ip['port']}", end="")
|
||||
else:
|
||||
print(f"{ip['ip']}:{ip['port']}", end="")
|
||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -1,29 +1,311 @@
|
|||
2yq4xcwzvb2ktyci5lpmb2q3nl6qqywb7nrf6fkcthha7l3tle2q.b32.i2p:0
|
||||
4g5uvbkvi5fvyditekvzajldtzgurorqjupuwtmymrjloq6cjm5q.b32.i2p:0
|
||||
f3w7soepsy7jqwf7dlo4ro2qkyapg2lrb2dkkvwfwuymgaqvljqa.b32.i2p:0
|
||||
nr7nozlb54xv3ozg4ksvcr3ofzfwfeud2n7xijywvt22ixzal7qa.b32.i2p:0
|
||||
o6j3b33bv26vthoqzjy3h7a3qsuqbtbe3ulajmjzsl43vaqyieyq.b32.i2p:0
|
||||
ocqipbbxx4paopgkkbnj234ie7opzrtca5gtiwr6oda3h32rzgsa.b32.i2p:0
|
||||
r2zdpkcslf7e4t2fmglu45xhfw5zgupthdh5pcewdo6jajumveda.b32.i2p:0
|
||||
xgctj4seo3ofstiymoyeuzq74bvddrbr6jtia6erodlf5va3cz5a.b32.i2p:0
|
||||
y5e6aqz4jkjjoeipoxwurzc2jrfv6ilvfbdqmjqk574maba5uara.b32.i2p:0
|
||||
ye3ajv2tgpq7jvvzzn5wxbtmd3txev3axsdla5bkpobeiwccyjjq.b32.i2p:0
|
||||
[fccb:248:11a6:1042:bca:1218:f7ce:7d3d]:18333
|
||||
2.87.72.235:18333 # AS6799
|
||||
3.253.163.14:18333 # AS16509
|
||||
5.182.4.106:18333 # AS49505
|
||||
5.188.119.196:18333 # AS49505
|
||||
5.189.175.92:18333 # AS51167
|
||||
5.252.21.232:18333 # AS50673
|
||||
5.255.97.91:18333 # AS60404
|
||||
5.255.99.130:18333 # AS60404
|
||||
8.222.228.217:18333 # AS45102
|
||||
18.143.108.213:18333 # AS16509
|
||||
23.93.89.199:18333 # AS46375
|
||||
23.94.96.134:18333 # AS23352
|
||||
23.137.57.100:18333 # AS16904
|
||||
31.220.99.65:18333 # AS12430
|
||||
35.192.191.229:18333 # AS396982
|
||||
35.200.201.79:18333 # AS15169
|
||||
35.233.152.219:18333 # AS15169
|
||||
37.27.58.134:18333 # AS3209
|
||||
37.27.116.87:18333 # AS3209
|
||||
40.118.228.187:18333 # AS8075
|
||||
43.247.184.50:18333 # AS4134
|
||||
45.77.25.14:18333 # AS20473
|
||||
45.129.182.59:18333 # AS47147
|
||||
47.254.127.252:18333 # AS45102
|
||||
51.77.42.234:18333 # AS16276
|
||||
51.79.82.75:18333 # AS16276
|
||||
51.250.75.48:18333 # AS200350
|
||||
52.174.187.17:18333 # AS8075
|
||||
62.72.27.212:18333 # AS32641
|
||||
62.168.65.42:18333 # AS5578
|
||||
62.210.207.63:18333 # AS12876
|
||||
62.210.222.73:18333 # AS12876
|
||||
65.108.39.171:18333 # AS24940
|
||||
66.85.145.134:18333 # AS12189
|
||||
66.135.29.243:18333 # AS20473
|
||||
66.183.0.205:18333 # AS395570
|
||||
67.4.82.9:18333 # AS209
|
||||
68.197.203.181:18333 # AS6128
|
||||
69.59.18.23:18333 # AS397444
|
||||
69.61.32.242:18333 # AS141518
|
||||
69.197.185.106:18333 # AS32097
|
||||
71.8.29.12:18333 # AS20115
|
||||
71.13.92.62:18333 # AS20115
|
||||
71.171.123.161:18333 # AS701
|
||||
72.46.129.50:18333 # AS53340
|
||||
73.22.9.231:18333 # AS7922
|
||||
73.53.42.105:18333 # AS7922
|
||||
74.213.175.99:18333 # AS21949
|
||||
77.163.221.171:18333 # AS1136
|
||||
79.192.39.105:18333 # AS3320
|
||||
80.79.4.249:18333 # AS49981
|
||||
80.93.179.252:18333 # AS50340
|
||||
80.241.194.147:18333 # AS12964
|
||||
81.17.102.136:18333 # AS15598
|
||||
83.231.240.3:18333 # AS2914
|
||||
84.24.77.191:18333 # AS6830
|
||||
84.155.113.177:18333 # AS3320
|
||||
84.247.164.103:18333 # AS49788
|
||||
85.203.53.89:18333 # AS39351
|
||||
85.203.53.149:18333 # AS39351
|
||||
85.208.69.12:18333 # AS25091
|
||||
85.208.69.13:18333 # AS25091
|
||||
88.80.148.215:18333 # AS44901
|
||||
89.117.19.191:18333 # AS7029
|
||||
89.153.161.16:18333 # AS2860
|
||||
89.155.239.107:18333 # AS2860
|
||||
91.123.182.164:18333 # AS51648
|
||||
91.148.141.210:18333 # AS203380
|
||||
101.100.139.249:18333 # AS133579
|
||||
104.237.131.138:18333 # AS63949
|
||||
109.233.109.26:18333 # AS41798
|
||||
122.208.117.197:18333 # AS2519
|
||||
124.236.16.91:18333 # AS4134
|
||||
129.226.198.211:18333 # AS132203
|
||||
129.226.198.246:18333 # AS132203
|
||||
131.188.40.47:18333 # AS680
|
||||
132.226.61.215:18333 # AS31898
|
||||
135.84.136.157:18333 # AS174
|
||||
137.184.2.124:18333 # AS14061
|
||||
138.2.100.114:18333 # AS31898
|
||||
141.98.219.142:18333 # AS20326
|
||||
141.98.219.199:18333 # AS20326
|
||||
149.50.101.27:18333 # AS174
|
||||
149.154.176.47:18333 # AS3257
|
||||
152.53.17.53:18333 # AS81
|
||||
152.53.18.109:18333 # AS81
|
||||
158.178.228.41:18333 # AS39550
|
||||
160.80.11.66:18333 # AS137
|
||||
162.0.208.90:18333 # AS22612
|
||||
162.244.80.218:18333 # AS19624
|
||||
164.92.140.21:18333 # AS14061
|
||||
169.155.45.180:18333 # AS3356
|
||||
169.155.171.252:18333 # AS3356
|
||||
172.172.62.86:18333 # AS7018
|
||||
175.209.228.141:18333 # AS4766
|
||||
176.108.193.97:18333 # AS47914
|
||||
178.21.118.82:18333 # AS49544
|
||||
178.21.118.96:18333 # AS49544
|
||||
178.63.87.163:18333 # AS24940
|
||||
184.74.240.157:18333 # AS7843
|
||||
185.28.96.16:18333 # AS8220
|
||||
185.70.43.192:18333 # AS19905
|
||||
185.107.68.135:18333 # AS43350
|
||||
185.132.177.104:18333 # AS49981
|
||||
185.186.208.124:18333 # AS206428
|
||||
185.190.24.72:18333 # AS9002
|
||||
185.209.223.195:18333 # AS51167
|
||||
185.210.125.33:18333 # AS205671
|
||||
185.232.70.226:18333 # AS47147
|
||||
186.154.207.228:18333 # AS19429
|
||||
188.117.132.82:18333 # AS31242
|
||||
188.213.90.149:18333 # AS43414
|
||||
188.246.168.144:18333 # AS8595
|
||||
192.198.81.243:18333 # AS31863
|
||||
193.198.34.24:18333 # AS2108
|
||||
194.95.66.129:18333 # AS680
|
||||
194.110.169.133:18333 # AS9121
|
||||
194.233.91.153:18333 # AS141995
|
||||
195.123.244.121:18333 # AS24971
|
||||
195.179.230.180:18333 # AS12874
|
||||
198.58.102.18:18333 # AS63949
|
||||
203.132.94.196:18333 # AS38195
|
||||
205.209.119.150:18333 # AS19318
|
||||
206.204.104.7:18333 # AS6939
|
||||
[2001:19f0:4400:63c7:5400:4ff:fecc:fc1e]:18333 # AS20473
|
||||
[2001:41d0:303:2dbe::]:18333 # AS16276
|
||||
[2001:41d0:303:87b9::]:18333 # AS16276
|
||||
[2001:41d0:601:2000::1f70]:18333 # AS16276
|
||||
[2001:41d0:602:2dea::]:18333 # AS16276
|
||||
[2001:41d0:700:544c::]:18333 # AS16276
|
||||
[2001:41d0:800:1d55::]:18333 # AS16276
|
||||
[2001:41d0:800:3d4c::]:18333 # AS16276
|
||||
[2001:470:1f05:4e5::2020]:18333 # AS6939
|
||||
[2001:470:1f07:6f2:1671:5a1c:2433:b517]:18333 # AS6939
|
||||
[2001:470:1f07:6f2:2e58:b9ff:fe18:e093]:18333 # AS6939
|
||||
[2001:470:1f07:6f2:4dfe:d8fe:3dc7:63f]:18333 # AS6939
|
||||
[2001:470:1f07:6f2:6a34:c61d:97b1:c98c]:18333 # AS6939
|
||||
[2001:638:a000:4140::ffff:47]:18333 # AS680
|
||||
[2001:728:1000:402:546e:98ff:fe16:68c6]:18333 # AS2914
|
||||
[2001:bc8:1201:409:1618:77ff:fe5f:b12]:18333 # AS12876
|
||||
[2401:c080:1000:4cb2:3eec:efff:feb9:8604]:18333 # AS20473
|
||||
[2401:d002:3902:700:8708:37c4:e231:d3d8]:18333 # AS38195
|
||||
[2402:1f00:8101:713::]:18333 # AS16276
|
||||
[2600:3c00::f03c:91ff:fe5b:4cf3]:18333 # AS63949
|
||||
[2600:3c00::f03c:91ff:fe9e:7f03]:18333 # AS63949
|
||||
[2601:603:5300:83b7:0:ff:fe00:420a]:18333 # AS7922
|
||||
[2604:1380:4531:1700::5]:18333 # AS54825
|
||||
[2604:a880:2:d0::65:c001]:18333 # AS14061
|
||||
[2605:a143:2162:7067::1]:18333 # AS174
|
||||
[2607:5300:203:540a::]:18333 # AS16276
|
||||
[2607:5300:60:85a9::]:18333 # AS16276
|
||||
[2620:6e:a000:1:43:43:43:43]:18333 # AS397444
|
||||
[2804:431:e038:cd01:aaa1:59ff:fe0d:44b8]:18333 # AS27699
|
||||
[2806:2f0:90a0:45fe:dd25:f6df:4741:4a3f]:18333 # AS3356
|
||||
[2a00:1298:8001::6542]:18333 # AS5578
|
||||
[2a01:4f8:173:230a::2]:18333 # AS24940
|
||||
[2a01:4f8:190:4026::2]:18333 # AS24940
|
||||
[2a01:4f8:231:1eaa::2]:18333 # AS24940
|
||||
[2a01:4f8:242:4c1b::2]:18333 # AS24940
|
||||
[2a01:4f9:1a:97e8::2]:18333 # AS24940
|
||||
[2a01:4f9:1a:9a57::2]:18333 # AS24940
|
||||
[2a01:4f9:2a:2ddd::2]:18333 # AS24940
|
||||
[2a01:4f9:3070:266e::2]:18333 # AS24940
|
||||
[2a01:4f9:3071:219d::2]:18333 # AS24940
|
||||
[2a01:4f9:3080:358c::2]:18333 # AS24940
|
||||
[2a01:e0a:3b3:1420:7ca0:3a9a:5cc3:b644]:18333 # AS12322
|
||||
[2a02:4780:10:402f::1]:18333 # AS47583
|
||||
[2a02:c202:2189:3702::1]:18333 # AS51167
|
||||
[2a02:c206:2075:3352::1]:18333 # AS51167
|
||||
[2a02:c206:2196:799::1]:18333 # AS51167
|
||||
[2a03:4000:2a:514::]:18333 # AS47147
|
||||
[2a03:cfc0:8000:2a::9532:651b]:18333 # AS201814
|
||||
[2a04:52c0:102:2219::1]:18333 # AS60404
|
||||
[2a04:52c0:102:49af::1]:18333 # AS60404
|
||||
[2a04:52c0:104:160c::1]:18333 # AS60404
|
||||
[2a05:d01c:392:c900:78ea:ba95:334c:1d7c]:18333 # AS16509
|
||||
2lsncqdflwk272dhydrxf7ikfy23ppnmm54dnynyxiym6lqf3wowrmqd.onion:18333
|
||||
36fwktckggarkclbpu2pumsdpck46ahe6cwpozd2gm6q7kgdqljclmad.onion:18333
|
||||
3rlrfxaj4sphzedozs27qrefuw6u3v2cqu2ctbrbvhsc3wn34iezxjad.onion:18333
|
||||
3tao6wnydihsqndjw5pqbko25rxk23wb53gtyv7vmbmc2j7vw74cr2ad.onion:18333
|
||||
44sgcv5dvpplt32enlneddyl4gd4z3tbezl2scedwccndyzrrp6lcgyd.onion:18333
|
||||
4w3f2mxe4ftodocermsazs3qlpo37igkdgne6ka2p6wnnrgwpzqw65yd.onion:18333
|
||||
67l6l2k7mqbl2btyvo5h5lki3kxcrgbunlk7brcloyaoaftbs5mnsuad.onion:18333
|
||||
6m7khktveimc35yjusgeprndw43grjexs5bpruwkogbh5lovv47drlid.onion:18333
|
||||
6rnqpqqcpllqhjoa4gwrtq5yi6fdch6uqzapdee2gq67gxgsl73v4uqd.onion:18333
|
||||
7ph7mrc24te57mvppajfkfj4mk7zuz4teukymt3wgpdpw6vpndeivtyd.onion:18333
|
||||
7poqajl6svz4vr3aqi7vdtar2t56crbrtj6yi75ydrt3ighyx7q6qvyd.onion:18333
|
||||
7zlqrihb5do5ebbmjwgspxigqfdmkfslkqtg2ngdc6ypsunzb4iootqd.onion:18333
|
||||
adjnsxivlsb5m4e4bfthvvccjfv7zkpyjyebvatlhyqycykd7ibjyoqd.onion:18333
|
||||
adstabjz7ec2y3jt4w2dvummowzv7g6m2f3kajeejffuaz7ojwj6epqd.onion:18333
|
||||
aesy6tfufadkut6flu2bsqgnw2422ur2ynjalguxlzuzuktg3zehttqd.onion:18333
|
||||
ailib3qk4brh4z2nvmmadoi6gbsw7fihfxtr7rnm4z5d6qcspr7ky2qd.onion:18333
|
||||
ayx35r2mhwydczzoqu7b6dl3sup4oht74sgnlrjkxybzh2hmfnaix3qd.onion:18333
|
||||
bek652lfs7mje46zauhfxtdh2zohe2jpbsmlhulusuzao27uwpwd76ad.onion:18333
|
||||
bkzo7mpxuar7rhsbiwdaxqcymixarcbdmb3sdaqtv6yb2svqttz2s6ad.onion:18333
|
||||
bwyudvl3if3r7ese2caymfnbxqztc3mgr2i5hurjttlabhl3dfgyzead.onion:18333
|
||||
bzn63lsmsuvzlg4uqadyylxaggdcrzkb56muw2b43ft5qkynvzfopbyd.onion:18333
|
||||
c7zrq2yqt6rtn5dxkczp5bv62k2jncv3mscoo24c24rljbplr2dvhsid.onion:18333
|
||||
cqhut2deas6savhop2yue7vebu77fd3einx36tlgxr7bb6vlef3lb2yd.onion:18333
|
||||
cv5z3izcu7fmtby4hyjliphp6bh2a3zmm27tfendycu34tw2tka72syd.onion:18333
|
||||
cyl7eujkxl3s3cbuhmouhkxt4cdfplpbha2z6j5adacdaq2rjj2dlzyd.onion:18333
|
||||
d63vf45ta4chrewnruyvypm7ybfxtut327crtq6qfyrvcwx434rli5qd.onion:18333
|
||||
efqfw6vjq7gpgyhosu3qf24hsshxpbhay426ccsgz54key4cvwund6yd.onion:18333
|
||||
ddsxs3zdkspqkcszmx74rkw7gqjgpz2ufb4qqh4dz5iaysoe3fvtpdyd.onion:18333
|
||||
duuwdfnlrudonwgdvvaud3i52zdxg2bjey7jmzskgcauiyejyffrh5qd.onion:18333
|
||||
dwb47cmqa2tjpmvjaear7gdcars2lez6niefhi4qf22qehtyta6577qd.onion:18333
|
||||
e27nbjkou2mkquoytjil27g5h34wkgjtrwupn3muc2c2b76dfdkvkiyd.onion:18333
|
||||
e7tkrf54ng3q5vcn5gn77zwjwm74lkfav4mwdux3pvon6yvqg3tf46qd.onion:18333
|
||||
eev3vuh55dymhn3z4lmhargcy2xzm6l4yyd5b4bgfstx2sf75ms6mdid.onion:18333
|
||||
eyjahrgj7qadzcotanxfbhshsjm7yj3p6tssiupiub7k5s55nxc5xwad.onion:18333
|
||||
f6awicobzr3x4fz3dnxbroarbuleq26jzltnl6wknkph2luxruwijiqd.onion:18333
|
||||
fbimesnyhzubbzqc3uaufzkbyfmnkxvypoxaveaub7rzpzh2foxrn2yd.onion:18333
|
||||
fjcr55gg3vv7qik64sxnihheuvkfytpvzm5jmgz55cp6427yvyjsotid.onion:18333
|
||||
fpzycmcz4drh46fhcfdkgibnp7qgioo3upquxyjwk6zegirbcd4xqcid.onion:18333
|
||||
fqls7cvum7lpawad7n5zrvmrqwrd76quc5r7pblndaod3wqjlpfzxgid.onion:18333
|
||||
fwswqt2rbdbstx5kza4gb7aok3gezazfgtokadqeiwgkgdkwwdmmidyd.onion:18333
|
||||
fx7erwmkuhj7p2eiuisjwg3g3a3aw6uglepa47gwc76dlrwpc3nn5uid.onion:18333
|
||||
ghqbqp3dirya7espnj3m3kh6mhalqxjv75muum4seukopedtwysxc2qd.onion:18333
|
||||
gpvbbdsv673zfg2mpbzxexnmv3oqakgqooyvyzrlhu6mucylfob4whid.onion:18333
|
||||
gri2j4tudvoxaz26jbzmn4kloo5z7qsi3vfi3c5ok5tunm3yzmfgwyqd.onion:18333
|
||||
gsw6sn27quwf6u3swgra6o7lrp5qau6kt3ymuyoxgkth6wntzm2bjwyd.onion:18333
|
||||
gy6nih4pmp5esyvvnhlj6qvk7zkbjuoswkxffyiip3dbkvsfxwz5zcqd.onion:18333
|
||||
hwipziotclxg3ledn5yj5j6n6pkrgnmlksozzlrtlnlpguvixox7naqd.onion:18333
|
||||
h4xr7yovy3kgrohdlb5zljtyweelyctfgf5q24nlhyoxbmjmbl7bfjyd.onion:18333
|
||||
h4yusgljraifanij4pxkw4qks4iilqbq35absi24cinuvuym56ge55ad.onion:18333
|
||||
hba3mphxhpuy4x5gjqyq64bwtlzlfuscxc7n5lh4k4oiwrgcz5ujwtid.onion:18333
|
||||
hj2txlxajdlh7jsfwqxtp3cltlptsr33ctjkbxhbzbyirkmcpfhsnyad.onion:18333
|
||||
hmtbnymouaimhnxazujw7i5b7hqdixrlibdyn3td4bdw4sj7sbnb7fqd.onion:18333
|
||||
htkiqaqoql7pjstenmw6v4blm6l57d6hl6mewxkmfi3qumozflx3gzyd.onion:18333
|
||||
hvbmmzvqrpgps2x5u4ip4ksf3e5m2fneac754gtnhjn2rsevni6cz3ad.onion:18333
|
||||
hvtxymvdb55u7lhdw6775akqy46inunl3uup27gnsxm2bqmv55wbacqd.onion:18333
|
||||
i5fjp7ggx62zlfkibzn7s6glpjp3h2ypfom3lmqixig7qbdgej35wfyd.onion:18333
|
||||
i5gphw2d224tniqkjebxdwz5ygbbo5gcushoyevv7x7o454b6qlrzeid.onion:18333
|
||||
ihalgm3hs54h7aq37hbryaxcdlowmlms54i4cz6hqbz4n2qjjiw5uwid.onion:18333
|
||||
ipbzs2lbe7lab2xaikvkdkwxian6t3nakaoltwbshpevbszdvoyyjiad.onion:18333
|
||||
iysx2dl4tpojiclh32iyhel6z7h227c7o7buzk5wuqw6qhuytvsu66yd.onion:18333
|
||||
jbgve7zi4vx5l7654ih4nzutspu36dvs66xlegciur2cpym4gdjigbyd.onion:18333
|
||||
jjfuyj7krgzkmpxvn3b2j2hwlzkmze3ezy3ifwk7dnswwawgmzqhjrqd.onion:18333
|
||||
jnphftehkfstwbko34idxlpo5fdw6lromkmeukxh3xclthlstehpg4ad.onion:18333
|
||||
jrhpwqahjrj75gtb7gt23eve65x7bbawy7j4edhmgbo5nj2mkaeghbyd.onion:18333
|
||||
jpujgmcr2ftklxrr7uwxh3jg43uqatys7wgosfbpfbx5txw2nz7wgnid.onion:18333
|
||||
jsc4frvvnl2d3bhzyofsc72xpztgm23nl4fnb4dwkzsxr6fhij2q5iyd.onion:18333
|
||||
jun6gdmbgasr57bhr4zs3dfhc6pzpaw27nqb4dadbai7yrbq55zskeid.onion:18333
|
||||
o52y7fadtubr4tuqhix6ymrin3qzn7ubh5tewuuehw5wxcbnfj6yaoad.onion:18333
|
||||
rigfm3joif5lsl7b7yr6d6cvddukawykm7kgguzfwi6dplckyz6x7gad.onion:18333
|
||||
t6d6epb5ccbo4e66iaanukraxpjmqiqsz6poj5uvxu2ownnhcguygdyd.onion:18333
|
||||
test2vozlxfznmfyxzkulf3l6qe6dti5hqfjsxar5lml45cjnyeusmyd.onion:18333
|
||||
uxtmtmpkfaxc6zcxaxgydrukyd5jdrcp2m5oubpimijy44rnjuywijad.onion:18333
|
||||
kamanho5clcpn5l3sc6ih3vb4skmfhgxw3h2mgs7e5idfezu5dw5oxyd.onion:18333
|
||||
kejyzttreyd7nj2sxx25nk4qwgxtuqybylxuqrjroe5mbhlr532dplad.onion:18333
|
||||
knkkqbxhdit4xilksb5ys3qnqv63tah5uvu3n2imu4bycipu354ambyd.onion:18333
|
||||
kpsy7bbqxiotk55aacjt2hiaj6h5pxjjvsb63hgos4ayfzwrmnsqgsad.onion:18333
|
||||
kwjxlauwjtecjfsiwopbl5pvn5n6z5rz76uk6osmlurd3uyuymcw7aid.onion:18333
|
||||
m27hd27n7dmnygddnp5bnf6vl5uks77jrq2uhtxxvgewclzjwsixz3ad.onion:18333
|
||||
m33zm5qtzgaf65ahaxbom75zoehyzr3lbqf2obtpzzzjebv7yd73fsyd.onion:18333
|
||||
mjs6pdnd5h4ycmsgruww4crsesqzdw3femdinsi6oghmjld7loycomid.onion:18333
|
||||
n23anw4zb7f3paroac626oc2sqy3yn5kjfpcqvb3lvdyx7dzzpovd3id.onion:18333
|
||||
n4e6fp6xoyo2glsafjwbaq3wirhldpjw4mskn5lzkm4o5lhh5n5k7uqd.onion:18333
|
||||
noyzwtpfqybyhemrmxzd7nf4il5mhsolupp7xtmrjosat7qdmq4xgrad.onion:18333
|
||||
oln7ybci53wk4g5n42nipyixvyjxbludsbrfsmhnirb6tk7ovlikd5id.onion:18333
|
||||
oobwtn5csi4auevb2ns2b5rrjnxmhlzdmay4zxtzvkj7tayrgwfddiqd.onion:18333
|
||||
oond3qmndkbdg76ryyjztbmsmvoj43u64gjhr2nvqriujyteeu43irqd.onion:18333
|
||||
oqxivxpit74wsoptsb6kr3k2xeqpzfdozvw4m2wvvujrflxo4ykmzmqd.onion:18333
|
||||
oxkyujnjbl6k7kcxactyf4akp3ejtftnbmztk6utxt4zy4fhhtk3x5qd.onion:18333
|
||||
p2oitystyas5pxeo262mox6aof4tukybnl7cj7fcwoshqesvfk2yzhad.onion:18333
|
||||
pj2rxq2sfbwtsqqcbnfnwkg36d72yce56qmp2sjjmb7hvzpzai3ndead.onion:18333
|
||||
pu3zcecujzbsdaogf4qgo3ue67livoza62awlffjnqnribgmvyqfoxad.onion:18333
|
||||
q5qox756id5nfdu6ht4dghc35jezls4bgjcdnrds3pwndvdx32zmwlad.onion:18333
|
||||
qe2jbe447he6panfvpyqhyntf7346gmuf55bxrmdzggmgwyjsyknhxyd.onion:18333
|
||||
qf2taqwtz3pstt73hgbrfvtilgecsc556lizkzk2cisdqi7lrnst5byd.onion:18333
|
||||
qiep4hvuovedbbc36hl7nwslwi6ah6uw4nnseyjdtc73cc5rfdauvnad.onion:18333
|
||||
qqzemertqrw5qdfakjoay35weu6qshr2l5h4smlnqafi3zqfztx2mhyd.onion:18333
|
||||
qzx5f2ig2rk2ssrbopz2zlljq5mkeh3izhhx3t3cepse5qnhvpo2tzid.onion:18333
|
||||
r2bdfkchj2z6nrb56alubzmb4twzdncckbcxsvkszjc6mrinibakj3ad.onion:18333
|
||||
rfi2hdpjhhknalltbwdvyuhskh5yjs66rqzpy6ley7xtu4kvbeob6fqd.onion:18333
|
||||
rra7q7x3euc3ozyealiv3tsywrz34l466faxohmttwtf5dts73musjid.onion:18333
|
||||
sf2fkr6hgfezefxaqfqqn5rengrlkvwytrzepsavwotehp2lkvuys6id.onion:18333
|
||||
shph2uqcvbe2hc25q3ln73qsche5ddqb4u5tkmgqv73aicrmmkkj4kid.onion:18333
|
||||
slpigm5ep4zan3a65bybne67phjiyesbuk5s3bodefuhnx2cfdtit6qd.onion:18333
|
||||
sxm6kwrdp6f2ggaozhrl47xuy3es3sgm3ivppmh4xm3hfmetvwbyrcad.onion:18333
|
||||
t3z7sscjdbnsydohxcs5nmoxfi35p6zv4jv5jsltsl4datztkefumbid.onion:18333
|
||||
tdnctk4lx7jnklojisdczp6h4b4ejtuetyh5cbemzmcno7vvo7whvaad.onion:18333
|
||||
trxouvgcwrc3rkewpzvkxbfvpltfwmgl37woiujj4vn63zwhvk4xwbid.onion:18333
|
||||
tyo6jvqjh34r2b7i477xlcrwt7rq2fwuwpax5s3nw3tfbtwbox7aakyd.onion:18333
|
||||
u3znfxh6yjvclu3l646zzmgclqkmmrrrwtb5urtr4wd6svhrhdgrdxid.onion:18333
|
||||
uc25t5mdmnpxn52qib3cps4qyc4ghbntitetzia2vkqaawivyqzdhkad.onion:18333
|
||||
ud55gevhzhhcjsaghfzqq7wywxmw7n6syhwsds2uw4j7oj2oh5zxb6qd.onion:18333
|
||||
ueyykmnyqk2bnmbgvmqrb4jfbjvpgeew6cuq4gaqe7v2oiyxaubkx4qd.onion:18333
|
||||
uw7if6wybpzzwrawp6rdtkcript7vmuo4bptlg4den7t2o733j4hwrid.onion:18333
|
||||
vctlwaqgmu53eutz2hewuakcipfgtyljsd7czut4dd62xr3rp6fqezad.onion:18333
|
||||
vqnkdmpmecc5kondj32jwbemmruhmd5gkmfngkscetibzozryp4elkad.onion:18333
|
||||
w2nnsjp3o5ndh4reorwsudmkjvy3bou5gt7fmusvp3ne2fojgypapmyd.onion:18333
|
||||
wnxgjgjgplv5iu4mssyuunycvku4qnqr5t4q6cfdt47k7uwrfifuirad.onion:18333
|
||||
wou7tjvuqmql27mqmxbtsrrdxn4dqbti3jbpnklkruqjrztty2jmj4qd.onion:18333
|
||||
wpsahjbejxehpz772kzxonj777pejol2akcicduqov2r7ktm2b6l5pid.onion:18333
|
||||
wui5m2y5b7cms36ai6shzyqsg6qteejwmxsf26nyms6vcykxbvmh4uad.onion:18333
|
||||
wve6wksecq6eeu62phkkrjo5vydreenazzp5c6gttto5ynuyqjevddad.onion:18333
|
||||
x4wvxqotarjnii6ue4tfvqt5rxlc27p2c5imkipsu27oprfxstmdjgyd.onion:18333
|
||||
xafcyh6mxwebvcsgw4wcbuw7n4v7vbqhcznhwqcpqcu6dww2mjuw4nad.onion:18333
|
||||
xmzegggz4kmjmyip2dogvhj3a2m3s4mkimdjdqkwql5n3crqetddabid.onion:18333
|
||||
xr4vm6rxolszjw7m73mii35ppnyt7aqp7w53yyg7smcpbo2mg3fazpqd.onion:18333
|
||||
xr6damsupgddwwziixaeaogj67hnjdpjtey5bcnhs5ydppul4w5hnjyd.onion:18333
|
||||
xuhmq42du7dckfophyr2rmf75aqkp3bk6y3wyyc6jxw7jmpp66zlm3id.onion:18333
|
||||
zcep44k7unwjm2wxty4ijh2e4fv5zgbrvwlctzyaqnrqhltjfzrtodad.onion:18333
|
||||
y4eud6iabao4666vcq3qch6kvg6lg5q5hazzetk4jnwr6vcdyjdv2yyd.onion:18333
|
||||
y5h652jz6sgmb4bkcfnfxnj24gnczqf7lhd5lqbvdhf5mpll4gye5kid.onion:18333
|
||||
ya6s7ov7myixz3ql23u45hty7moxo3r4d26qainw55z656vtau676xid.onion:18333
|
||||
yda7kwpii33j2qpq32ftf6lp22znknswipjwaccvsqj7l337jvfesnid.onion:18333
|
||||
ykaknq35wnwbobp4hgsxdd3ve575bsflst6xppo5b4wc44fp3xpqavad.onion:18333
|
||||
yqlk3ooxjpjd6u7b4kabe3gidclf25yuqbcpbkwnedmljrmxm3smqrid.onion:18333
|
||||
zcsn3j6aswnrf56xj2n5jn4tlwmyoq4benjn5ujcgz46co2y5tm642id.onion:18333
|
||||
zefnna2a3ga4ez2nutvypma7my35prw3ycinbqwva7v4pf3aurqhjcyd.onion:18333
|
||||
zevf5zwmkq2mvwuwyfavq62hjapkcdfslewiyi7mlrbx7vzidtij3xad.onion:18333
|
||||
zhiju2obxifqpjbcm6xtlgjdbof7jhoctvw3x57vhiftstb5hi3gmsqd.onion:18333
|
||||
zii3p3plpqt34xxd4mr7ofvvixnipt7ikohgvi3gtjlnzofjj37byiid.onion:18333
|
||||
zkqddzui5pkrqvjj2zwsf5kln7stlbmw5pmn6ut46fobvzyv2sn2ryid.onion:18333
|
||||
zmvizz7fd5hdue6wt3lwqumd6qwt4ijymmmotfzh75curq3mzjm53hyd.onion:18333
|
||||
zmxlrzoxg4fmso6l2xuq5tdxmlyakdqellzujh3a23iuzg4zlatnogqd.onion:18333
|
||||
zv5egkfmdpunhdm3whdaxgzpiapbkerfqd24juq647hmzhec7q7uxlid.onion:18333
|
||||
|
|
9
contrib/seeds/nodes_testnet4.txt
Normal file
9
contrib/seeds/nodes_testnet4.txt
Normal file
|
@ -0,0 +1,9 @@
|
|||
18.189.156.102:48333 # AS16509
|
||||
18.201.207.55:48333 # AS16509
|
||||
51.158.248.8:48333 # AS12876
|
||||
57.128.176.163:48333 # AS8220
|
||||
82.67.102.15:48333 # AS12322
|
||||
88.99.248.50:48333 # AS24940
|
||||
95.217.73.162:48333 # AS24940
|
||||
103.99.171.212:48333 # AS54415
|
||||
103.165.192.210:48333 # AS54415
|
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue