0x30575c0f42065c32131d0bb9e0794d2083e358c01fca4c23f9d8f5b7d1f27b61
View gist:f496183d49e7ccfafba9784e54356737
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am colin-axner on github. | |
* I am colinaxner (https://keybase.io/colinaxner) on keybase. | |
* I have a public key ASBBO-vMo2_uGsYxM55vq--6rwUsnYdwDBPyIwcTA1lunQo | |
To claim this, I am signing this object: |
View hermes log
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hermes start-multi | |
Finished release [optimized] target(s) in 0.10s | |
Running `target/release/hermes start-multi` | |
May 19 16:59:30.188 INFO ibc_relayer_cli::commands: Using default configuration from: '.hermes/config.toml' | |
May 19 16:59:30.192 INFO ibc_relayer::event::monitor: starting event monitor chain.id=network1 | |
May 19 16:59:30.194 INFO ibc_relayer::event::monitor: starting event monitor chain.id=network2 | |
May 19 16:59:30.197 INFO worker loop{worker=network2->network1:07-tendermint-0}: ibc_relayer::worker: running client worker & initial misbehaviour detection for network2 -> network1:07-tendermint-0 | |
May 19 16:59:30.198 INFO worker loop{worker=network2->network1:07-tendermint-3}: ibc_relayer::worker: running client worker & initial misbehaviour detection for network2 -> network1:07-tendermint-3 | |
May 19 16:59:30.201 INFO worker loop{worker=network1->network2:07-tendermint-0}: ibc_relayer::worker: running client worker & initial misbehaviour detection for network1 -> network2:07-tendermint-0 | |
May 19 |
View keybase.md
Keybase proof
I hereby claim:
- I am colin-axner on github.
- I am colinaxner (https://keybase.io/colinaxner) on keybase.
- I have a public key ASBO1A6LHtWjUUn397xoRSi9yQeJw0bVmdtJp6-ljdNyNQo
To claim this, I am signing this object:
View plasma_install.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Upgrade the system and install go, gcc, make, geth | |
sudo apt-get install software-properties-common | |
sudo add-apt-repository -y ppa:ethereum/ethereum | |
sudo apt update | |
sudo apt upgrade -y | |
sudo apt install gcc make ethereum -y | |
sudo snap install --classic go | |
sudo mkdir -p ~/go/bin/ |
View gaia_upgrade.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Upgrade Cosmos SDK and restart gaiad | |
POSITIONAL=() | |
while [[ $# -gt 0 ]] | |
do | |
key="$1" | |
case $key in | |
-t|--tag) |
View gaia_install.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Upgrade the system and install go | |
sudo apt update | |
sudo apt upgrade -y | |
sudo apt install gcc git make -y | |
sudo snap install --classic go | |
sudo mkdir -p /opt/go/bin | |
# Export environment variables |