Operators
This is a basic description of each operator. If you want tangible examples for how to use them, check out the Examples page.
The operators in the Modules section, as well as if
, qq
, and unquote
are only part of Chialisp, not the compiled CLVM representation.
Additionally, they do not have an intrinsic cost, since they are compiled to CLVM and not actually executed on their own.
Chialisp Modules
Statement | Format | Description |
---|---|---|
mod | (mod A B) | Compiles module with args A and body B. |
include | (include A.clib) | Includes file A containing a list of statements. |
defun | (defun A B C) | Function named A with args B and body C. |
defun-inline | (defun-inline A B C) | Inline function named A with args B and body C. |
lambda | (lambda A B) | Lambda function with args A and body B. |
defmacro | (defmacro A B C) | Macro named A with args B and body C. |
defconstant | (defconstant A B) | Constant A with value B. |
Arithmetic
Operator | Format | Description |
---|---|---|
+ | (+ A B ...) | Adds multiple atoms. |
- | (- A B ...) | Subtracts multiple atoms. |
* | (* A B ...) | Multiplies multiple atoms. |
/ | (/ A B) | Divides two atoms. |
divmod | (divmod A B) | Calculates quotient and remainder in cons pair. |
Negative Division
The /
operator cannot be used to divide negative numbers. Previously this worked, but used the wrong method of dividing negative integers. The operator was soft-forked at block height 2,300,000 to prevent this.
You should use divmod
instead in situations where you need to divide negative numbers.
For example:
(f (divmod -6 3)) ; -2
Comparison
Operator | Format | Description |
---|---|---|
= | (= A B) | True if both atoms are equal. |
> | (> A B) | True if the first atom is greater as a number. |
>s | (>s A B) | True if the first atom is greater as a string of bytes. |
not | (not A) | True if the atom is false. |
all | (all A B ...) | True if all of the atoms are non-zero. |
any | (any A B ...) | True if any of the atoms are non-zero. |
Control Flow
Operator | Format | Description |
---|---|---|
if | (if A B C) | Chialisp only - If A is true, then B, otherwise C. Lazy evaluated. |
i - if | (i A B C) | If A is true, then B, otherwise C. |
x - exit | (x ...) | Terminate the program with zero or more values. |
If Operator
The if
operator is lazy evaluated. This means that code paths are not evaluated unless they need to be.
Usually this is the intended behavior, but if it isn't, you can use the i
operator instead.
If you would like to replicate the lazy evaluation of the if
operator in CLVM, you can wrap the i
operator like this:
(a (i A (q . B) (q . C)) 1)
Essentially, this runs the branch the condition matches as a program (with the current environment). Depending on how much code is executed in each branch, this may be more cost effective than executing both branches.
Evaluation
Operator | Format | Description |
---|---|---|
qq - quasi-quote | (qq A) | Chialisp only - Quote an expression except for certain sections. |
unquote | (unquote A) | Chialisp only - Unquote a section of an expression inside qq . |
q - quote | (q . A) | Treats A as a value rather than a program. |
a - apply | (a A B) | Evaluate value A as a program with value B as its environment. |
@ - environment | (@ A) | Chialisp only - Access value A from the environment. |
Environment Operator
The @
operator acts in a similar fashion to unquoted atoms in CLVM. If @
is used plainly as a value, its value is the whole environment.
Lists
Operator | Format | Description |
---|---|---|
f - first | (f A) | First value in list A. |
r - rest | (r A) | Rest of the values in list A. |
c - cons | (c A B) | Cons pair of A and B, or prepend A to list B. |
l - list predicate | (l A) | True if A is a list, not nil. Can be used to check length. |
Atoms
Operator | Format | Description |
---|---|---|
sha256 | (sha256 A B ...) | Calculates the sha256 hash of the atoms. |
concat | (concat A B ...) | Concatenates the bytes of the atoms. |
strlen | (strlen A) | Returns the length of the atom. |
substr | (substr A B C) | Slice of bytes A between B and C, exclusive. |
logand | (logand A B ...) | Bitwise and of the atoms. |
logior | (logior A B ...) | Bitwise logical or of the atoms. |
logxor | (logxor A B ...) | Bitwise xor of the atoms. |
lognot | (lognot A) | Bitwise not of A. |
ash - arithmetic shift | (ash A B) | Arithmetic shift A by B bits. |
lsh - logical shift | (lsh A B) | Logical shift A by B bits. |
BLS12-381
Operator | Format | Description |
---|---|---|
point_add | (point_add A B ...) | Adds G1 points (public keys) together. |
pubkey_for_exp | (pubkey_for_exp A) | Turns A (private key) into a G1 point (public key). |
Softfork
The softfork operator is defined as (softfork cost A B ..)
.
At the moment, softfork
always returns 0
(nil), and requires cost
amount of cost.
At first glance, it seems pretty useless since it doesn't do anything and just wastes cost doing it.
The idea is, after a soft fork, the meaning of the arguments may change. In fact, we can hide completely new dialects of CLVM inside here, that have new operators that calculate new things.
For example, suppose we want to add secp256k1 operators like +s
for adding two points on this ECDSA curve for bitcoin compatibility. We can't just do this in vanilla CLVM, because that would make the program (+s A B)
return different values before and after the soft fork. So instead, we can hide it under softfork
.
Here is an example:
(mod (cost p1 p2 p3 p4)
(softfork cost 1 (assert (= (+s p1 p2) (+s p3 p4))))
)
Pre-softfork, this always passes and returns ()
at a cost of cost
(plus a bit of overhead).
Post-softfork, this also returns ()
at a cost of cost
, but may also fail if p1 + p2 != p3 + p4
. We can't export the sum outside the softfork
boundary, but we can calculate the sum and compare it to another thing inside.
We take the cost of running the program inside the softfork
boundary and ensure it exactly matches COST
, and raise an exception if it's wrong. That way, the program really does have the same cost pre and post-softfork (or it fails post-softfork).
The softfork
operator is currently unused, as there has not been a soft fork that has required new CLVM operators since mainnet. It exists solely as a way to implement new functionality later on if needed.