lotus/documentation/en/local-dev-net.md

34 lines
735 B
Markdown
Raw Normal View History

# Setup Local Devnet
Build the Lotus Binaries in debug mode, This enables the use of 1024 byte sectors.
2019-12-18 18:48:15 +00:00
```sh
make debug
```
Pre-seal some sectors:
2019-12-18 18:48:15 +00:00
```sh
./lotus-seed pre-seal --sector-size 1024 --num-sectors 2
```
Create the genesis block and start up the first node:
2019-12-18 18:48:15 +00:00
```sh
./lotus daemon --lotus-make-random-genesis=dev.gen --genesis-presealed-sectors=~/.genesis-sectors/pre-seal-t0101.json --bootstrap=false
```
Set up the genesis miner:
2019-12-18 18:48:15 +00:00
```sh
./lotus-storage-miner init --genesis-miner --actor=t0101 --sector-size=1024 --pre-sealed-sectors=~/.genesis-sectors --nosync
```
Now, finally, start up the miner:
2019-12-18 18:48:15 +00:00
```sh
./lotus-storage-miner run --nosync
```
If all went well, you will have your own local Lotus Devnet running.