Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update node to minimal fee release #317

Merged
merged 1 commit into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/node/install.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ More info in the [FAQ](/docs/node/faq).
If you just wish to run a Massa node without compiling it yourself, you can simply download the latest binary below and
go to the next step: [Running a node](/docs/node/run).

- [Windows executable](https://github.com/massalabs/massa/releases/download/MAIN.2.1/massa_MAIN.2.1_release_windows.zip)
- [Linux binary](https://github.com/massalabs/massa/releases/download/MAIN.2.1/massa_MAIN.2.1_release_linux.tar.gz) -
- [Windows executable](https://github.com/massalabs/massa/releases/download/MAIN.2.2/massa_MAIN.2.2_release_windows.zip)
- [Linux binary](https://github.com/massalabs/massa/releases/download/MAIN.2.2/massa_MAIN.2.2_release_linux.tar.gz) -
only works with libc2.28 and higher (for example Ubuntu 20.04 and higher)
- [MacOS binary](https://github.com/massalabs/massa/releases/download/MAIN.2.1/massa_MAIN.2.1_release_macos_aarch64.tar.gz)
- Other binaries can be found on https://github.com/massalabs/massa/releases/tag/MAIN.2.1
- [MacOS binary](https://github.com/massalabs/massa/releases/download/MAIN.2.2/massa_MAIN.2.2_release_macos_aarch64.tar.gz)
- Other binaries can be found on https://github.com/massalabs/massa/releases/tag/MAIN.2.2

## From source code (advanced installation)

Expand All @@ -39,7 +39,7 @@ Otherwise, if you wish to run a Massa node from source code, here are the steps
- check rust version: ```rustc --version```
- clone this repo: ```git clone https://github.com/massalabs/massa.git```
- go to the cloned repository: ```cd massa```
- checkout the latest tag: ```git checkout MAIN.2.1```
- checkout the latest tag: ```git checkout MAIN.2.2```

### On Windows

Expand All @@ -61,7 +61,7 @@ Otherwise, if you wish to run a Massa node from source code, here are the steps
- Open Windows Power Shell
- Clone the latest distributed version: ```git clone https://github.com/massalabs/massa.git```
- Go to the cloned repository: ```cd massa```
- Checkout the latest tag: ```git checkout MAIN.2.1```
- Checkout the latest tag: ```git checkout MAIN.2.2```
- Change default Rust to the following stable version: ```rustup default 1.74.1```

## My node is installed. What next ?
Expand Down
2 changes: 1 addition & 1 deletion docs/node/update.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ If you installed from sources, you can either re-clone the repo, or you can upda
In order to update to the latest release, launch a terminal in your current repository, and then run the following commands:
```shell
git fetch
git checkout MAIN.2.1
git checkout MAIN.2.2
```
2 changes: 1 addition & 1 deletion external/client/mainnet/config-files.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
https://raw.githubusercontent.com/massalabs/massa/MAIN.2.1/massa-client/base_config/config.toml
https://raw.githubusercontent.com/massalabs/massa/MAIN.2.2/massa-client/base_config/config.toml
2 changes: 1 addition & 1 deletion external/node/mainnet/config-files.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
https://raw.githubusercontent.com/massalabs/massa/MAIN.2.1/massa-node/base_config/config.toml
https://raw.githubusercontent.com/massalabs/massa/MAIN.2.2/massa-node/base_config/config.toml
Loading