Check Block Schedule
Este contenido aún no está disponible en español.
You can check if you are scheduled to mint block by running the slot leader check in the cardano-cli.
This can be done for either the current epoch or the next epoch. The next epoch’s schedule becomes available once the current epoch is at least 70% complete.

Run Slot Leader Check for Current Epoch
Section titled “Run Slot Leader Check for Current Epoch”Run the following command to check whether your pool is scheduled to mint a block in the current epoch.
✅ This assumes you have a stakepoolid.txt file on your BP. If not, follow steps here.
⚠️ Adjust paths if needed
cd ~/dingocardano-cli query leadership-schedule \ --genesis $HOME/dingo/config/cardano/preview/shelley-genesis.json \ --stake-pool-id $(cat stakepoolid.txt) \ --vrf-signing-key-file vrf.skey \ --testnet-magic 2 \ --currentRun Slot Leader Check for Next Epoch
Section titled “Run Slot Leader Check for Next Epoch”Run the following command to check whether your pool is scheduled to mint a block in the next epoch. (Only run this when the current epoch is more than 70% complete.)
✅ This assumes you have a stakepoolid.txt file on your BP. If not, follow steps here.
⚠️ Adjust paths if needed
cd ~/dingocardano-cli query leadership-schedule \ --genesis $HOME/dingo/config/cardano/preview/shelley-genesis.json \ --stake-pool-id $(cat stakepoolid.txt) \ --vrf-signing-key-file vrf.skey \ --testnet-magic 2 \ --nextCongratulations!
Section titled “Congratulations!”Hopefully your pool is scheduled to mint Cardano blocks using Dingo!