package tezos-protocol-015-PtLimaPt

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

Install

Dune Dependency

Authors

Maintainers

Sources

tezos-16.0.tar.gz
sha256=ad9e08819871c75ba6f4530b125f7d157799398e4d77a1e6bfea9d91ff37ff55
sha512=c5dc4d40cc09bc6980fbbdb5c2e105bf4252cf9cfcb2b49660b0ebe4dc789f6709ec3b3bf2f87d81580d3eed9521eeb1c960f24d9b14eb0285aaba1f84d10a9b

doc/tezos-protocol-015-PtLimaPt.raw/Tezos_raw_protocol_015_PtLimaPt/Zk_rollup_account_repr/index.html

Module Tezos_raw_protocol_015_PtLimaPt.Zk_rollup_account_reprSource

Representation of a ZK Rollup account.

Sourcetype static = {
  1. public_parameters : Tezos_protocol_environment_015_PtLimaPt.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 : bool SMap.t;
    (*

    Circuit names, alongside a boolean flag indicating if they can be used for private ops.

    *)
  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_015_PtLimaPt.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_015_PtLimaPt.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;
}
OCaml

Innovation. Community. Security.