// Copyright (c) 2018 The Bitcoin developers // Copyright (c) 2018-2021 The Hush developers // Distributed under the GPLv3 software license, see the accompanying // file LICENSE or https://www.gnu.org/licenses/gpl-3.0.en.html #ifndef __INCLUDED_COIN_H__ #define __INCLUDED_COIN_H__ #include static const std::string mainnet_seeds[] = {"node1.hush.is", "node2.hush.is", "node3.hush.is", "node4.hush.is", "node5.hush.is", "node6.hush.is", "node7.hush.is", "node8.hush.is" }; static const std::string testnet_seeds[] = { "nope.hush.is" }; static const int mainnet_port = 18030; static const int testnet_port = 28030; // old HUSH v2 //static unsigned char pchMessageStart[4] = { 0x24, 0xe9, 0x27, 0x64 }; // HUSH3: magic.d394d36e static unsigned char pchMessageStart[4] = { 0x6e, 0xd3, 0x94, 0xd3 }; static unsigned char pchMessageStart_testnet[4] = { 0xfa, 0x1a, 0xf9, 0xbf }; static const int REQUIRE_VERSION = 1987420; static const int PROTOCOL_VERSION = 1987423; static const int INIT_PROTO_VERSION = 209; #endif // __INCLUDED_COIN_H__