Magamedrasul Ibragimov
Magamedrasul Ibragimov
There is a code https://os.phil-opp.com/hardware-interrupts/#handling-timer-interrupts Any reason to make this: ``` impl InterruptIndex { fn as_u8(self) -> u8 { self as u8 } fn as_usize(self) -> usize { usize::from(self.as_u8()) }...
### Description MCOPY Opcode Implementation ### Issue Link #1760 ### Type of change - [X] New feature (non-breaking change which adds functionality)
## Issue Link Closes #510
Hey. I don't know if this example/repo is relevant, but I found the bug in the circuit, when was trying to implement my own merkle-tree based on this implementation. The...
Hi, I'm trying to use [RLN circuits](https://github.com/privacy-scaling-explorations/rln/tree/master/circuits) and it doesn't work (runs forever). However, in release mode everything works fine. It stucks on `CircomConfig::new()`. What can be the problem ?
[This post](https://zkresear.ch/t/rln-on-kzg-polynomial-commitment-scheme-cross-posted/114) describes different versions of KZG RLN. There are a lot more variations of "RLN on KZG" possible, but it's still great to implement VersionB and VersionC from the...
### Description This PR adds fixes from Scroll/testool - scroll-tech/zkevm-circuits#1235. Initially I wanted to do that by `cherry-pick`, but it added much more here - so I did it manually.