Skip to content

Commit 3506661

Browse files
authored
Merge pull request #1118 from MinaProtocol/amc-ie-patch-2-mainnet-not-devnet
Update connecting-to-the-network.mdx round 2
2 parents 2b2e264 + ce61219 commit 3506661

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/node-operators/block-producer-node/connecting-to-the-network.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ Auto-restart flows are in place to ensure your nodes perform optimally.
4747
To start a mina node instance and connect to the live network:
4848

4949
```sh
50-
mina daemon --peer-list-url https://bootnodes.minaprotocol.com/networks/devnet.txt
50+
mina daemon --peer-list-url https://bootnodes.minaprotocol.com/networks/mainnet.txt
5151
```
5252

5353
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.
5454

5555
If you have a key with MINA stake and want to produce blocks:
5656

5757
```sh
58-
mina daemon --peer-list-url https://bootnodes.minaprotocol.com/networks/devnet.txt \
58+
mina daemon --peer-list-url https://bootnodes.minaprotocol.com/networks/mainnet.txt \
5959
--block-producer-key ~/keys/my-wallet
6060
```
6161

@@ -97,7 +97,7 @@ To produce blocks or otherwise customize the configuration for the mina daemon:
9797

9898
- External port 8302
9999
- Change with `-external-port`
100-
- Mainnet seed peers list [https://bootnodes.minaprotocol.com/networks/devnet.txt](https://bootnodes.minaprotocol.com/networks/devnet.txt)
100+
- Mainnet seed peers list [https://bootnodes.minaprotocol.com/networks/mainnet.txt](https://bootnodes.minaprotocol.com/networks/mainnet.txt)
101101
- Change with `--peer-list-url`
102102

103103
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,7 +163,7 @@ export MINA_PRIVKEY_PASS="My_V3ry_S3cure_Password"
163163
LOG_LEVEL=Info
164164
FILE_LOG_LEVEL=Debug
165165
EXTRA_FLAGS=" --block-producer-key <BLOCK_PRODUCER_KEY_PATH>"
166-
PEER_LIST_URL=https://bootnodes.minaprotocol.com/networks/devnet.txt
166+
PEER_LIST_URL=https://bootnodes.minaprotocol.com/networks/mainnet.txt
167167
```
168168

169169
Replace `<BLOCK_PRODUCER_KEY_PATH>` with the full path to your block producer private key. For example, `/home/ubuntu/keys/my-wallet`.

0 commit comments

Comments
 (0)