Skip to content

Commit

Permalink
chore: update docs for testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyasbhat0 committed Aug 26, 2024
1 parent f2a85a6 commit 09a7b32
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion docs/TESTNET.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,20 @@ make install-testnet-binary

## Configure variables

Set variables

```shell
echo "export ARKEO_WALLET="MyWallet"" >> $HOME/.bash_profile
echo "export MONIKER="MyNode"" >> $HOME/.bash_profile
echo "export ARKEO_CHAIN_ID="arkeo"" >> $HOME/.bash_profile
echo "export ARKEO_PORT="10"" >> $HOME/.bash_profile


source $HOME/.bash_profile
```



Configure `client.toml`
```shell
arkeod config set client node tcp://localhost:${ARKEO_PORT}57
Expand Down Expand Up @@ -108,7 +122,7 @@ arkeod tendermint unsafe-reset-all --home $HOME/.arkeo --keep-addr-book
Allow node P2P port in firewall

```shell
sudo ufw allow 26656/tcp
sudo ufw allow ${ARKEO_PORT}56/tcp
```

Enable and start the node service
Expand Down

0 comments on commit 09a7b32

Please sign in to comment.