Skip to content

Commit

Permalink
fix: soroban.mdx (#1189)
Browse files Browse the repository at this point in the history
  • Loading branch information
sazhiv authored Oct 7, 2024
1 parent 801da9f commit 587256d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/content/docs/validator/external-chains/soroban.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ In order to build the `Soroban` node, you first need to install all the required

```bash
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
sudo apt-get install -y make git-core libssl-dev pkg-config libclang-12-dev build-essential protobuf-compiler
sudo apt-get update
sudo apt-get install -y make git-core libssl-dev pkg-config libclang-12-dev build-essential protobuf-compiler
sudo apt-get install libudev-dev
source "$HOME/.cargo/env"

# common packages
sudo apt-get install git build-essential pkg-config autoconf automake libtool bison flex libpq-dev libunwind-dev parallel sed perl
sudo apt-get install git build-essential pkg-config autoconf automake libtool bison flex libpq-dev libunwind-dev parallel sed perl postgresql-common postgresql postgresql-contrib
# if using clang
sudo apt-get install clang-12
# clang with libstdc++
Expand Down Expand Up @@ -96,17 +96,17 @@ SOROBAN_RELEASE=v21.4.1
<tabs>
<tab-item title="Mainnet" class="bleed">
```bash
git clone https://github.com/stellar/stellar-core.git
cd stellar-core
git clone https://github.com/stellar/soroban-rpc.git
cd soroban-rpc
git checkout $SOROBAN_RELEASE
make build-soroban-rpc
mv soroban-rpc /usr/bin/
```
</tab-item>
<tab-item title="Testnet" class="bleed">
```bash
git clone https://github.com/stellar/stellar-core.git
cd stellar-core
git clone https://github.com/stellar/soroban-rpc.git
cd soroban-rpc
git checkout $SOROBAN_RELEASE
make build-soroban-rpc
mv soroban-rpc /usr/bin/
Expand Down Expand Up @@ -430,4 +430,4 @@ If the node is successfully synced, the output from above will print
"ledgerRetentionWindow": 17280
}
}
```
```

0 comments on commit 587256d

Please sign in to comment.