Skip to content

Commit 2c53125

Browse files
committed
docs on creating a EVM chain or cosmos chain
1 parent fe09376 commit 2c53125

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

README.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,39 @@ echo 'export PATH=$PATH:$(go env GOPATH)/bin' >> ~/.bashrc
4343
source ~/.bashrc
4444
```
4545

46+
## Build an EVM Chain
47+
48+
Cosmos EVM chain, CoinType 60, Full foundry support
49+
50+
```bash
51+
# flags are optional
52+
spawn new mychain --consensus=proof-of-stake --binary=simd --denom=token --disable=explorer
53+
54+
cd mychain
55+
56+
make sh-testnet
57+
58+
# foundry works as you expect
59+
cast block
60+
61+
# cosmos works as you expect
62+
simd status
63+
```
64+
65+
## Build a Cosmos Chain
66+
67+
```bash
68+
# flags are optional
69+
spawn new mychain --consensus=proof-of-stake --binary=simd --denom=token --disable=explorer,evm
70+
71+
cd mychain
72+
73+
make sh-testnet
74+
75+
# cosmos works as you expect
76+
simd status
77+
```
78+
4679
## Spawn in Action
4780

4881
In this 4 minute demo we:

0 commit comments

Comments
 (0)