Skip to content

Commit

Permalink
Update sync.mdx
Browse files Browse the repository at this point in the history
  • Loading branch information
evanorti committed Jul 7, 2023
1 parent 9dc0124 commit fe105f9
Showing 1 changed file with 25 additions and 2 deletions.
27 changes: 25 additions & 2 deletions docs/full-node/run-a-full-terra-node/sync.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The process for syncing your full node from genesis will differ between the Pisc

### Pisco testnet

To sync a Pisco testnet node, you will need to use version `v2.0.0-rc.0` of terrad up until the block height of `838,500`. To sync your node from block 838,500 until block 2,777,777, you will need to use version `v2.1.0-beta.1` of terrad. From block 2,777,777 until 4,712,048, use version `v2.2.0` of terrad. From block 4,712,048 onwards, use `v2.3.0-rc.0`
To sync a Pisco testnet node, you will need to use version `v2.0.0-rc.0` of terrad up until the block height of `838,500`. To sync your node from block 838,500 until block 2,777,777, you will need to use version `v2.1.0-beta.1` of terrad. From block 2,777,777 until 4,712,048, use version `v2.2.0` of terrad. From block 4,712,048 until 6,272,928, use version `v2.3.0-rc.0` of terrad. From block 6,272,928 onwards, use `v2.4.0`

1. To switch to version `v2.0.0-rc.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:

Expand Down Expand Up @@ -120,7 +120,30 @@ terrad version

The result of this command should be `v2.3.0-rc.0`.

10. Now, you can resume and finalize the syncing process:
10. Now, you can resume the syncing process:

```sh Terminal
terrad start
```

Syncing will halt at block `6272928`, at which point you will need to change the version of terrad and then resume the syncing process.

11. To sync your Pisco testnet node from block `6272928` to the most recent block, 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
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.4.0`.

12. Now, you can resume and finalize the syncing process:

```sh Terminal
terrad start
Expand Down

0 comments on commit fe105f9

Please sign in to comment.