-
Notifications
You must be signed in to change notification settings - Fork 990
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update seed lists for mainnet and testnet (#3738)
- Loading branch information
1 parent
030bd0e
commit 34d23f5
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,18 +35,18 @@ use crate::util::StopState; | |
|
||
/// DNS Seeds with contact email associated - Mainnet | ||
pub const MAINNET_DNS_SEEDS: &[&str] = &[ | ||
"mainnet.seed.grin.icu", // [email protected] | ||
"mainnet.seed.713.mw", // [email protected] | ||
"mainnet.seed.grin.lesceller.com", // [email protected] | ||
"mainnet.seed.grin.prokapi.com", // [email protected] | ||
"grinseed.yeastplume.org", // yeastplume@protonmail.com | ||
"grinseed.revcore.net", // yeastplume@gmail.com | ||
"mainnet-seed.grinnode.live", // [email protected] | ||
"mainnet.grin.punksec.de", // [email protected] | ||
"grinnode.30-r.com", // [email protected] | ||
]; | ||
/// DNS Seeds with contact email associated - Testnet | ||
pub const TESTNET_DNS_SEEDS: &[&str] = &[ | ||
"floonet.seed.grin.lesceller.com", // [email protected] | ||
"floonet.seed.grin.prokapi.com", // [email protected] | ||
"grintestseed.revcore.net", // yeastplume@protonmail.com | ||
"grintestseed.revcore.net", // yeastplume@gmail.com | ||
"testnet.grin.punksec.de", // [email protected] | ||
"testnet.grinnode.30-r.com", // [email protected] | ||
]; | ||
|