package tezos-protocol-016-PtMumbai

  1. Overview
  2. Docs
Tezos/Protocol: economic-protocol definition

Install

Dune Dependency

Authors

Maintainers

Sources

tezos-17.3.tar.gz
sha256=7062cd57addd452852598a2214ade393130efa087b99068d53713bdf912b3680
sha512=08e4091144a03ce3c107fb91a66501bd8b65ca3278917c455a2eaac6df3e108ade63f6ab8340a4bb152d60f404326e464d0ec95d26cafe8e82f870465d24a5fc

doc/tezos-protocol-016-PtMumbai.raw/Tezos_raw_protocol_016_PtMumbai/Zk_rollup_account_repr/index.html

Module Tezos_raw_protocol_016_PtMumbai.Zk_rollup_account_reprSource

Representation of a ZK Rollup account.

Sourcetype static = {
  1. public_parameters : Tezos_protocol_environment_016_PtMumbai.Plonk.public_parameters;
    (*

    Input to the Plonk verifier that are fixed once the circuits are decided.

    *)
  2. state_length : int;
    (*

    Number of scalars in the state.

    *)
  3. circuits_info : [ `Public | `Private | `Fee ] SMap.t;
    (*

    Circuit names, alongside a tag indicating its kind.

    *)
  4. nb_ops : int;
    (*

    Valid op codes of L2 operations must be in [0, nb_ops)

    *)
}

Static part of a ZKRU account. These are set at origination, after which they cannot be modified.

Sourcetype dynamic = {
  1. state : Zk_rollup_state_repr.t;
    (*

    Array of scalars representing the state of the rollup at a given level.

    *)
  2. paid_l2_operations_storage_space : Tezos_protocol_environment_016_PtMumbai.Z.t;
    (*

    Number of bytes for storage of L2 operations that have been already paid for.

    *)
  3. used_l2_operations_storage_space : Tezos_protocol_environment_016_PtMumbai.Z.t;
    (*

    Number of bytes for storage of L2 operations that are being used.

    *)
}

Dynamic part of a ZKRU account.

Sourcetype t = {
  1. static : static;
  2. dynamic : dynamic;
}
Sourceval circuits_info_encoding : [ `Public | `Private | `Fee ] SMap.t Tezos_protocol_environment_016_PtMumbai.Data_encoding.t
OCaml

Innovation. Community. Security.