oskarth
oskarth
Use MVDS over an alternative transport other than Whisper. Ensures design is sound and generalized correctly. E.g. straight over ULB, or libp2p gossip sub, or PSS, etc. N.B. Perhaps research...
# Problem As a developer, it isn't clear how to get started with RLN in Zerokit. ## Context Zerokit has multiple crates, where RLN is the most important one right...
# Problem As a dapp developer I'm required to know and deal with a lot of different runtimes/domains (JS/Circom/Solidity/Rust/ZK etc). Minimizing cognitive overhead would be useful. ## Context Also see...
# Problem Currently we are doing special-purpose APIs for e.g. RLN. It'd be useful to factor out the general parts and allow and Circom-based circuits to be used through Zerokit....
# Problem When debugging circuits, it is very useful to see what constraints haven't been met and why. ## Details This should be possible with `ConstraintLayer` but I haven't managed...
# Problem As an example, it'd be useful to have something that works end to end. ## Acceptance criteria A lot of the code for Semaphore already exists. This should:...
It'd be great to have WASM support so we can use Zerokit through browsers directly. This issue corrsponds to already opened PR by @richard-ramos https://github.com/vacp2p/zerokit/pull/38
It'd be useful with a Makefile that installs all dependencies etc in a uniform way. This makes it easier for new people to be onboarded to this project and reduces...
# Problem Currently RLN spec is in a generally solid state, but it is slightly out of date, which makes it less reliable to use as a source of truth...
``` clojure ;; works (def a (atom 0)) (def b (computed-observable (inc @a))) (def c (computed-observable (dec @a))) (def d (computed-observable (str @b))) ;; doesn't work ;; In the chrome...