Skip to content

Commit

Permalink
Merge pull request #56 from stratisproject/seednodes
Browse files Browse the repository at this point in the history
Upgrade seednodes and DNS seeders
  • Loading branch information
dangershony authored Jun 26, 2018
2 parents 75d17fc + 3b587fb commit c15605a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
6 changes: 4 additions & 2 deletions src/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,10 @@ class CTestNetParams : public CMainParams {

vFixedSeeds.clear();
vSeeds.clear();
vSeeds.push_back(CDNSSeedData("testseednode1", "testnode1.stratisplatform.com"));
vSeeds.push_back(CDNSSeedData("testseednode2", "testnode2.stratis.cloud"));
vSeeds.push_back(CDNSSeedData("testseednode1", "testnet1.stratisplatform.com"));
vSeeds.push_back(CDNSSeedData("testseednode2", "testnet2.stratisplatform.com"));
vSeeds.push_back(CDNSSeedData("testseednode3", "testnet3.stratisplatform.com"));
vSeeds.push_back(CDNSSeedData("testseednode4", "testnet4.stratisplatform.com"));

base58Prefixes[PUBKEY_ADDRESS] = std::vector<unsigned char>(1, 65); // stratis test net start with T
base58Prefixes[SCRIPT_ADDRESS] = std::vector<unsigned char>(1, 196);
Expand Down
12 changes: 9 additions & 3 deletions src/chainparamsseeds.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,17 @@ static SeedSpec6 pnSeed6_main[] = {
{{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x0d,0x5b,0x5b,0xf2}, 16178},
{{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x0d,0x5b,0x5e,0x48}, 16178},
{{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x6b,0xaa,0xd9,0x9c}, 16178},
{{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb2,0x3e,0x2f,0x2e}, 16178}

{{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xb2,0x3e,0x2f,0x2e}, 16178},
{{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x65,0xc8,0xc6,0x9b}, 16178},
{{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x67,0x18,0x4c,0x15}, 16178},
{{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x68,0xac,0x18,0x4f}, 16178}
};

static SeedSpec6 pnSeed6_test[] = {
{{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x0d,0x40,0x4c,0x30}, 26178}
{{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x0d,0x40,0x4c,0x30}, 26178},
{{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x33,0x8c,0xe7,0x7d}, 26178}, // danger cloud node
{{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x0d,0x46,0x51,0x05}, 3389}, // beard cloud node
{{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0xbf,0xeb,0x55,0x83}, 3389}, // fassa cloud node
{{0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x34,0xe8,0x3a,0x34}, 26178} // neurosploit public node
};
#endif

0 comments on commit c15605a

Please sign in to comment.