Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add download instructions for binaries #241

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 20 additions & 8 deletions racer/INSTRUCTIONS.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,28 @@
1. `sudo service palomad stop`
2. `sudo service pigeond stop`
3. update the chain id id in the `~/.pigeon/config.yaml` file to `racer`
4. Optional if using: update chain id in `~/.paloma/config/client.toml` to `racer`
5. Add persistent peers:
3. confirm that you're on paloma v1.13.0 or download it
```shell
wget -O - https://github.com/palomachain/paloma/releases/download/v1.13.0/paloma_Linux_x86_64.tar.gz | \
sudo tar -C /usr/local/bin -xvzf - palomad
sudo chmod +x /usr/local/bin/palomad
```
4. confirm that you're on pigeon v1.11.0 or download it
```shell
wget -O - https://github.com/palomachain/pigeon/releases/download/v1.11.0/pigeon_Linux_x86_64.tar.gz | \
sudo tar -C /usr/local/bin -xvzf - pigeon
sudo chmod +x /usr/local/bin/pigeon
```
5. update the chain id id in the `~/.pigeon/config.yaml` file to `racer`
6. Optional if using: update chain id in `~/.paloma/config/client.toml` to `racer`
7. Add persistent peers:
1. update `~/.paloma/config/config.toml`
1. Line 215: add
```
persistent_peers = "[email protected]:10656, [email protected]:54056, [email protected]:10656, [email protected]:26656, [email protected]:26656, [email protected]:26656, [email protected]:56105"
```
6. Get new genesis
8. Get new genesis
1. `wget -O ~/.paloma/config/genesis.json https://raw.githubusercontent.com/palomachain/mainnet/master/racer/genesis.json`
7. **`palomad comet unsafe-reset-all --home $HOME/.paloma`**
8. `echo '{}' > ~/.paloma/config/addrbook.json`
9. `sudo service pigeond start`
10. `sudo service palomad start`
9. **`palomad comet unsafe-reset-all --home $HOME/.paloma`**
10. `echo '{}' > ~/.paloma/config/addrbook.json`
11. `sudo service pigeond start`
12. `sudo service palomad start`
Loading