File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,39 @@ echo 'export PATH=$PATH:$(go env GOPATH)/bin' >> ~/.bashrc
4343source ~ /.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
4881In this 4 minute demo we:
You can’t perform that action at this time.
0 commit comments