Overview of the economic protocol ================================= Tezos is a self-amending blockchain, in that a large part of Tezos can be changed through a so-called amendment procedure. To this end, as mentioned in :ref:`the big picture`, a Tezos node consists of two components: - the shell, which comprises the network and storage layer, and embeds - the economic protocol component, which is the part that can be changed through amendment. The role of the economic protocol ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .. FIXME tezos/tezos#3921: Update for pipelined validation up to Lima. At a very high level, a protocol must: - implement protocol-specific types, such as the type of operations or protocol-specific block header data (in addition to the shell generic header), - define under which conditions a block is a valid extension of the current blockchain, and define an ordering on blocks to arbitrate between concurrent extensions. Validity conditions are implemented in the ``apply`` function which is called whenever the node processes a block---see the dedicated :doc:`protocol validation and operation` entry for further detail into the validation and application process for :ref:`blocks` and their :ref:`operations`. .. _shell_proto_interact_alpha: Shell-protocol interaction ~~~~~~~~~~~~~~~~~~~~~~~~~~ In the Tezos :ref:`architecture`, the economic protocol and the shell interact in order to ensure that the blocks being appended to the blockchain are valid. There are mainly two rules that the shell uses when receiving a new block: - The shell does not accept a block whose level is below the current :ref:`checkpoint`. The checkpoint itself is updated based on information resulting from successful block applications by the protocol which depends on the protocol consensus algorithm. Previously accepted blocks with lower levels than the current checkpoint are considered finalized and immutable. - The shell changes the head of the chain to this new block only if the block is :doc:`valid<../shell/validation>`, and it has a higher fitness than the current head; a block is :ref:`valid` only if all the operations included are also :ref:`valid`. The support provided by the protocol for validating blocks can be modulated by different :ref:`validation modes`. They allow using this same interface for quite different use cases, as follows: - being able to :ref:`apply` a block, typically used by the shell's :doc:`validator <../shell/validation>` component; - being able to :ref:`construct` a block, typically used by the baker daemon to *bake* -- that is, to produce -- a new block; - being able to :ref:`partially construct` a block, typically used by the :doc:`prevalidator <../shell/prevalidation>` to determine valid operations in the mempool; and, - being able to :ref:`pre-apply` a block, typically used in the :doc:`validator <../shell/validation>` to precheck a block, avoiding to further consider invalid blocks. .. _block_contents_alpha: Blocks, Operations and their Validation ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .. FIXME tezos/tezos#3914: Integrate protocol-specific block parts in the blocks and ops entry. A block consists of a header and operations. A block's header is composed of two parts: :ref:`the protocol-agnostic part` and :ref:`the protocol-specific part`. This separation enables the shell to interact with different protocols. Each Tezos economic protocol can specify different kinds of operations, which are described further in detail in :doc:`./blocks_ops`. The semantics of, respectively, operations and blocks is indeed also dependent on each economic protocol. The :doc:`Validation and Application` entry explains the internals of *validation* -- that is, how to determine whether operations and blocks can be safely included in the Tezos blockchain -- and *application* -- that is, how the effects of operations and blocks are taken into account -- for this economic protocol. .. _protocol_constants_alpha: Protocol constants ~~~~~~~~~~~~~~~~~~ Protocols are tuned by several *protocol constants*, such as the size of a nonce, or the number of blocks per cycle. One can distinguish two kinds of protocol constants: - *fixed* protocol constants, such as the size of a nonce, are values wired in the code of a protocol, and can only be changed by protocol amendment (that is, by adopting a new protocol) - *parametric* protocol constants, such as the number of blocks per cycle, are values maintained in a read-only data structure that can be instantiated differently, for the same protocol, from one network to another (for instance, test networks move faster). The *list* of protocol constants can be found in the OCaml APIs: - fixed protocol constants are defined in the module :package-api:`Constants_repr ` - parametric constants are defined in the module :package-api:`Constants_parametric_repr ` The *values* of protocol constants in any given protocol can be found using specific RPC calls: - one RPC for :ref:`all constants `, as shown in :ref:`this example ` - one RPC for :ref:`the parametric constants `. Further documentation of various protocol constants can be found in the subsystems where they conceptually belong. See, for example: - :ref:`proof-of-stake parameters ` - :ref:`consensus-related parameters ` - :ref:`randomness generation parameters ` - :ref:`DAL parameters ` See also ~~~~~~~~ An in-depth description of the internals of developing a new Tezos protocol can be found in the blog post: `How to write a Tezos protocol `_.