| 1234567891011121314151617 |
- // Opcodes supported by the VM
- #[derive(Clone, Debug)]
- pub enum Opcode {
- EcAdd = 0x00,
- EcMul = 0x01,
- EcMulShort = 0x02,
- EcGetX = 0x03,
- EcGetY = 0x04,
- PoseidonHash = 0x10,
- CalculateMerkleRoot = 0x20,
- ConstrainInstance = 0xf0,
- Noop = 0xff,
- }
|