-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule risc0-ethereum
updated
26 files
+8 −8 | .github/workflows/main.yml | |
+654 −664 | Cargo.lock | |
+9 −11 | Cargo.toml | |
+2 −2 | contracts/Cargo.toml | |
+1 −1 | contracts/src/IRiscZeroVerifier.sol | |
+1 −1 | contracts/src/RiscZeroCheats.sol | |
+4 −4 | contracts/src/groth16.rs | |
+2 −2 | contracts/src/groth16/ControlID.sol | |
+14 −14 | contracts/src/groth16/Groth16Verifier.sol | |
+3 −3 | contracts/test/TestReceipt.sol | |
+1 −1 | ffi/Cargo.toml | |
+11 −7 | relay/Cargo.toml | |
+22 −0 | relay/src/bin/bonsai-rest-api-mock.rs | |
+0 −0 | relay/src/bin/risc0-ethereum-relay.rs | |
+153 −0 | relay/src/bonsai_rest_api_mock/error.rs | |
+186 −0 | relay/src/bonsai_rest_api_mock/mod.rs | |
+185 −0 | relay/src/bonsai_rest_api_mock/prover.rs | |
+197 −0 | relay/src/bonsai_rest_api_mock/routes.rs | |
+69 −0 | relay/src/bonsai_rest_api_mock/state.rs | |
+2 −1 | relay/src/lib.rs | |
+5 −9 | relay/src/tests/utils.rs | |
+2 −1 | relay/src/uploader/completed_proofs/snark.rs | |
+32 −18 | relay/tests/methods/guest/Cargo.lock | |
+13 −1 | relay/tests/methods/guest/Cargo.toml | |
+24 −0 | relay/tests/methods/guest/src/bin/hello_commit.rs | |
+1 −1 | rust-toolchain.toml |