From c34c21822e66b7143bc85edaa13aeec4c40dfb0e Mon Sep 17 00:00:00 2001 From: evanorti Date: Wed, 15 Nov 2023 16:07:25 -0500 Subject: [PATCH] Update sync.mdx --- docs/full-node/run-a-full-terra-node/sync.mdx | 34 ++++++++++++++++--- 1 file changed, 30 insertions(+), 4 deletions(-) diff --git a/docs/full-node/run-a-full-terra-node/sync.mdx b/docs/full-node/run-a-full-terra-node/sync.mdx index fe85ce0c5..90a534241 100644 --- a/docs/full-node/run-a-full-terra-node/sync.mdx +++ b/docs/full-node/run-a-full-terra-node/sync.mdx @@ -225,7 +225,7 @@ From here, you can [monitor the sync](#monitor-the-sync). Make sure to check on ### Phoenix mainnet -If you would like to sync your node using the Phoenix mainnet, you will need to use version `v2.0.0` of terrad up until the block height of `890000`. To sync your node from block `890000` to block `2979805`, you will need to use version `v2.1.1` of terrad. From block `2979805` until block `4711800`, use version `v2.2.0` of terrad until block `4711800`. From block `4711800` until block `5994365`, use version `v2.3.0`. From block `5994365` until block `7316000`, use version `v2.4.0`. From block `7316000` onward, use version `v2.5.2`to complete the sync. +If you would like to sync your node using the Phoenix mainnet, you will need to use version `v2.0.0` of terrad up until the block height of `890000`. To sync your node from block `890000` to block `2979805`, you will need to use version `v2.1.1` of terrad. From block `2979805` until block `4711800`, use version `v2.2.0` of terrad until block `4711800`. From block `4711800` until block `5994365`, use version `v2.3.0`. From block `5994365` until block `7316000`, use version `v2.4.0`. From block `7316000` until block `7722000`, use version `v2.5.2`. From block `7722000` onward, use version `v2.6.1` to complete the sync. 1. To switch to version `v2.0.0` of terrad, [change into your `core` directory](./build-terra-core.mdx#get-the-terra-core-source-code) and execute the following commands in your terminal: @@ -337,7 +337,7 @@ terrad start Syncing will halt at block `5994365`, at which point you will need to change the version of terrad and then resume the syncing process. -11. To sync your Phoenix mainnet node from block `5994365` to the most recent block, you will need to navigate to the `core` directory and change your terrad version to `v2.4.0`. +11. To sync your Phoenix mainnet node from block `5994365` until block block `7316000`, you will need to navigate to the `core` directory and change your terrad version to `v2.4.0`. ```sh Terminal git checkout v2.4.0 @@ -360,7 +360,7 @@ terrad start Syncing will halt at block `7316000`, at which point you will need to change the version of terrad and then resume the syncing process. -13. To sync your Phoenix mainnet node from block `7316000` to the most recent block, you will need to navigate to the `core` directory and change your terrad version to `v2.5.2`. +13. To sync your Phoenix mainnet node from block `7316000` until block block `7722000`, you will need to navigate to the `core` directory and change your terrad version to `v2.5.2`. ```sh Terminal git checkout v2.5.2 @@ -375,8 +375,34 @@ terrad version The result of this command should be `v2.5.2`. +14. Now, you can resume the syncing process: -14. Now, you can resume and finalize the syncing process: +```sh Terminal +terrad start +``` + +Syncing will halt at block `7316000`, at which point you will need to change the version of terrad and then resume the syncing process. + + + + +15. To sync your Phoenix mainnet node from block `7722000` to the most recent block, you will need to navigate to the `core` directory and change your terrad version to `v2.6.1`. + +```sh Terminal +git checkout v2.6.1 +make install +``` + +Again, make sure that you have switched to the correct version of terrad by running the following command: + +```sh Terminal +terrad version +``` + +The result of this command should be `v2.6.1`. + + +16. Now, you can resume and finalize the syncing process: ```sh Terminal terrad start