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

Adding support for eip-1186 proofs #146

Merged
merged 10 commits into from
Mar 2, 2022
Merged

Commits on Dec 15, 2021

  1. Adding support for eip-1186 proofs

    EIP-1186[1] is the standard for generating proofs used by EVM-based clients.
    
    The current proof crate in trie-db generates (and verifies) compact proofs that are not compatible with eip-1186.
    This commit adds functions to generate and verify such proofs, adding also proper testing of such new APIs
    
    [1] https://eips.ethereum.org/EIPS/eip-1186
    Giulio committed Dec 15, 2021
    Configuration menu
    Copy the full SHA
    d92084a View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2022

  1. first round of PR review

    Giulio committed Jan 13, 2022
    Configuration menu
    Copy the full SHA
    ae90c59 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2022

  1. rustfmt on eip1186.rs files

    Giulio committed Jan 18, 2022
    Configuration menu
    Copy the full SHA
    9a02df9 View commit details
    Browse the repository at this point in the history
  2. second round of PR review

    Giulio committed Jan 18, 2022
    Configuration menu
    Copy the full SHA
    7156093 View commit details
    Browse the repository at this point in the history
  3. cargo fmt - 2

    Giulio committed Jan 18, 2022
    Configuration menu
    Copy the full SHA
    4cd6076 View commit details
    Browse the repository at this point in the history
  4. CHANGELOG update

    Giulio committed Jan 18, 2022
    Configuration menu
    Copy the full SHA
    caeac17 View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2022

  1. moving eip1186 to new crate: trie-eip1186

    Giulio committed Jan 19, 2022
    Configuration menu
    Copy the full SHA
    bf5712a View commit details
    Browse the repository at this point in the history
  2. cargo fmt

    Giulio committed Jan 19, 2022
    Configuration menu
    Copy the full SHA
    071118b View commit details
    Browse the repository at this point in the history
  3. Update trie-db/CHANGELOG.md

    Co-authored-by: cheme <emericchevalier.pro@gmail.com>
    lightyear15 and cheme authored Jan 19, 2022
    Configuration menu
    Copy the full SHA
    4797aab View commit details
    Browse the repository at this point in the history
  4. Update trie-eip1186/src/lib.rs

    Co-authored-by: Wei Tang <accounts@that.world>
    lightyear15 and sorpaas authored Jan 19, 2022
    Configuration menu
    Copy the full SHA
    44a3c5e View commit details
    Browse the repository at this point in the history