-
Notifications
You must be signed in to change notification settings - Fork 50
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
feat: add read/commit API for go runtime #158
Conversation
prover/examples/add-go/go.mod
Outdated
require github.com/zkMIPS/zkm/go-runtime/zkm_runtime v0.0.0-00010101000000-000000000000 | ||
|
||
require ( | ||
github.com/blocto/solana-go-sdk v1.30.0 // indirect |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we remove this deps?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK. It was used in previous implementation.
prover/examples/zkmips.rs
Outdated
@@ -340,6 +427,7 @@ fn main() { | |||
"prove_groth16" => prove_groth16(), | |||
"bench" => prove_sha2_bench(), | |||
"revm" => prove_revm(), | |||
"goexample" => prove_add_example(), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should refactor this parameter. We should not mix the step with the specific host program. we can use a new parameter to represent the host program.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK. I have simplified the commands.
No description provided.