Show pool contract address of plots with CLI

Is there a way to list all plots and the pool contact address they belong to with the CLI? The information is shown in the GUI, but I don’t know a way to list it through the CLI. Chia plots check shows only pool and farmer public key, but not pool contact address…

This will output the puzzle hash which you can convert at chiaexplorer:

curl --insecure --cert ~/.chia/mainnet/config/ssl/harvester/private_harvester.crt --key \
~/.chia/mainnet/config/ssl/harvester/private_harvester.key -d '{"":""}' \
-H "Content-Type: application/json" -X POST https://localhost:8560/get_plots | python3 -m json.tool

Source

1 Like