Skip to content
Open
Show file tree
Hide file tree
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
46 changes: 46 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Ignore system-specific files
.DS_Store
Thumbs.db

# Ignore editor and IDE configurations
.vscode/
.idea/
*.swp
*.swo

# Ignore log files
*.log

# Ignore backup and temporary files
*~
*.tmp
*.bak

# Ignore compiled binaries and executables
*.exe
*.out
*.test

# Ignore dependency directories
vendor/
node_modules/

# Ignore build artifacts
build/
dist/
target/

# Ignore OS-specific files
ehthumbs.db
Icon?
Desktop.ini

# Ignore Raspberry Pi specific files (if any)
*.img
*.iso

# Ignore sensitive files
.env
*.pem
*.key
*.crt
5 changes: 2 additions & 3 deletions statesync.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ install_dependencies() {
install_go() {
echo "> installing go..."
sudo rm -rf /usr/local/go && sudo rm -rf $HOME/.go
wget -q -O - $GOLINK | bash && source $HOME/.bashrc
wget -q -O - $GOLINK | bash -s -- --version 1.23.4 && source $HOME/.bashrc
}

#fetch chain-registry
Expand Down Expand Up @@ -133,9 +133,8 @@ fetch_cr() {
#SEEDLIST=${ALTSEEDS}
fi

#fix osmo version
if [[ "$CHAIN" == "osmosis" ]] ; then
VERSION="v6.0.0"
VERSION="v29.0.0"
fi

echo "home dir: $NODE_HOME_DIR"
Expand Down