Module Sc_rollups.Kind

A smart contract rollup has a kind, which assigns meaning to rollup operations.

type t =
  1. | Example_arith
  2. | Wasm_2_0_0
  3. | Riscv

The list of available rollup kinds.

This list must only be appended for backward compatibility.

val equal : t -> t -> bool
val pvm_of : t -> PVM.t

pvm_of kind returns the PVM of the given kind.

val all : t list

all returns all implemented PVMs.

val of_string : string -> t option
val to_string : t -> string