A cycle is composed by 4096 blocks and lasts slightly less than 3 days.
bake: 16 / halving_factor
TZL
endorse: 2 / halving_factor
TZL
seed nonce revelation: 0.125 / halving_factor
TZL
Halving factor depends on the halving period. Halving period is incremented each 256 cycles (~2 years). Halving factor is then computed as 2 ^ halving_period
.
Choose a block_number
and call: https://rpc.betanet.tzlibre.io/chains/main/blocks/head/helpers/baking_rights?level=<block_number>
.
Your keys are strored in: ~/.tzlibre-client-betanet
.
Depending on your connection and on chain length it can take anything between 30 minutes and a few hours.
1000 TZL
Yes, 1344 TZL per block and 84 TZL per endorsement.
But, from cycle 0
o 1
security deposits are 0
TZL due preserved_cycles
.
Then from cycle preserved_cycles + 1 = 4
to preserved_cycles + 1 + security_deposit_ramp_up_cycles = 134
it will be (1344+83*32)/128*(i-preserved_cycles)
where i
is the current cycle.
Check logs of baker container:
docker logs -f tzlibre_baker
Check logs of baker endorser:
docker logs -f tzlibre_endorser
You can use this endpoint to retrieve your next baking rights, renaming {YOUR_ADDRESS}
with your baking address.
https://api-explorer.betanet.tzlibre.io/tables/rights?priority=0&columns=type,address,cycle,height,priority&address={YOUR_ADDRESS}
You'll receive something like this:
[["endorsing", // type of baking rights"tz1...", // baking address6, // cycle26105, // level0 // priority]]