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

feat: proof generation using local srs transcript file #5

Open
wants to merge 3 commits into
base: latest
Choose a base branch
from

Commits on Jan 24, 2024

  1. feat: proof generation using local srs transcript file

    Implemented additional functions for proof generation leveraging either local or remote SRS data, offering the choice between using a local SRS transcript file or fetching from a default or specified remote URL.
    
    Refactored existing `prove` function to use a new shared utility function `prove_with_srs`, which accepts an SRS strategy object for SRS data handling.
    
    Implemented support for loading local SRS data in the introduced `LocalSrs` trait, which reads the necessary SRS data from a given file path, and updated `NetSrs` trait to optionally accept a custom URL. This makes the proof generation process more portable and less reliant on an internet connection.
    
    Added serial test annotations to prevent state pollution between tests that access shared resources.
    michaelelliot committed Jan 24, 2024
    Configuration menu
    Copy the full SHA
    75dd85e View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2024

  1. Configuration menu
    Copy the full SHA
    91daad6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f8d60d0 View commit details
    Browse the repository at this point in the history