- 
Clone boost, run
maketo compileboostdand the react app for the UI (you'll use them later),make devnetand./devnet(might fail, if so just run again) - 
Clone lotus and checkout
boost/main, thenmake debug,sudo make installand finallysudo install -C ./lotus-seed /usr/local/bin/lotus-seed - 
On a new window run this (note down the
FULLNODE_API_INFOthat this command outputs). If you had done this before already, make sure to clean up the directoryrm -rf ~/.lotusmarkets && rm -rf ~/.lotus && rm -rf ~/.lotusminer && rm -rf ~/.genesis_sectors 
unset MINER_API_INFO
unset FULLNODE_API_INFO
export ENV_MINER_API_INFO=`../lotus/lotus-miner auth api-info --perm=admin`
export ENV_FULLNODE_API_INFO=`../lotus/lotus auth api-info --perm=admin`
export MINER_API_INFO=`echo $ENV_MINER_API_INFO | awk '{split($0,a,"="); print a[2]}'`
export FULLNODE_API_INFO=`echo $ENV_FULLNODE_API_INFO | awk '{split($0,a,"="); print a[2]}'`
echo MINER_API_INFO=$MINER_API_INFO
echo FULLNODE_API_INFO=$FULLNODE_API_INFO
export DEFAULT_WALLET=`./lotus wallet list | tail -1 | awk '{print $1}'`
export COLLAT_WALLET=`./lotus wallet new bls`
export PUBMSG_WALLET=`./lotus wallet new bls`
export CLIENT_WALLET=`./lotus wallet new bls`
./lotus send --from $DEFAULT_WALLET $COLLAT_WALLET 10
./lotus send --from $DEFAULT_WALLET $PUBMSG_WALLET 10
./lotus send --from $DEFAULT_WALLET $CLIENT_WALLET 10- Run this cmd until 10 FIL is in all the three new wallets
 
./lotus wallet list- Run this (why?)
 
# Tell lotus miner to designate the publish message wallet as a control wallet
./lotus-miner actor control set --really-do-it $PUBMSG_WALLET
# Add funds to escrow for client
./lotus wallet market add --from $DEFAULT_WALLET --address $CLIENT_WALLET 5
./lotus wallet market add --address $COLLAT_WALLET 5- On the same terminal (remember the env vars) go to the boost directory and run this. After daemon startup, kill it.
 
rm -rf ~/.boost
./boostd -vv init --api-sealer=$MINER_API_INFO --api-sector-index=$MINER_API_INFO --wallet-publish-storage-deals=$PUBMSG_WALLET --wallet-collateral-pledge=$COLLAT_WALLET --max-staging-deals-bytes=2000000000
./boostd -vv run- 
Edit
~/.boost/config.tomland set theListenAddressesunder[Libp2p]to TCP port 50000 and restartboostd - 
Node down the peer ID that boostd outputs (
Boost libp2p node listening {"maddr": "{HERE}") and stopboostdagain. - 
Run these to tell the chain where to find Boost (on the same terminal with the env vars)
 
lotus-miner actor set-peer-id <boost peer ID from above>
lotus-miner actor set-addrs /ip4/127.0.0.1/tcp/50000- Disable verified deals on Estuary:
 
--- a/handlers.go
+++ b/handlers.go
@@ -1431,7 +1431,7 @@ func (s *Server) handleMakeDeal(c echo.Context, u *User) error {
                return err
        }
 
-       id, err := s.CM.makeDealWithMiner(ctx, cont, addr, true)
+       id, err := s.CM.makeDealWithMiner(ctx, cont, addr, false)
        if err != nil {
                return err
        }
--- a/replication.go
+++ b/replication.go
@@ -1211,7 +1211,7 @@ func (cm *ContentManager) ensureStorage(ctx context.Context, content Content, do
        ))
        defer span.End()
 
-       verified := true
+       verified := false
 
        if content.AggregatedIn > 0 {
                // This content is aggregated inside another piece of content, nothing to do here
- Get the value of the FULLNODE_API_INFO environment variable that was output on step 3 above, and run estuary with that env var.
 
make clean all && rm -rf mystorage && mkdir mystorage && ./estuary setup && FULLNODE_API_INFO=PASTE-HERE ./estuary --datadir=mystorage --logging --announce=/ip4/127.0.0.1/tcp/6744/p2p/<ESTUARY PEER ID>- Note down estuary's wallet address 
Wallet adderss is: COPY-FROM-HERE - Add 5000 FIL to Estuary's wallet in the devnet:
 
lotus send --from=$DEFAULT_WALLET <estuary client wallet address> 5000- Use sqlite3 to edit estuary.db and replace the miners in estuary's db with the boost miner 
t01000 
sqlite3 estuary.db
.mode quote
.head on
delete from storage_miners where id > 1;
update storage_miners set address = 't01000' where id=1;- Build the react frontend for boost with 
make reactand restart./boostd -vv run(remember all of these have to be in the same window with env vars) - Open 
localhost:8080to see the Boost web UI >settings> setPriceandVerified Priceto zero. 
You should now be able to make deals from estuary with Boost