CLVM vs EVM
We'll start with a brief description of CLVM. For details on the inner workings of CLVM, see our CLVM reference.
- CLVM is the compiled, minimal version of ChiaLisp that is used by the Chia network.
- CLVM is built out of cons boxes and atoms. Cons boxes contain two items, which can be either an atom or another cons box.
- All CLVM programs can be represented as a binary tree. Evaluation is similar to that of standard Lisp.
- CLVM uses a minimal operator set, most of which are a single letter.