Follow-up to the doc rebrand, addressing the previously out-of-scope legacy: - Currency unit: strCurrencyUnits (chainparams.cpp) and CURRENCY_UNIT (amount.cpp) "HUSH" -> "DRAGONX". Both are display-only (RPC help + metrics); no logic comparisons, verified. - depends mirrors: libsodium/boost/utfcpp fetched from git.hush.is/attachments; repointed to canonical upstream (GitHub release / archives.boost.io / GitHub tag) with the existing sha256 hashes verified to match those sources. - Seeds: nodes_main.txt now lists the five node[1-5].dragonx.is IPs (DNS-resolved) instead of Hush nodes; regenerated src/chainparamsseeds.h (was compiling Hush seed IPs as the fixed fallback); generate-seeds.py header now says DragonX; hush_seed_nodes.txt updated to DragonX seeds. - Deleted Hush-history / wrong-for-DragonX files: contrib/snapshot/ (block-500000 Hush airdrop, ~10MB), notary_seeds.txt (Hush notaries; DragonX isn't notarized), and the Hush emission scripts hush_supply, hush_supply_old, hush_halvings, hush_block_subsidy_per_halving (hardcode Hush's 340000/12.5 economics). Kept: hush_scanner (engine invoked by dragonx_scanner) and the "The Hush developers" copyright headers (lineage credit). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
25 lines
1.1 KiB
C
25 lines
1.1 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,0x00,0x00, // 212.56.41.63
|
|
0x01,0x04,0xc2,0x8c,0xc6,0xb0,0x00,0x00, // 194.140.198.176
|
|
0x01,0x04,0xd4,0x38,0x29,0x2f,0x00,0x00, // 212.56.41.47
|
|
0x01,0x04,0x90,0x7e,0x93,0xa5,0x00,0x00, // 144.126.147.165
|
|
0x01,0x04,0xb0,0x7e,0x57,0xf1,0x00,0x00, // 176.126.87.241
|
|
};
|
|
|
|
static const uint8_t chainparams_seed_test[] = {
|
|
0x01,0x04,0x01,0x02,0x03,0x04,0x00,0x00, // 1.2.3.4
|
|
};
|
|
#endif // HUSH_CHAINPARAMSSEEDS_H
|