From c144fd4819b1f19c76c2650c611cfcfaa1058757 Mon Sep 17 00:00:00 2001 From: David Lehuby Date: Thu, 23 May 2024 16:05:22 +1000 Subject: [PATCH] Fix PEER_LIST_URL typo + update Seed List URL --- docs/exchange-operators/rosetta/run-with-docker.mdx | 2 +- .../block-producer-node/connecting-to-devnet.mdx | 8 ++++---- .../block-producer-node/connecting-to-the-network.mdx | 10 +++++----- docs/node-operators/seed-peers/getting-started.mdx | 2 +- docs/node-operators/troubleshooting.mdx | 4 ++-- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/docs/exchange-operators/rosetta/run-with-docker.mdx b/docs/exchange-operators/rosetta/run-with-docker.mdx index 7a1b89a45..e31a3d558 100644 --- a/docs/exchange-operators/rosetta/run-with-docker.mdx +++ b/docs/exchange-operators/rosetta/run-with-docker.mdx @@ -51,7 +51,7 @@ Run the container with following command (replace the image tag with one from do You can also create a file with the environment variables and pass it to the docker run command with `--env-file` flag. For example, create a file named `mainnet.env` with the following content: MINA_NETWORK=mainnet - PEER_LIST_URL=https://storage.googleapis.com/seed-lists/mainnet_seeds.txt + PEERS_LIST_URL=https://bootnodes.minaprotocol.com/networks/mainnet.txt MINA_ARCHIVE_DUMP_URL=https://storage.googleapis.com/mina-archive-dumps MINA_GENESIS_LEDGER_URL=http://673156464838-mina-genesis-ledgers.s3-website-us-west-2.amazonaws.com/mainnet/genesis_ledger.json BLOCKS_BUCKET=https://storage.googleapis.com/mina_network_block_data diff --git a/docs/node-operators/block-producer-node/connecting-to-devnet.mdx b/docs/node-operators/block-producer-node/connecting-to-devnet.mdx index cd52f5fb5..100e1141c 100644 --- a/docs/node-operators/block-producer-node/connecting-to-devnet.mdx +++ b/docs/node-operators/block-producer-node/connecting-to-devnet.mdx @@ -62,7 +62,7 @@ Commit 9b0369c27bb85c8ab2f8725c6e977eb27b53b826 on branch master To start a Mina node instance and connect to the Devnet network: ``` -mina daemon --peer-list-url https://storage.googleapis.com/seed-lists/devnet_seeds.txt +mina daemon --peer-list-url https://bootnodes.minaprotocol.com/networks/devnet.txt ``` The `--peer-list` argument specifies the the source file of seed peer addresses for the initial peer to connect to on the network. Mina is a [peer-to-peer](/glossary#peer-to-peer) protocol, so there is no dependence on a single centralized server. @@ -83,12 +83,12 @@ export MINA_PRIVKEY_PASS="My_V3ry_S3cure_Password" LOG_LEVEL=Info FILE_LOG_LEVEL=Debug EXTRA_FLAGS=" --block-producer-key " -PEER_LIST_URL=https://storage.googleapis.com/seed-lists/devnet_seeds.txt +PEERS_LIST_URL=https://bootnodes.minaprotocol.com/networks/devnet.txt ``` Replace `` with the full path to your block producer private key. For example, `/home/ubuntu/keys/my-wallet`. -If you do not want to produce blocks, then provide only the `PEER_LIST_URL`. +If you do not want to produce blocks, then provide only the `PEERS_LIST_URL`. Now, run the image with your `~/.mina-config` and `~/.mina-env` files mounted into the container: @@ -120,4 +120,4 @@ Monitor connectivity to the network: ```sh docker exec -it mina mina client status -``` \ No newline at end of file +``` diff --git a/docs/node-operators/block-producer-node/connecting-to-the-network.mdx b/docs/node-operators/block-producer-node/connecting-to-the-network.mdx index 056f40087..032b89d18 100644 --- a/docs/node-operators/block-producer-node/connecting-to-the-network.mdx +++ b/docs/node-operators/block-producer-node/connecting-to-the-network.mdx @@ -47,7 +47,7 @@ Auto-restart flows are in place to ensure your nodes perform optimally. To start a mina node instance and connect to the live network: ```sh - mina daemon --peer-list-url https://storage.googleapis.com/seed-lists/mainnet_seeds.txt + mina daemon --peer-list-url https://bootnodes.minaprotocol.com/networks/mainnet.txt ``` The `--peer-list` argument specifies the source file of seed peer addresses for the initial peer to connect to on the network. Mina is a [peer-to-peer](/glossary#peer-to-peer) protocol, so there is no dependence on a single centralized server. @@ -55,7 +55,7 @@ Auto-restart flows are in place to ensure your nodes perform optimally. If you have a key with MINA stake and want to produce blocks: ```sh - mina daemon --peer-list-url https://storage.googleapis.com/seed-lists/mainnet_seeds.txt \ + mina daemon --peer-list-url https://bootnodes.minaprotocol.com/networks/mainnet.txt \ --block-producer-key ~/keys/my-wallet ``` @@ -97,7 +97,7 @@ To produce blocks or otherwise customize the configuration for the mina daemon: - External port 8302 - Change with `-external-port` - - Mainnet package [https://storage.googleapis.com/seed-lists/mainnet_seeds.txt](https://storage.googleapis.com/seed-lists/mainnet_seeds.txt) + - Mainnet package [https://bootnodes.minaprotocol.com/networks/mainnet.txt](https://bootnodes.minaprotocol.com/networks/mainnet.txt) - Change with `--peer-list-url` 1. After your `.mina-env` file is ready, start a mina node instance and connect to the live network using systemctl to control systemd: @@ -163,12 +163,12 @@ export MINA_PRIVKEY_PASS="My_V3ry_S3cure_Password" LOG_LEVEL=Info FILE_LOG_LEVEL=Debug EXTRA_FLAGS=" --block-producer-key " -PEER_LIST_URL=https://storage.googleapis.com/seed-lists/mainnet_seeds.txt +PEERS_LIST_URL=https://bootnodes.minaprotocol.com/networks/mainnet.txt ``` Replace `` with the full path to your block producer private key. For example, `/home/ubuntu/keys/my-wallet`. -If you do not want to produce blocks, provide only the `PEER_LIST_URL`. +If you do not want to produce blocks, provide only the `PEERS_LIST_URL`. Now, run the image with your `~/.mina-config` and `~/.mina-env` files mounted into the container: diff --git a/docs/node-operators/seed-peers/getting-started.mdx b/docs/node-operators/seed-peers/getting-started.mdx index cc0136e09..1c5032bfa 100644 --- a/docs/node-operators/seed-peers/getting-started.mdx +++ b/docs/node-operators/seed-peers/getting-started.mdx @@ -69,7 +69,7 @@ MINA_LIBP2P_PASS="My_V3ry_S3cure_Password" LOG_LEVEL=Info FILE_LOG_LEVEL=Debug EXTRA_FLAGS=" --libp2p-keypair --seed --max-connection 100" -PEER_LIST_URL=https://storage.googleapis.com/seed-lists/mainnet_seeds.txt +PEERS_LIST_URL=https://bootnodes.minaprotocol.com/networks/mainnet.txt ``` Please note that `` could change in value depending on where you stored your libp2p keypair from the previous steps. In docker, the keypath will always be `/keys/filename` due to where volumes are mounted. diff --git a/docs/node-operators/troubleshooting.mdx b/docs/node-operators/troubleshooting.mdx index 3fa5442d8..fa2dfed12 100644 --- a/docs/node-operators/troubleshooting.mdx +++ b/docs/node-operators/troubleshooting.mdx @@ -148,7 +148,7 @@ We only need the last `k` (290) blocks of the blockchain to produce blocks. So o ### My sync status is offline? -This status indicates that you have not received any messages from peers for the last ~24 minutes. Ensure that you use the `--peer-list` argument that points to `https://storage.googleapis.com/mina-seed-lists/mainnet_seeds.txt` +This status indicates that you have not received any messages from peers for the last ~24 minutes. Ensure that you use the `--peer-list` argument that points to `https://bootnodes.minaprotocol.com/networks/mainnet.txt` See [Connect to Mainnet](./block-producer-node/connecting-to-the-network). @@ -191,7 +191,7 @@ The client port `8301` should **never** be exposed to the internet. There may be ### Node fails with "Failed to find any peers, crashing as this is not a seed node"? -Ensure that you use the `--peer-list` argument that points to `https://storage.googleapis.com/mina-seed-lists/mainnet_seeds.txt` +Ensure that you use the `--peer-list` argument that points to `https://bootnodes.minaprotocol.com/networks/mainnet.txt` See [Connect to Mainnet](./block-producer-node/connecting-to-the-network).