package tezos-protocol-alpha

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type pending_op_public_inputs = {
  1. old_state : State.t;
  2. new_state : State.t;
  3. fee : scalar;
  4. exit_validity : bool;
  5. zk_rollup : t;
  6. l2_op : Operation.t;
}
type private_batch_public_inputs = {
  1. old_state : State.t;
  2. new_state : State.t;
  3. fees : scalar;
  4. zk_rollup : t;
}
type fee_public_inputs = {
  1. old_state : State.t;
  2. new_state : State.t;
  3. fees : scalar;
}
type t =
  1. | Pending_op of pending_op_public_inputs
  2. | Private_batch of private_batch_public_inputs
  3. | Fee of fee_public_inputs
val to_scalar_array : t -> scalar array
OCaml

Innovation. Community. Security.