Skip to content

Commit

Permalink
feat: add back make get-localic
Browse files Browse the repository at this point in the history
  • Loading branch information
Reecepbcups committed Aug 24, 2024
1 parent 4cb0626 commit 3457fe6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,12 @@ get-heighliner:
cd heighliner && go install
@echo ✅ heighliner installed to $(shell which heighliner)

get-localic:
@echo "Installing local-interchain"
git clone --branch v8.7.0 https://github.com/strangelove-ventures/interchaintest.git interchaintest-downloader
cd interchaintest-downloader/local-interchain && make install
@echo ✅ local-interchain installed $(shell which local-ic)

.PHONY: get-heighliner

help: Makefile
Expand All @@ -71,4 +77,4 @@ template-ics: install
spawn new myproject --consensus=interchain-security --debug --no-git --bin=rolld --bech32=roll --denom=uroll --bypass-prompt --log-level=debug


.DEFAULT_GOAL := install
.DEFAULT_GOAL := install
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,10 @@ In this tutorial, we'll create and interact with a new Cosmos-SDK blockchain cal
```shell
git clone https://github.com/rollchains/spawn.git
cd spawn
git checkout v0.50.4
git checkout v0.50.7

make install
make get-localic
```

2. Create your chain using the `spawn` command and customize it to your needs!
Expand Down Expand Up @@ -119,4 +121,4 @@ In this tutorial, we configured a new custom chain, launched a testnet for it, t

## Add a Feature

If you wish to add a feature to spawn, reference the [NEW_FEATURE.md](./docs/NEW_FEATURE.md) for guidance.
If you wish to add a feature to spawn, reference the [NEW_FEATURE.md](./docs/NEW_FEATURE.md) for guidance.

0 comments on commit 3457fe6

Please sign in to comment.