Skip to content

Commit 5334a34

Browse files
authored
Merge pull request #455 from massalabs/mainnet4.0
update doc for mainnet 4.0
2 parents 51dc4e1 + 774bda4 commit 5334a34

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

docs/build/api/jsonrpc.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ curl --location --request POST 'https://buildnet.massa.net/api/v2' \
401401

402402
### get_addresses_datastore_keys
403403

404-
**Available from versions MAIN.3.0 for Mainnet / DEVN.28.14 for Buildnet.**
404+
**Available from versions MAIN.4.0 for Mainnet / DEVN.29.0 for Buildnet.**
405405

406406
Retrieve datastore keys for given addresses.
407407

docs/node/constants.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import TabItem from '@theme/TabItem';
99
# Network constants
1010

1111
This page describes the constants governing the behavior of the network and their values (that are the same for all nodes of a given network).
12-
These tables are obtained from the source code of the node, in the [massa repository](https://github.com/massalabs/massa/blob/MAIN.3.0/massa-models/src/config/constants.rs),
12+
These tables are obtained from the source code of the node, in the [massa repository](https://github.com/massalabs/massa/blob/MAIN.4.0/massa-models/src/config/constants.rs),
1313
and are used in various massa projects, for instance:
1414

1515
- Smart contract related constants in [Massa-web3](https://github.com/massalabs/massa-web3/blob/main/src/smartContracts/constants.ts)
@@ -84,7 +84,7 @@ The following constants directly depend on the network deployed.
8484
| Constant | Description | Value |
8585
|----------|-------------|-------|
8686
| GENESIS_TIMESTAMP | Unix timestamp (in milliseconds) of the first block of the network | `1705312800000` Monday, January 15, 2024 10:00:00 AM UTC |
87-
| VERSION | A string representing the network's version | `"MAIN.3.0"` currently deployed. |
87+
| VERSION | A string representing the network's version | `"MAIN.4.0"` currently deployed. |
8888
| CHAINID | A number representing the network | `77658377` | A signed operation contains the CHAINID, and is only valid on the corresponding network |
8989

9090
</TabItem>
@@ -94,7 +94,7 @@ The following constants directly depend on the network deployed.
9494
| Constant | Description | Value |
9595
|----------|-------------|-------|
9696
| GENESIS_TIMESTAMP | Unix timestamp (in milliseconds) of the first block of the network | `1704289800000` Wednesday, January 3, 2024 1:50:00 PM UTC |
97-
| VERSION | A string representing the network's version | `"DEVN.28.14"` |
97+
| VERSION | A string representing the network's version | `"DEVN.29.0"` |
9898
| CHAINID | A number representing the network. A signed operation contains the CHAINID, and is only valid on the corresponding network. | `77658366` |
9999

100100
</TabItem>

docs/node/install.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ More info in the [FAQ](/docs/node/faq).
1717
If you just wish to run a Massa node without compiling it yourself, you can simply download the latest binary below and
1818
go to the next step: [Running a node](/docs/node/run).
1919

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

2626
## From source code (advanced installation)
2727

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

4444
### On Windows
4545

@@ -61,7 +61,7 @@ Otherwise, if you wish to run a Massa node from source code, here are the steps
6161
- Open Windows Power Shell
6262
- Clone the latest distributed version: ```git clone https://github.com/massalabs/massa.git```
6363
- Go to the cloned repository: ```cd massa```
64-
- Checkout the latest tag: ```git checkout MAIN.3.0```
64+
- Checkout the latest tag: ```git checkout MAIN.4.0```
6565
- Change default Rust to the following stable version: ```rustup default 1.81.0```
6666

6767
## My node is installed. What next ?

docs/node/update.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ If you installed from sources, you can either re-clone the repo, or you can upda
2727
In order to update to the latest release, launch a terminal in your current repository, and then run the following commands:
2828
```shell
2929
git fetch
30-
git checkout MAIN.3.0
30+
git checkout MAIN.4.0
3131
```
3232

3333
## Accepting "Massa Community Charter"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
https://raw.githubusercontent.com/massalabs/massa/MAIN.3.0/massa-client/base_config/config.toml
1+
https://raw.githubusercontent.com/massalabs/massa/MAIN.4.0/massa-client/base_config/config.toml
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
https://raw.githubusercontent.com/massalabs/massa/MAIN.3.0/massa-node/base_config/config.toml
1+
https://raw.githubusercontent.com/massalabs/massa/MAIN.4.0/massa-node/base_config/config.toml

0 commit comments

Comments
 (0)