# Adding new operators
---
There are two approaches to soft-forking in support for new operators:
1. Adding a new extension to the `softfork` operator (e.g. the BLS operators)
2. Assigning meaning to a, previously unknown, operator. Pick an opcode who's
cost matches the cost you want your operator to have. The cost of unknown
operators are defined by a formula, defined
[here](https://github.com/Chia-Network/clvm_rs/blob/main/src/more_ops.rs#L156-L182).
Using approach (2) only works for operators that unconditionally return nil, and
raise in case of an error. i.e. it can be use for "assert-style" operators that validate
something.
Follow this checklist when adding operators:
- Add test cases in a new file under `op-tests/`. Make sure to include all
possible ways the operator(s) can fail.
- If relevant, write a script that generates test vectors, printing them into a
file under `op-tests/` (see `tools/generate-bls-tests.py`). This is to ensure
the new operator's behavior match at least one other implementation.
- Include the new operators in the fuzzer `fuzz/fuzz_targets/operators.rs`.
Make sure to fuzz for some time before landing the PR.
- Extend the benchmark-clvm-cost.rs to include benchmarks for the new operator,
to establish its cost.
- The opcode decoding and dispatching happens in `src/chia_dialect.rs`
- The ChiaDialect trait also has a function called gc_candidate(). If the new
operator is likely to return a small atom (say 48 bytes or less), this
function should return `true` for the new opcode. This allows the interpreter to
free all memory allocated by the opcode and any arguments computed for its
invocation. As long as the return value is a small atom and can easily be put
back in the allocator.
- Add support for the new operators in `src/test_ops.rs` `parse_atom()`, to
compile the name of the operator to its corresponding opcode.
- If the operator(s) are part of an extension to `softfork`, add another value
to the `OperatorSet` enum.
- Add a new flag (in `src/chia_dialect.rs`) that controls whether the
operators are activated or not. This is required in order for the chain to exist
in a state _before_ your soft-fork has activated, and behave consistently with
versions of the node that doesn't know about your new operators.
Make sure the value of the flag does not collide with any of the flags in
[chia_rs](https://github.com/Chia-Network/chia_rs/blob/main/crates/chia-consensus/src/gen/flags.rs).
This is a quirk where both of these repos share the same flags space.
- Once a soft-fork has activated, if everything on chain before the softfork is
compatible with the new rules (which is likely and ought to be the ambition
with all soft-forks), all logic surrounding activating or deactivating the
soft-fork should be removed.
- Expose the new flag(s) to python in chia_rs.
- clvm-fuzzing/src/make_tree.rs has a list of operators, their argument types
and return types. Add the new operator to this list.