Skip to content

Commit

Permalink
Update Mainnet Version to 3.0.0-93e0279
Browse files Browse the repository at this point in the history
  • Loading branch information
kaozenn committed Jun 4, 2024
1 parent f77cfd9 commit 9142415
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion docs/exchange-operators/rosetta/run-with-docker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Run the container with following command (replace the image tag with one from do
docker run -it --rm --name rosetta \
--entrypoint=./docker-start.sh \
-p 10101:10101 -p 3085:3085 -p 3086:3086 -p 3087:3087 \
minaprotocol/mina-rosetta:2.0.0-039296a-focal **<_CHANGE_ME_>**
minaprotocol/mina-rosetta:3.0.0-93e0279-focal

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:

Expand Down
2 changes: 1 addition & 1 deletion docs/node-developers/sandbox-node.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ docker run \
--name mina \
-e RUN_DEMO=true \
-e MINA_PRIVKEY_PASS='' \
minaprotocol/mina-daemon:2.0.0-039296a-bullseye-mainnet **<_CHANGE_ME_>**
minaprotocol/mina-daemon:3.0.0-93e0279-bullseye-mainnet
```

Expand Down
12 changes: 6 additions & 6 deletions docs/node-operators/archive-node/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ Running an archive node requires some knowledge of managing a PostgreSQL databas
- Ubuntu/Debian:

```
sudo apt-get install mina-archive=2.0.0-039296a **<_CHANGE_ME_>**
sudo apt-get install mina-archive=3.0.0-93e0279
```

- Docker:

```
minaprotocol/mina-archive:2.0.0-039296a-bullseye **<_CHANGE_ME_>**
minaprotocol/mina-archive:3.0.0-93e0279-bullseye
```

## Set up the archive node
Expand Down Expand Up @@ -125,7 +125,7 @@ To get started with installing and running the archive node using Docker, follow
2. Pull the archive node image from Docker Hub.

```sh
docker pull minaprotocol/mina-archive:2.0.0-039296a-bullseye **<_CHANGE_ME_>**
docker pull minaprotocol/mina-archive:3.0.0-93e0279-bullseye
```

3. Pull and install the postgres image from Docker Hub.
Expand Down Expand Up @@ -168,7 +168,7 @@ To get started with installing and running the archive node using Docker, follow
--name archive \
-p 3086:3086 \
-v /tmp/archive:/data \
minaprotocol/mina-archive:2.0.0-039296a-bullseye \ **<_CHANGE_ME_>**
minaprotocol/mina-archive:3.0.0-93e0279-bullseye \
mina-archive run \
--postgres-uri postgres://postgres:postgres@postgres:5432/archive \
--server-port 3086
Expand Down Expand Up @@ -212,7 +212,7 @@ To run the archive node using Docker Compose:
3. Pull the archive node image from Docker Hub.

```sh
docker pull minaprotocol/mina-archive:2.0.0-039296a-bullseye **<_CHANGE_ME_>**
docker pull minaprotocol/mina-archive:3.0.0-93e0279-bullseye
```

4. Pull and install the postgres image from Docker Hub.
Expand Down Expand Up @@ -240,7 +240,7 @@ To run the archive node using Docker Compose:
ports:
- '5432:5432'
archive:
image: 'minaprotocol/mina-archive:2.0.0-039296a-bullseye' **<_CHANGE_ME_>**
image: 'minaprotocol/mina-archive:3.0.0-93e0279-bullseye'
command: >-
mina-archive run --postgres-uri
postgres://postgres:postgres@postgres:5432/archive --server-port 3086
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ docker run --name mina -d \
--mount "type=bind,source=$(pwd)/.mina-env,dst=/entrypoint.d/mina-env,readonly" \
--mount "type=bind,source=$(pwd)/keys,dst=/keys,readonly" \
--mount "type=bind,source=$(pwd)/.mina-config,dst=/root/.mina-config" \
minaprotocol/mina-daemon:2.0.0-039296a-bullseye-mainnet \ **<_CHANGE_ME_>**
minaprotocol/mina-daemon:3.0.0-93e0279-bullseye-mainnet \
daemon
```

Expand Down
4 changes: 2 additions & 2 deletions docs/node-operators/block-producer-node/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,15 @@ sudo apt-get update
Now install the node package.

```
sudo apt-get install -y curl unzip mina-mainnet=2.0.0-039296a **<_CHANGE_ME_>**
sudo apt-get install -y curl unzip mina-mainnet=3.0.0-93e0279
```


To verify the mina daemon installation, run:

- `mina version`

The expected output is `Commit 039296a260080ed02d0d0750d185921f030b6c9c on branch master`.
The expected output is `Commit 93e02797f72abe2cbf8dfca6f2328e9c8cd76546 on branch berkeley`.

### If you are using Ufw, allow these permissions

Expand Down
2 changes: 1 addition & 1 deletion docs/node-operators/flags-configs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ docker run
--name rosetta --rm \
-p 3088:3088 \
--entrypoint '' \
gcr.io/o1labs-192920/mina-rosetta:<POST UPGRADE RELEASE> **<_CHANGE_ME_>** \
gcr.io/o1labs-192920/mina-rosetta:3.0.0-93e0279 \
/usr/local/bin/mina-rosetta \
--archive-uri "${PG_CONNECTION_STRING}" \
--graphql-uri "${GRAPHQL_URL}" \
Expand Down
12 changes: 6 additions & 6 deletions docs/node-operators/generating-a-keypair.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Generate a new public, private keypair
```sh
echo "deb [trusted=yes] http://packages.o1test.net $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/mina.list
sudo apt-get update
sudo apt-get install -y mina-mainnet=2.0.0-039296a **<_CHANGE_ME_>**
sudo apt-get install -y mina-mainnet=3.0.0-93e0279
```

1. Verify that the key generation tool installed correctly:
Expand All @@ -86,7 +86,7 @@ Generate a new public, private keypair
The expected output is:

```
Commit 039296a260080ed02d0d0750d185921f030b6c9c on branch compatible
Commit 93e02797f72abe2cbf8dfca6f2328e9c8cd76546 on branch berkeley
```

### macOS, Windows, and platforms other than Ubuntu and Debian
Expand Down Expand Up @@ -129,7 +129,7 @@ Make sure to set a new and secure password for the following commands. Mina will
cd ~
docker run -it --rm --entrypoint "" \
--volume $(pwd)/keys:/keys \
minaprotocol/mina-daemon:2.0.0-039296a-bullseye-mainnet \ **<_CHANGE_ME_>**
minaprotocol/mina-daemon:3.0.0-93e0279-bullseye-mainnet \
mina advanced generate-keypair --privkey-path /keys/my-wallet
```

Expand Down Expand Up @@ -163,14 +163,14 @@ On Docker:
```
docker run -it --rm --entrypoint "" \
--volume $(pwd)/keys:/keys \
minaprotocol/mina-daemon:2.0.0-039296a-bullseye-mainnet \ **<_CHANGE_ME_>**
minaprotocol/mina-daemon:3.0.0-93e0279-bullseye-mainnet \
mina advanced validate-keypair --privkey-path /keys/my-wallet
```

## Generating and using your libp2p keys

To ensure connectivity across the network, it is essential that all seed nodes start with the **same** `libp2p` keypair.
This consistency allows other nodes in the network to reliably connect.
To ensure connectivity across the network, it is essential that all seed nodes start with the **same** `libp2p` keypair.
This consistency allows other nodes in the network to reliably connect.
Use the `libp2p` subcommand of `mina` CLI utility to create a libp2p key pair.

```
Expand Down
2 changes: 1 addition & 1 deletion docs/node-operators/seed-peers/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ docker run --name mina-seed-node -d \
-v "$(pwd)/keys:/root/keys:ro" \
-v "$(pwd)/.mina-config:/root/.mina-config" \
-v "$(pwd)/.mina-env:/entrypoint.d/mina-env:ro" \
minaprotocol/mina-daemon:2.0.0-039296a-bullseye-mainnet \ **<_CHANGE_ME_>**
minaprotocol/mina-daemon:3.0.0-93e0279-bullseye-mainnet \
daemon
```

Expand Down
2 changes: 1 addition & 1 deletion docs/welcome.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import HomepageFeatures from "@site/src/components/features/HomepageFeatures";

:::caution Berkeley Mainnet release has landed

Please make sure to upgrade your mina nodes to **3.0.0** ([Release notes](https://github.com/MinaProtocol/mina/discussions/15662) **<_CHANGE_ME_>**)
Please make sure to upgrade your mina nodes to **3.0.0** ([Release notes](https://github.com/MinaProtocol/mina/releases/tag/3.0.0))

[See instructions to upgrade your Mina node](/node-operators/requirements)

Expand Down

0 comments on commit 9142415

Please sign in to comment.