Running Octez#
In this section, we discuss how to take part in the protocol that runs the network. There are three main ways to participate: delegating your coins, staking, and running a delegate. The main advantage of delegating your coins is simplicity. Staking your coins is also as simple, but significantly increases the potential rewards modulo some slightly increased risks. The third way allows to participate more actively in the protocol, by baking blocks and voting, but is more demanding; however, the extra effort is compensated by more rewards in tez.
To learn more about the protocol refer to this page.
No matter how you decide to run Octez, your node must have an accurate time source and be properly synchronized to it, e.g. by configuring an NTP daemon. This is especially important for bakers, as baking nodes desynchronized from the correct time of day have caused operational problems in the past by “baking in the future”.
Delegating your coins#
If you don’t want to deal with the complexity of running your own delegate, you can always take part in the protocol by delegating your coins to one.
Both user accounts and smart contracts can have a delegate. Setting or resetting the delegate of a user account is achieved by the following command:
octez-client set delegate for <user_account> to <delegate>
where <user_account>
is the address or alias of the user
account to delegate and <delegate>
is the address or alias of the
delegate (which has to be registered).
To stop a delegation, the following command can be used:
octez-client withdraw delegate from <user_account>
Smart contract can also delegate the tokens they hold to registered
delegates. The initial delegate of a smart contract can be set at
origination using the --delegate
option:
octez-client originate contract <contract_alias> transferring <initial_balance> from <originator> running <script> --delegate <delegate> --burn-cap <cap>
Once the contract is originated, the only way to stop or modify its
delegation is by using the SET_DELEGATE
Michelson instruction (see
the Michelson documentation for more
details).
Notice that only user accounts can be delegates, so your delegate must be a tz address.
Funds in user accounts which are not registered as delegates do not participate in baking.
Note that delegating coins doesn’t mean that a delegate can spend them, they only add to its delegated balance. In turn, delegators can freely spend their own funds in spite of the active delegation (they are not locked, like in other PoS algorithms). Technically, delegation is a link between a delegator account and a delegate account, meaning that all the funds of the former are delegated to the latter, until the delegation is withdrawn. When a delegator spends their tokens, the delegated balance of their delegate decreases; conversely, when they receive tokens the delegated balance of their delegate increases.
Since the activation of the new staking mechanism, 50% of your total funds count towards your delegator’s baking power (before the staking mechanism, 100% of your total funds counted towards your delegator baking power). The delegated funds still count for 100% for the voting power, just like before the activation of the new staking mechanism.
Staking your coins#
Since the activation of the new staking mechanism, if you don’t want to deal with the complexity of running your own delegate, you can also take part in the protocol by staking part of your coins to accrue to your delegate’s staking power.
Only user accounts (not smart contracts) can stake funds.
Funds can only be staked to your current delegate. Therefore, staking requires previously declaring a delegate. Setting or resetting the delegate of a user account is done as for delegating, see above.
The delegate has no control over your stake: cannot spend it nor unstake it, so your deposit remains yours and under your control. Staked coins cannot be spent by yourself, either; but you can unstake them later. Your staked funds add to your delegate’s staking balance (so staked funds count twice as much as delegated funds). In turn, your staked funds are frozen and subject to slashing in case of misbehavior of your delegate such as double signing, similarly to the delegate’s own staked funds. In compensation of this risk assumed by stakers, they may receive some part of the delegate’s rewards, the exact proportion being settable by the delegate.
As opposed to delegation (where you always delegate all your funds), as a staker you can choose a specific amount from your balance to stake, as follows:
octez-client stake <amount> for <staker>
Later on, you can unstake part or all of your staked funds:
octez-client unstake <amount|"everything"> for <staker>
The requested amount will immediately be unstaked, however it will remain frozen for some period (4 cycles), and only after that the funds are said to be both unstaked and finalizable. At that point, the staker can make them spendable again as follows:
octez-client finalize unstake for <staker>
For more details on the staking interface, see Staked funds management.
Running a delegate#
A delegate is responsible for baking blocks, attesting blocks and accusing other delegates in case they try to double bake or double attest. A delegate is also responsible for taking part in the governance process.
Rights for baking and attesting are randomly assigned to delegates proportionally to their baking power, which usually is their own staked funds plus the funds staked by external stakers, plus half of their total delegation.
A minimal active stake is required for participating in consensus and in governance as a delegate.
Delegates are required to freeze some of their funds into
a security deposit (called their own stake), at least MINIMAL_FROZEN_STAKE
(see Proof-of-stake parameters).
This can be done via the same commands used by external stakers in the previous section.
Since the activation of the new staking mechanism,
a delegate may choose to accept (or not) staked funds from external stakers.
Both the delegate’s own stake and the stake from external stakers can be
slashed (that is, partially lost), when the delegate misbehaves by double-signing.
Delegates can set two parameters by configuring their staking policy:
the maximum ratio of external stake over their own stake: a factor between 0 and 5, by default 0, which means that:
for any factor f, the delegate accepts f times its own stake from external stakers
by default, delegates don’t allow external staking
the proportion of rewards kept by the delegator (the rest being paid to external stakers): a factor between 0 and 1, by default 1.
These paramaters are configured as follows:
octez-client set delegate parameters for <delegate> --limit-of-staking-over-baking <value> --edge-of-baking-over-staking <value>
If the delegated funds exceed 9 times the delegate’s own stake, the delegate is overdelegated. If the staked funds from external stakers exceed the proportion defined by the delegate, the delegate is overstaked. See details and consequences in Staking policy configuration.
On testnets, when you obtain coins from a faucet, if you are lucky to obtain more than the minimum required to be a delegate, you can register the obtained account as a delegate. Otherwise, you need to ask the faucet for more accounts and delegate them to the first.
Register and check your rights#
To run a delegate, you first need to register as one using your user account:
octez-client register key bob as delegate
Once registered, you need to wait consensus_rights_delay + 2 = 7
cycles
for your rights to be considered.
There is a simple rpc that can be used to check your rights for every cycle, up to 5 cycles in the future.
octez-client rpc get /chains/main/blocks/head/helpers/baking_rights\?cycle=300\&delegate=tz1_xxxxxxxxxxx\&max_round=2
Sometimes there is no consensus at a round, so it is worth considering also baking rights at higher rounds, like 2 in the example above.
Inactive delegates#
If a delegate doesn’t show any sign of activity for consensus_rights_delay
it is marked inactive and its rights are removed.
This mechanism is important to remove inactive delegates and reallocate
their rights to the active ones so that the network is always working
smoothly.
Normally even a baker with the minimal stake should perform enough
operations during 5 cycles to remain active.
If for some reason your delegate is marked inactive you can reactivate
it simply by re-registering again like above.
To avoid your Tezos delegate being marked inactive while pausing it for maintenance work, it is advised to check the schedule of future baking and attesting slots assigned to it, using a Tezos block explorer. Alternatively, you may use the baking rights RPC and the attesting rights RPC (see RPCs - OpenAPI reference), which is able to return a list of baking/attesting slots for a given delegate (see example).
Baker#
The baker is a daemon that executes Tezos’ consensus algorithm. The baker runs on behalf of one or more specified accounts or, if none is specified, on behalf of all accounts whose secret keys are known.
During its run, the baker bakes blocks (by selecting transactions from the mempool and arranging them in a new block) and emits consensus operations like attestations. It does so whenever the associated accounts have the necessary rights.
Let’s launch the daemon pointing to the standard node directory and baking for user bob:
octez-baker-<PROTO_HASH> run with local node ~/.tezos-node bob --liquidity-baking-toggle-vote pass
where PROTO_HASH
is the short hash of the current protocol of the network you want to bake on.
Note that the baker needs direct access to
the node data directory for performance reasons (to reduce the number of RPC calls to the node).
Note also that since version 13.0, option --liquidity-baking-toggle-vote
is mandatory, see the changelog.
Note that --liquidity-baking-toggle-vote
must be placed
after run
on the command-line.
Warning
Remember that having two bakers running connected to the same account could lead to double baking/attesting and the loss of all your bonds. If you are worried about the availability of your node when it is its turn to bake/attest, there are other ways than duplicating your credentials (see the discussion in section Inactive delegates). Never use the same account on two daemons.
However, it is safe (and actually necessary) to temporarily run two bakers just before a protocol activation: the baker for the protocol being replaced and the baker for the protocol to be activated.
Note
It is possible to bake and attest using a dedicated Consensus Key instead of the delegate’s key.
The baker uses the same format of configuration file as the client (see Client configuration file).
Warning
When running a baker, it is recommended to carefully save the nonces generated by the baker as part of the consensus protocol, to be able to reveal the nonces before the end of the cycle even if the baker is restarted (e.g., on another machine), so as to avoid losing attestation rewards.
Accuser#
The accuser is a daemon that monitors all blocks received on all chains and looks for:
bakers who signed two blocks at the same level and the same round
bakers who injected more than one pre-attestations or attestation operation for the same level and round (more details here)
Upon finding such irregularity, it will emit respectively a double-baking, double-pre-attesting, or double-attesting denunciation operation, which will cause the offender to be slashed, that is, to lose part of its security deposit.
octez-accuser-alpha run
The accuser uses the same format of configuration file as the client (see Client configuration file).
DAL node#
To add a Data Availability Layer (DAL) node to support data transmission across the network, see DAL layer.
Docker#
If you are running the baker Docker image, you can watch the baker logs with
docker logs
. First, find the name of your container with:
docker ps
If your container is running, its name will appear in the last column.
For instance, if the name is mainnet_baker-PtParisB
, you can
view recent logs with:
docker logs mainnet_baker-PtParisB
If you want to keep watching logs, use -f
:
docker logs mainnet_baker-PtParisB -f
This allows you to know if you baked. You should see lines such as:
Injected block BLxzbB7PBW1axq for bootstrap5 after BLSrg4dXzL2aqq (level 1381, slot 0, fitness 00::0000000000005441, operations 21)