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

[WIP] Validium PoC #5

Closed
wants to merge 185 commits into from
Closed

[WIP] Validium PoC #5

wants to merge 185 commits into from

Commits on Sep 29, 2023

  1. boojum integration

    StanislavBreadless committed Sep 29, 2023
    Configuration menu
    Copy the full SHA
    b2263ee View commit details
    Browse the repository at this point in the history
  2. change verifier

    StanislavBreadless committed Sep 29, 2023
    Configuration menu
    Copy the full SHA
    1ba1b5e View commit details
    Browse the repository at this point in the history
  3. roll back changes

    StanislavBreadless committed Sep 29, 2023
    Configuration menu
    Copy the full SHA
    9557e3e View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2023

  1. Configuration menu
    Copy the full SHA
    6bfa1bf View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2023

  1. fix CI

    StanislavBreadless committed Oct 2, 2023
    Configuration menu
    Copy the full SHA
    14268ba View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    83ac4cf View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2023

  1. chore(ci): Fixing CI (#150)

    # What ❔
    
    * Fixing compilation error in Cargo
    * and clippy warning
    
    ## Why ❔
    
    * To make CI pass
    mm-zk authored Oct 4, 2023
    Configuration menu
    Copy the full SHA
    3930c5d View commit details
    Browse the repository at this point in the history
  2. feat(prover): Witness change for snark wrapper, updated keys (#151)

    # What ❔
    
    * Changed witness for snark wrapper - to pass the previous AUX and META
    fields
    * updated snark_wrapper_verification key to the latest version
    * updated the vk_hash to match the newly generated JSON, and made sure
    that it is being loaded at genesis.
    
    ## Why ❔
    
    * to make boojnet work locally
    mm-zk authored Oct 4, 2023
    Configuration menu
    Copy the full SHA
    2a5c072 View commit details
    Browse the repository at this point in the history
  3. feat(boojum): Adding zk status prover command (#128)

    # What ❔
    
    * Adding zk status prover command to see the current state of FRI prover
    * mostly focused on local deployments (might require some changes before
    we run it on boojnet)
    
    ## Why ❔
    
    * to better see what's going on in the prover pipeline
    
    ## Checklist
    
    ```shell
    zk status prover
    ```
    
    
    ![image](https://github.com/matter-labs/zksync-era/assets/128217157/75cf1137-2479-449d-98cd-0eda75091bf6)
    mm-zk authored Oct 4, 2023
    Configuration menu
    Copy the full SHA
    d4f292b View commit details
    Browse the repository at this point in the history
  4. fix(boojum): Don't pass aggregation_results as recursive aggregation …

    …inputs (#157)
    
    # What ❔
    
    * We were passing incorrect argument to the prover
    
    ## Why ❔
    
    * to make prover work, the original problem was a simple bug/typo.
    mm-zk authored Oct 4, 2023
    Configuration menu
    Copy the full SHA
    1625ec2 View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2023

  1. feat(boojum): added flag to control prover selection at genesis (#158)

    # What ❔
    
    * Added CONTRACTS_PROVER_AT_GENESIS flag to control which prover should
    be used during genesis
    * Updated zk status command to compare the keys in the database and in
    the contracts
    
    ## Why ❔
    
    * without this flag, we were pushing the old keys to the contracts,
    which resulted in failed proofs.
    mm-zk authored Oct 5, 2023
    Configuration menu
    Copy the full SHA
    867f2bf View commit details
    Browse the repository at this point in the history
  2. fix(prover): Use SNARK wrapper VK for picking prover jobs (#142)

    # What ❔
    
    Prover and Witgen now use snark wrapper VKs to pick their jobs.
    
    ## Why ❔
    
    `prover_protocol_versions` table had SNARK wrapper VKs, but prover and
    witgens picked jobs based on FRI scheduler VKs.
    
    Since if one changes the other also does, we can use the SNARK one
    instead, since it's also used in `eth_sender`.
    
    ---------
    
    Co-authored-by: Stanislav Bezkorovainyi <[email protected]>
    ly0va and StanislavBreadless authored Oct 5, 2023
    Configuration menu
    Copy the full SHA
    6040e37 View commit details
    Browse the repository at this point in the history
  3. chore: Bump contracts and system-contracts submodules (#160)

    # What ❔
    
    Checking out latest 'dev' branches in era-contracts and
    era-system-contracts
    
    ## Why ❔
    
    To have the latest contracts changes after boojum-integration branches
    were merged to dev
    
    ## Checklist
    
    <!-- Check your PR fulfills the following items. -->
    <!-- For draft PRs check the boxes as you complete them. -->
    
    - [ ] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [ ] Tests for the changes have been added / updated.
    - [ ] Documentation comments have been added / updated.
    - [ ] Code has been formatted via `zk fmt` and `zk lint`.
    ly0va authored Oct 5, 2023
    Configuration menu
    Copy the full SHA
    2bc95e9 View commit details
    Browse the repository at this point in the history
  4. chore(boojum): Merge main into boojum-integration (#164)

    # What ❔
    
    Merge main branch into boojum-integration
    
    ## Why ❔
    
    To not get far behind
    
    ## Checklist
    
    <!-- Check your PR fulfills the following items. -->
    <!-- For draft PRs check the boxes as you complete them. -->
    
    - [ ] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [ ] Tests for the changes have been added / updated.
    - [ ] Documentation comments have been added / updated.
    - [ ] Code has been formatted via `zk fmt` and `zk lint`.
    
    ---------
    
    Signed-off-by: Danil <[email protected]>
    Co-authored-by: Yury Akudovich <[email protected]>
    Co-authored-by: Shahar Kaminsky <[email protected]>
    Co-authored-by: Aleksandr Stepanov <[email protected]>
    Co-authored-by: Maksym <[email protected]>
    Co-authored-by: Danil <[email protected]>
    Co-authored-by: Alex Ostrovski <[email protected]>
    Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
    Co-authored-by: agolajko <[email protected]>
    Co-authored-by: AnastasiiaVashchuk <[email protected]>
    10 people authored Oct 5, 2023
    Configuration menu
    Copy the full SHA
    7608e5f View commit details
    Browse the repository at this point in the history
  5. sync with main

    StanislavBreadless committed Oct 5, 2023
    Configuration menu
    Copy the full SHA
    16dc31c View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2023

  1. Configuration menu
    Copy the full SHA
    ff0c387 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e265187 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ecad4b6 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    481e417 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1026dd5 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2023

  1. fix(boojum): Fix VK in prover_fri_protocol_versions (#174)

    # What ❔
    
    Use SNARK wrapper VK instead of FRI scheduler VK in proof_data_handler
    
    ## Why ❔
    
    It will be saved to `prover_fri_protocol_versions`, and we need them
    consistent with `protocol_versions`.
    
    
    ## Checklist
    
    <!-- Check your PR fulfills the following items. -->
    <!-- For draft PRs check the boxes as you complete them. -->
    
    - [ ] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [ ] Tests for the changes have been added / updated.
    - [ ] Documentation comments have been added / updated.
    - [ ] Code has been formatted via `zk fmt` and `zk lint`.
    ly0va authored Oct 9, 2023
    Configuration menu
    Copy the full SHA
    742ec84 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ab384c2 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #177 from matter-labs/lyova-merge-main-into-boojum

    chore: Merge main into boojum-integration
    ly0va authored Oct 9, 2023
    Configuration menu
    Copy the full SHA
    d2ca29b View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2023

  1. Configuration menu
    Copy the full SHA
    9b2b576 View commit details
    Browse the repository at this point in the history
  2. remove unused var

    koloz193 committed Oct 10, 2023
    Configuration menu
    Copy the full SHA
    f943c03 View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2023

  1. Configuration menu
    Copy the full SHA
    e9b9ae7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    35fef5a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    70bc440 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    958cbaf View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    548689b View commit details
    Browse the repository at this point in the history
  6. Merge pull request #197 from matter-labs/sb-merge-main-into-boojum-in…

    …tegration
    
    chore: Merge main into boojum integration
    StanislavBreadless authored Oct 11, 2023
    Configuration menu
    Copy the full SHA
    c7153bf View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f56e5ed View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2023

  1. Configuration menu
    Copy the full SHA
    5a015c1 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #203 from matter-labs/sb-integrate-1-4-0

    feat: Use 1.4.0 in vm crate
    StanislavBreadless authored Oct 12, 2023
    Configuration menu
    Copy the full SHA
    9eefd43 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    018a71b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1d6fda4 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #210 from matter-labs/fix-boojum-rocksdb

    fix(boojum): remove extra code from state crate
    perekopskiy authored Oct 12, 2023
    Configuration menu
    Copy the full SHA
    5e7bc64 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2023

  1. reverted changes to old file

    koloz193 committed Oct 16, 2023
    Configuration menu
    Copy the full SHA
    3014213 View commit details
    Browse the repository at this point in the history
  2. simplified calculation logic

    koloz193 committed Oct 16, 2023
    Configuration menu
    Copy the full SHA
    616a526 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4716fab View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2023

  1. use query timestamp

    koloz193 committed Oct 17, 2023
    Configuration menu
    Copy the full SHA
    b30f9f8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e98780f View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2023

  1. fix unit tests

    StanislavBreadless committed Oct 18, 2023
    Configuration menu
    Copy the full SHA
    894b323 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    341d484 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6d60703 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0ea94d2 View commit details
    Browse the repository at this point in the history
  5. fix fee test

    StanislavBreadless committed Oct 18, 2023
    Configuration menu
    Copy the full SHA
    2a67ab7 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4c2d597 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #253 from matter-labs/sb-merge-main-into-boojum

    chore: Merge main into boojum
    ly0va authored Oct 18, 2023
    Configuration menu
    Copy the full SHA
    71ffe99 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2023

  1. merge boojum

    koloz193 committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    e798ba7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3da317c View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2023

  1. removed unnecessary calls

    koloz193 committed Oct 20, 2023
    Configuration menu
    Copy the full SHA
    42ab3ae View commit details
    Browse the repository at this point in the history
  2. Merge pull request #168 from matter-labs/zk-fees-pubdata

    feat(vm): update pubdata fees calculation
    koloz193 authored Oct 20, 2023
    Configuration menu
    Copy the full SHA
    b235187 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2023

  1. Configuration menu
    Copy the full SHA
    744197a View commit details
    Browse the repository at this point in the history
  2. Remove legacy types and keep only new types

    Signed-off-by: Danil <[email protected]>
    Deniallugo committed Oct 25, 2023
    Configuration menu
    Copy the full SHA
    83eb614 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2530061 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f802bf3 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    0967ba0 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    db4ff0f View commit details
    Browse the repository at this point in the history
  7. Revert "fmt: json and yaml files formatted"

    This reverts commit 0967ba0.
    benceharomi committed Oct 25, 2023
    Configuration menu
    Copy the full SHA
    13a15ca View commit details
    Browse the repository at this point in the history
  8. Revert "fmt: json, yaml extensions added to prettier"

    This reverts commit f802bf3.
    benceharomi committed Oct 25, 2023
    Configuration menu
    Copy the full SHA
    2639834 View commit details
    Browse the repository at this point in the history
  9. Fix state_keeper tests

    ly0va committed Oct 25, 2023
    Configuration menu
    Copy the full SHA
    574cde7 View commit details
    Browse the repository at this point in the history
  10. Fix eth_watch unit tests

    ly0va committed Oct 25, 2023
    Configuration menu
    Copy the full SHA
    f071cff View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2023

  1. Fix empty system logs

    ly0va committed Oct 26, 2023
    Configuration menu
    Copy the full SHA
    37fc6bd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    12ffbf5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3628d62 View commit details
    Browse the repository at this point in the history
  4. resolved merge conflicts

    koloz193 committed Oct 26, 2023
    Configuration menu
    Copy the full SHA
    f7ac2de View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2023

  1. Fix some lints

    ly0va committed Oct 27, 2023
    Configuration menu
    Copy the full SHA
    69c7b9e View commit details
    Browse the repository at this point in the history
  2. remove unused variable

    koloz193 committed Oct 27, 2023
    Configuration menu
    Copy the full SHA
    af07c50 View commit details
    Browse the repository at this point in the history
  3. Fix invalid error log

    ly0va committed Oct 27, 2023
    Configuration menu
    Copy the full SHA
    fc0fd77 View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2023

  1. Fix more lints

    ly0va committed Oct 30, 2023
    Configuration menu
    Copy the full SHA
    5e7cc1c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0cecd94 View commit details
    Browse the repository at this point in the history
  3. Fix zk compile

    ly0va committed Oct 30, 2023
    Configuration menu
    Copy the full SHA
    86655f2 View commit details
    Browse the repository at this point in the history
  4. Bump era-contracts

    ly0va committed Oct 30, 2023
    Configuration menu
    Copy the full SHA
    a99026e View commit details
    Browse the repository at this point in the history
  5. Merge pull request #307 from matter-labs/lyova-merge-main-into-boojum…

    …-again
    
    chore: Merge main into boojum-integration
    ly0va authored Oct 30, 2023
    Configuration menu
    Copy the full SHA
    830d719 View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2023

  1. Configuration menu
    Copy the full SHA
    90d3b63 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1b9feae View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2023

  1. Configuration menu
    Copy the full SHA
    222ae96 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2fb9d43 View commit details
    Browse the repository at this point in the history
  3. upd unit tests

    StanislavBreadless committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    293cc9d View commit details
    Browse the repository at this point in the history
  4. fix ext node

    StanislavBreadless committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    487404c View commit details
    Browse the repository at this point in the history
  5. fix compilation

    StanislavBreadless committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    eb44921 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4dd00c9 View commit details
    Browse the repository at this point in the history
  7. Merge pull request matter-labs#383 from matter-labs/sb-sync-boojum-in…

    …tegration-main
    
    chore: Sync boojum integration with main
    StanislavBreadless authored Nov 2, 2023
    Configuration menu
    Copy the full SHA
    7dee1e3 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    fdf8906 View commit details
    Browse the repository at this point in the history
  9. cherry-pick: Temporarily comment out contract-verification test (matt…

    …er-labs#377)
    
    Commenting out contract-verification test, as it is the only part that
    gets broken by hardhat-vyper plugin.
    
    To make CI work. After
    NomicFoundation/hardhat#4552 is merged and
    released, dependencies should be bumped and test should be restored.
    
    <!-- Check your PR fulfills the following items. -->
    <!-- For draft PRs check the boxes as you complete them. -->
    
    - [ ] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [ ] Tests for the changes have been added / updated.
    - [ ] Documentation comments have been added / updated.
    - [ ] Code has been formatted via `zk fmt` and `zk lint`.
    ly0va committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    c3c5c7d View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    27f76f0 View commit details
    Browse the repository at this point in the history
  11. Fix interaction with core

    ly0va committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    9c7706d View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    04a0802 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    4787e86 View commit details
    Browse the repository at this point in the history
  14. Use zkevm 1.4.0

    Signed-off-by: Danil <[email protected]>
    Deniallugo committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    27eaf9b View commit details
    Browse the repository at this point in the history
  15. fix unit tests

    StanislavBreadless committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    041a67d View commit details
    Browse the repository at this point in the history
  16. Merge pull request matter-labs#393 from matter-labs/deniallugo-use-zk…

    …evm-v140
    
    feat(vm): use zkevm v140
    Deniallugo authored Nov 2, 2023
    Configuration menu
    Copy the full SHA
    92d8235 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    d5c0299 View commit details
    Browse the repository at this point in the history
  18. validium poc

    igamigo committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    e1f5934 View commit details
    Browse the repository at this point in the history
  19. validium poc

    igamigo committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    e91d542 View commit details
    Browse the repository at this point in the history
  20. fixing overwritten file

    igamigo committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    f4029c7 View commit details
    Browse the repository at this point in the history
  21. merge fix

    igamigo committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    79e5380 View commit details
    Browse the repository at this point in the history
  22. remove file

    igamigo committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    6331bfe View commit details
    Browse the repository at this point in the history
  23. add md

    igamigo committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    0d4e6c1 View commit details
    Browse the repository at this point in the history
  24. correctly saved md

    igamigo committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    2062cbb View commit details
    Browse the repository at this point in the history
  25. correctly saved md

    igamigo committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    ce88d89 View commit details
    Browse the repository at this point in the history
  26. Update validium.md

    igamigo authored Nov 2, 2023
    Configuration menu
    Copy the full SHA
    3e01bf0 View commit details
    Browse the repository at this point in the history
  27. Update validium.md

    igamigo authored Nov 2, 2023
    Configuration menu
    Copy the full SHA
    d8c89bf View commit details
    Browse the repository at this point in the history
  28. Update validium.md

    igamigo authored Nov 2, 2023
    Configuration menu
    Copy the full SHA
    c5a302c View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    f3532ad View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2023

  1. fix lints

    StanislavBreadless committed Nov 3, 2023
    Configuration menu
    Copy the full SHA
    f848c44 View commit details
    Browse the repository at this point in the history
  2. Update compiler.ts

    benceharomi authored Nov 3, 2023
    Configuration menu
    Copy the full SHA
    9fb881d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0cff45d View commit details
    Browse the repository at this point in the history
  4. fixed eslint errors

    benceharomi committed Nov 3, 2023
    Configuration menu
    Copy the full SHA
    aa54e7a View commit details
    Browse the repository at this point in the history
  5. Merge pull request matter-labs#376 from matter-labs/sb-sync-with-rele…

    …ase-contracts
    
    chore: Use latest release contracts
    StanislavBreadless authored Nov 3, 2023
    Configuration menu
    Copy the full SHA
    517e707 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    f032c89 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    3337e5e View commit details
    Browse the repository at this point in the history
  8. Add new bootloaders

    ly0va committed Nov 3, 2023
    Configuration menu
    Copy the full SHA
    0cd8883 View commit details
    Browse the repository at this point in the history
  9. Fix unfortunate wildcard match

    ly0va committed Nov 3, 2023
    Configuration menu
    Copy the full SHA
    9d11bfd View commit details
    Browse the repository at this point in the history
  10. Restore tests

    ly0va committed Nov 3, 2023
    Configuration menu
    Copy the full SHA
    8603a1b View commit details
    Browse the repository at this point in the history
  11. cherry-pick: Make calculation for pubdata a bit more percise (matter-…

    …labs#392)
    
    Calculate pubdata published only once for tx
    
    For boojum pubdata calculation is getting more complicated in terms of
    tx size and for keeping everything precise we can calculate pubdata only
    once
    
    <!-- Check your PR fulfills the following items. -->
    <!-- For draft PRs check the boxes as you complete them. -->
    
    - [x] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [x] Tests for the changes have been added / updated.
    - [x] Documentation comments have been added / updated.
    - [x] Code has been formatted via `zk fmt` and `zk lint`.
    
    ---------
    
    Signed-off-by: Danil <[email protected]>
    Deniallugo authored and ly0va committed Nov 3, 2023
    Configuration menu
    Copy the full SHA
    5001075 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    063874f View commit details
    Browse the repository at this point in the history
  13. Fix test

    ly0va committed Nov 3, 2023
    Configuration menu
    Copy the full SHA
    0dd3741 View commit details
    Browse the repository at this point in the history
  14. Merge pull request matter-labs#406 from matter-labs/sb-sync-main-booj…

    …um-integration
    
    chore: Merge main with boojum integration
    StanislavBreadless authored Nov 3, 2023
    Configuration menu
    Copy the full SHA
    2288bea View commit details
    Browse the repository at this point in the history
  15. Update old refund tracer

    ly0va committed Nov 3, 2023
    Configuration menu
    Copy the full SHA
    64eec23 View commit details
    Browse the repository at this point in the history
  16. Fix lints

    ly0va committed Nov 3, 2023
    Configuration menu
    Copy the full SHA
    e364a4f View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    345b4e6 View commit details
    Browse the repository at this point in the history
  18. Merge pull request matter-labs#391 from matter-labs/more-vm-for-the-m…

    …ultivm-god
    
    feat(vm): Create a separate VM version for boojum
    ly0va authored Nov 3, 2023
    Configuration menu
    Copy the full SHA
    ee82e3e View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    b3ff655 View commit details
    Browse the repository at this point in the history
  20. Merge pull request matter-labs#407 from matter-labs/sb-update-contracts

    chore: Update boojum contracts
    StanislavBreadless authored Nov 3, 2023
    Configuration menu
    Copy the full SHA
    cd68718 View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2023

  1. Configuration menu
    Copy the full SHA
    9bf4468 View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2023

  1. Merge pull request matter-labs#411 from matter-labs/sb-use-contracts-…

    …from-main
    
    chore: Use contracts from main
    StanislavBreadless authored Nov 6, 2023
    Configuration menu
    Copy the full SHA
    b4eaf7d View commit details
    Browse the repository at this point in the history
  2. fix vm nits

    StanislavBreadless committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    7360070 View commit details
    Browse the repository at this point in the history
  3. fix PR comments 2

    StanislavBreadless committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    155dea7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3ca96fc View commit details
    Browse the repository at this point in the history
  5. fix errors

    StanislavBreadless committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    c16a222 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4a77b9c View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    8e06c95 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    78342c2 View commit details
    Browse the repository at this point in the history
  9. fix lint

    StanislavBreadless committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    f01187c View commit details
    Browse the repository at this point in the history
  10. panic formatting

    StanislavBreadless committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    f14e7b5 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    d0ebfea View commit details
    Browse the repository at this point in the history
  12. Some fixes

    perekopskiy committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    e7879b0 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    a5b5135 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    af87590 View commit details
    Browse the repository at this point in the history
  15. link todo task

    StanislavBreadless committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    911596e View commit details
    Browse the repository at this point in the history
  16. fix

    perekopskiy committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    a28ab30 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    75f427d View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    e728767 View commit details
    Browse the repository at this point in the history
  19. Merge pull request matter-labs#415 from matter-labs/sb-fixes-for-pr

    chore: Fixes to the boojum integration PR
    StanislavBreadless authored Nov 6, 2023
    Configuration menu
    Copy the full SHA
    ac9c6e2 View commit details
    Browse the repository at this point in the history
  20. Rename

    perekopskiy committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    df92671 View commit details
    Browse the repository at this point in the history
  21. Merge pull request matter-labs#416 from matter-labs/perekopskiy-fix-b…

    …oojum-diff-a-bit
    
    fix: some fixes for boojum
    perekopskiy authored Nov 6, 2023
    Configuration menu
    Copy the full SHA
    c0dba4a View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    3739b02 View commit details
    Browse the repository at this point in the history
  23. todo notice

    StanislavBreadless committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    e3f60aa View commit details
    Browse the repository at this point in the history
  24. Merge pull request matter-labs#420 from matter-labs/sb-use-main-contr…

    …acts
    
    Use contracts from main
    StanislavBreadless authored Nov 6, 2023
    Configuration menu
    Copy the full SHA
    e596008 View commit details
    Browse the repository at this point in the history
  25. Merge pull request matter-labs#421 from matter-labs/main

    chore: Sync boojum integration with main
    StanislavBreadless authored Nov 6, 2023
    Configuration menu
    Copy the full SHA
    68be91d View commit details
    Browse the repository at this point in the history
  26. fix mps comments

    StanislavBreadless committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    39fb338 View commit details
    Browse the repository at this point in the history
  27. resolve linting

    StanislavBreadless committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    76eb720 View commit details
    Browse the repository at this point in the history
  28. Merge pull request matter-labs#422 from matter-labs/sb-fix-mp-coments

    Fix comments in boojum-integration
    StanislavBreadless authored Nov 6, 2023
    Configuration menu
    Copy the full SHA
    e61d9e5 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2023

  1. Configuration menu
    Copy the full SHA
    0b9ef2a View commit details
    Browse the repository at this point in the history
  2. fix

    igamigo committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    c716d5d View commit details
    Browse the repository at this point in the history
  3. readme

    igamigo committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    8b56670 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e4b1c22 View commit details
    Browse the repository at this point in the history
  5. zk fmt

    ElFantasma committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    0c22dcc View commit details
    Browse the repository at this point in the history
  6. readme and contracts

    igamigo committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    37a2004 View commit details
    Browse the repository at this point in the history
  7. validium contracts

    igamigo committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    886c3c5 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2023

  1. prepare

    igamigo committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    fead153 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    23e06b5 View commit details
    Browse the repository at this point in the history
  3. contracts

    igamigo committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    f002deb View commit details
    Browse the repository at this point in the history
  4. update submodule

    igamigo committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    98f46a5 View commit details
    Browse the repository at this point in the history
  5. contracts

    igamigo committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    be9f295 View commit details
    Browse the repository at this point in the history
  6. rollback submodule

    igamigo committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    5cd30c3 View commit details
    Browse the repository at this point in the history
  7. rollback submodule

    igamigo committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    8be4722 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    30bd04d View commit details
    Browse the repository at this point in the history
  9. boojum code path

    igamigo committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    6ec4488 View commit details
    Browse the repository at this point in the history
  10. fmt and readme improvements

    igamigo committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    822852b View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    f8fed28 View commit details
    Browse the repository at this point in the history
  12. Update validium.md

    igamigo authored Nov 8, 2023
    Configuration menu
    Copy the full SHA
    5e03baf View commit details
    Browse the repository at this point in the history
  13. Merge pull request #6 from lambdaclass/validium-setup

    Validium setup
    igamigo authored Nov 8, 2023
    Configuration menu
    Copy the full SHA
    017cc81 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2023

  1. fix require() failures

    igamigo committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    84a913e View commit details
    Browse the repository at this point in the history
  2. remove prints

    igamigo committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    c5d3da3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e7eb01f View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2023

  1. Update contracts submodule

    jrchatruc committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    9c24ee7 View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2023

  1. Configuration menu
    Copy the full SHA
    c591844 View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2023

  1. Fix compilation

    jrchatruc committed Nov 21, 2023
    Configuration menu
    Copy the full SHA
    b2b512f View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2023

  1. Configuration menu
    Copy the full SHA
    05a02c6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f103889 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9d8a57d View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2023

  1. Revert "Fix path to volume (relative path is not accepted in docker r…

    …un -v)"
    
    This was an issue with Docker version, it should work with 24.0.0.
    
    This reverts commit 9d8a57d.
    ilitteri committed Dec 15, 2023
    Configuration menu
    Copy the full SHA
    164cc25 View commit details
    Browse the repository at this point in the history