Skip to content

Commit 3457fe6

Browse files
committed
feat: add back make get-localic
1 parent 4cb0626 commit 3457fe6

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

Makefile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,12 @@ get-heighliner:
4949
cd heighliner && go install
5050
@echo ✅ heighliner installed to $(shell which heighliner)
5151

52+
get-localic:
53+
@echo "Installing local-interchain"
54+
git clone --branch v8.7.0 https://github.com/strangelove-ventures/interchaintest.git interchaintest-downloader
55+
cd interchaintest-downloader/local-interchain && make install
56+
@echo ✅ local-interchain installed $(shell which local-ic)
57+
5258
.PHONY: get-heighliner
5359

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

7379

74-
.DEFAULT_GOAL := install
80+
.DEFAULT_GOAL := install

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,10 @@ In this tutorial, we'll create and interact with a new Cosmos-SDK blockchain cal
3939
```shell
4040
git clone https://github.com/rollchains/spawn.git
4141
cd spawn
42-
git checkout v0.50.4
42+
git checkout v0.50.7
43+
4344
make install
45+
make get-localic
4446
```
4547

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

120122
## Add a Feature
121123

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

0 commit comments

Comments
 (0)