node6.dragonx.is (13.140.58.251) and node7.dragonx.is (5.104.83.100) are new full nodes in regions the existing five did not cover. Both go into the compiled-in fixed-seed list and into the DRAGONX -addnode set. node8 through node10 are reserved names with no DNS records yet. A hostname that does not resolve is harmless on this path -- ThreadOpenAddedConnections simply fails to open the connection and retries on its normal cycle -- and reserving the names in the binary means a future seed can be brought into the default addnode set by creating a single DNS record, with no release and no waiting for users to upgrade. seed.dragonx.is already gives the DNS-seed path that property; this extends it to the addnode path. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01FU87LdsJZiZkfq1eXubpeo
27 lines
1.2 KiB
C
27 lines
1.2 KiB
C
// Copyright (c) 2016-2024 The Hush developers
|
|
// Distributed under the GPLv3 software license, see the accompanying
|
|
// file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html
|
|
// THIS FILE IS AUTOGENERATED, DO NOT MODIFY DIRECTLY
|
|
// Instead, update contrib/seeds/nodes_main.txt then run
|
|
// ./contrib/seeds/generate-seeds.py contrib/seeds > src/chainparamsseeds.h
|
|
// OR run: make seeds
|
|
#ifndef DRAGONX_CHAINPARAMSSEEDS_H
|
|
#define DRAGONX_CHAINPARAMSSEEDS_H
|
|
// List of fixed seed nodes for the DragonX network
|
|
// Each line contains a BIP155 serialized address.
|
|
//
|
|
static const uint8_t chainparams_seed_main[] = {
|
|
0x01,0x04,0xd4,0x38,0x29,0x3f,0x55,0x08, // 212.56.41.63:21768
|
|
0x01,0x04,0xc2,0x8c,0xc6,0xb0,0x55,0x08, // 194.140.198.176:21768
|
|
0x01,0x04,0xd4,0x38,0x29,0x2f,0x55,0x08, // 212.56.41.47:21768
|
|
0x01,0x04,0x90,0x7e,0x93,0xa5,0x55,0x08, // 144.126.147.165:21768
|
|
0x01,0x04,0xb0,0x7e,0x57,0xf1,0x55,0x08, // 176.126.87.241:21768
|
|
0x01,0x04,0x0d,0x8c,0x3a,0xfb,0x55,0x08, // 13.140.58.251:21768
|
|
0x01,0x04,0x05,0x68,0x53,0x64,0x55,0x08, // 5.104.83.100:21768
|
|
};
|
|
|
|
static const uint8_t chainparams_seed_test[] = {
|
|
0x01,0x04,0x01,0x02,0x03,0x04,0x00,0x00, // 1.2.3.4
|
|
};
|
|
#endif // DRAGONX_CHAINPARAMSSEEDS_H
|