Skip to content

Commit

Permalink
chore: change bootnode domains
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielMartinezRodriguez committed Jan 31, 2024
1 parent 7ab69d0 commit f725ef3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions chain-specs/mainnet.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"id": "mainnet",
"chainType": "Live",
"bootNodes": [
"/dns4/s0.mainnet.stble.io/tcp/30333/p2p/12D3KooWNGnx5ZbeCkea9HVR5TTMjA5hyPqhLCBdM9KejPXD7GvQ",
"/dns4/s1.mainnet.stble.io/tcp/30333/p2p/12D3KooWAcZMqS6TjCNXFaZ6a3u6sob87cG3f4E3yUhAwNmzCAWF",
"/dns4/s2.mainnet.stble.io/tcp/30333/p2p/12D3KooWC9QrhPSewpysp3LPiXxo9Go25a8VgGsKCFwhBrccJ21n"
"/dns4/s0.mainnet.stabilityprotocol.com/tcp/30333/p2p/12D3KooWNGnx5ZbeCkea9HVR5TTMjA5hyPqhLCBdM9KejPXD7GvQ",
"/dns4/s1.mainnet.stabilityprotocol.com/tcp/30333/p2p/12D3KooWAcZMqS6TjCNXFaZ6a3u6sob87cG3f4E3yUhAwNmzCAWF",
"/dns4/s2.mainnet.stabilityprotocol.com/tcp/30333/p2p/12D3KooWC9QrhPSewpysp3LPiXxo9Go25a8VgGsKCFwhBrccJ21n"
],
"telemetryEndpoints": null,
"protocolId": null,
Expand Down
6 changes: 3 additions & 3 deletions node/src/chain_spec/mainnet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ pub fn mainnet_config() -> Result<ChainSpec, String> {
},
// Bootnodes
vec![
MultiaddrWithPeerId::from_str("/dns4/s0.mainnet.stble.io/tcp/30333/p2p/12D3KooWNGnx5ZbeCkea9HVR5TTMjA5hyPqhLCBdM9KejPXD7GvQ").unwrap(),
MultiaddrWithPeerId::from_str("/dns4/s1.mainnet.stble.io/tcp/30333/p2p/12D3KooWAcZMqS6TjCNXFaZ6a3u6sob87cG3f4E3yUhAwNmzCAWF").unwrap(),
MultiaddrWithPeerId::from_str("/dns4/s2.mainnet.stble.io/tcp/30333/p2p/12D3KooWC9QrhPSewpysp3LPiXxo9Go25a8VgGsKCFwhBrccJ21n").unwrap()
MultiaddrWithPeerId::from_str("/dns4/s0.mainnet.stabilityprotocol.com/tcp/30333/p2p/12D3KooWNGnx5ZbeCkea9HVR5TTMjA5hyPqhLCBdM9KejPXD7GvQ").unwrap(),
MultiaddrWithPeerId::from_str("/dns4/s1.mainnet.stabilityprotocol.com/tcp/30333/p2p/12D3KooWAcZMqS6TjCNXFaZ6a3u6sob87cG3f4E3yUhAwNmzCAWF").unwrap(),
MultiaddrWithPeerId::from_str("/dns4/s2.mainnet.stabilityprotocol.com/tcp/30333/p2p/12D3KooWC9QrhPSewpysp3LPiXxo9Go25a8VgGsKCFwhBrccJ21n").unwrap()
],
// Telemetry
None,
Expand Down

0 comments on commit f725ef3

Please sign in to comment.