Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Standard Circom Gadget with Keccak example #997

Merged
merged 24 commits into from
Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
9868dc8
chore: ignore Jetbrain config folder
tchataigner Dec 21, 2023
b2cc56e
feat(circom): CLI import with author/name
tchataigner Dec 21, 2023
1f4a04f
feat(circom): adapt current circom implem
tchataigner Dec 21, 2023
1ec6a5d
feat(circom): default local and fallback remote
tchataigner Dec 21, 2023
3e7c781
docs(circom): README to explain behavior of Circom Coproc & Gadget
tchataigner Dec 21, 2023
0630e29
docs(circom): added link to template gadget
tchataigner Dec 21, 2023
dc9cc1c
docs(circom): wip example keccak
tchataigner Dec 21, 2023
6bb752c
fix(circom): fixed CI test
tchataigner Dec 21, 2023
9ac4a17
fix(circom): fixed clippy in examples
tchataigner Dec 21, 2023
db3e647
feat(circom): wip review
tchataigner Jan 23, 2024
e6efcff
feat(circom): wip argument from lurk
tchataigner Jan 30, 2024
1abf895
feat(circom): trying out AllocatedPtr and Var
tchataigner Feb 8, 2024
e86ee6e
feat(circom): wip working on evaluation values
tchataigner Feb 23, 2024
946d57e
refactor(circom): wip making list work
tchataigner Mar 7, 2024
c071a6c
feature(circom): working keccak example
tchataigner Mar 8, 2024
7ba3139
feature(circom): only keeping one example
tchataigner Mar 8, 2024
6067c4c
refactor(circom): fix xclippy
tchataigner Mar 8, 2024
a45b636
refactor(circom): fix wasm build
tchataigner Mar 8, 2024
c941350
refactor(circom): integrate review & adapt chain_car_cdr
tchataigner Mar 8, 2024
ccaec9b
refactor(circom): remove unecessary todos
tchataigner Mar 8, 2024
cca3bf7
refactor(circom): to bits le on alloc num
tchataigner Mar 11, 2024
0d77ddd
Update src/coprocessor/circom/mod.rs
tchataigner Mar 12, 2024
85d4897
refactor(circom): using bellpepper utils
tchataigner Mar 12, 2024
faaf71d
fix(circom): using proper commit for lurk lib
tchataigner Mar 13, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@ Cargo.lock

# Configurations for VSCode
.vscode/

# Configuration for Jetbrains
.idea/
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ thiserror = { workspace = true }
abomonation = { workspace = true }
abomonation_derive = { version = "0.1.0", package = "abomonation_derive_ng" }
byteorder = "1.4.3"
circom-scotia = { git = "https://github.com/lurk-lab/circom-scotia", branch = "dev" }
circom-scotia = { git = "https://github.com/lurk-lab/circom-scotia", branch = "main" }
sha2 = { version = "0.10.2" }
reqwest = { version = "0.11.18", features = ["stream", "blocking"] }
ansi_term = "0.12.1"
Expand Down Expand Up @@ -95,6 +95,7 @@ criterion = "0.5"
expect-test = "1.4.1"
hex = "0.4.3"
statrs = "0.16.0"
tiny-keccak = { version = "2.0.2", features = ["keccak"] }
tap = "1.0.1"
tempfile = { workspace = true }

Expand Down
155 changes: 0 additions & 155 deletions examples/circom.rs

This file was deleted.

Loading