We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We should add support for generating STARK proofs in the triton-vm using their assembly language.
The triton vm parses some assembly, executes it in a VM, and generates a proof of execution showing
Each program can accept public inputs and secret inputs. Proofs are generally < 1 MB, growing logarithmically with program length.
Proofs require no pre-shared constants. e.g. no zkey, srs, vkey, pkey, etc.
Add a test generating a proof from an assembly program. The test should accept some public and private inputs and generate some outputs.
The text was updated successfully, but these errors were encountered:
Here is a program that takes no inputs and generates no outputs.
push 0 push 10 push 100 push 1000 dup 3 dup 5 dup 4 push 2 push 4 mul invert mul add push -1 mul add dup 5 dup 3 dup 5 dup 5 dup 6 dup 7 dup 8 mul mul mul invert mul add mul swap 3 pop 1 halt
Sorry, something went wrong.
No branches or pull requests
Problem
We should add support for generating STARK proofs in the triton-vm using their assembly language.
Details
The triton vm parses some assembly, executes it in a VM, and generates a proof of execution showing
Each program can accept public inputs and secret inputs. Proofs are generally < 1 MB, growing logarithmically with program length.
Proofs require no pre-shared constants. e.g. no zkey, srs, vkey, pkey, etc.
Acceptance criteria
Add a test generating a proof from an assembly program. The test should accept some public and private inputs and generate some outputs.
The text was updated successfully, but these errors were encountered: