Skip to content

Commit

Permalink
Fix command for adding new networks. (#667)
Browse files Browse the repository at this point in the history
  • Loading branch information
fnando authored Jun 11, 2024
1 parent e41bb76 commit d479efa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions network/soroban-rpc/admin-guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ curl "http://localhost:8000"
You can interact with this local node using the Soroban CLI. First, add it as a configured network:

```bash
soroban config network add standalone \
soroban network add standalone \
--rpc-url "http://localhost:8000/soroban/rpc" \
--network-passphrase "Standalone Network ; February 2017"
```
Expand Down Expand Up @@ -130,7 +130,7 @@ docker run --rm -it \
And you'll want to configure it for use with the `--network` flag in Soroban CLI:

```bash
soroban config network add testnet \
soroban network add testnet \
--rpc-url "http://localhost:8000/soroban/rpc" \
--network-passphrase "Test SDF Network ; September 2015"
```
Expand Down Expand Up @@ -161,7 +161,7 @@ docker run --rm -it \
And you'll want to configure it for use with the `--network` flag in Soroban CLI:

```bash
soroban config network add futurenet \
soroban network add futurenet \
--rpc-url "http://localhost:8000/soroban/rpc" \
--network-passphrase "Test SDF Future Network ; October 2022"
```
Expand Down Expand Up @@ -526,7 +526,7 @@ For all deployments, we recommend at least 10GB of disk/storage space.
You can configure Soroban CLI to use a remote RPC endpoint:

```bash
soroban config network add --global testnet \
soroban network add --global testnet \
--rpc-url https://soroban-testnet.stellar.org:443 \
--network-passphrase 'Test SDF Network ; September 2015'
```
Expand Down

0 comments on commit d479efa

Please sign in to comment.