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

Release v1.5.0-alpha.4 #3853

Merged
merged 163 commits into from
Aug 9, 2024
Merged

Release v1.5.0-alpha.4 #3853

merged 163 commits into from
Aug 9, 2024

Commits on Feb 8, 2024

  1. Rename get_safe_execution_payload_hash -> *_block_hash

    The name `get_safe_execution_payload_hash` is misleading, as it returns
    the execution block hash. There is no concept of a payload hash. Rename
    the function, and also update some documentation for clarity.
    etan-status committed Feb 8, 2024
    Configuration menu
    Copy the full SHA
    7f699bf View commit details
    Browse the repository at this point in the history

Commits on May 13, 2024

  1. Configuration menu
    Copy the full SHA
    94535a6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    01a2c7b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8b26470 View commit details
    Browse the repository at this point in the history

Commits on May 28, 2024

  1. improved sampling description

    - describe sample selection
    - describe sample queries
    
    Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
    cskiraly committed May 28, 2024
    Configuration menu
    Copy the full SHA
    b848ca6 View commit details
    Browse the repository at this point in the history
  2. clarify the use of LossyDAS

    Clarify that what matters is the false positive threshold, allowing
    different sampling strategies as protocol compliant behavior.
    
    Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
    cskiraly committed May 28, 2024
    Configuration menu
    Copy the full SHA
    8d33278 View commit details
    Browse the repository at this point in the history
  3. fix toc

    hwwhww committed May 28, 2024
    Configuration menu
    Copy the full SHA
    7b4d23c View commit details
    Browse the repository at this point in the history

Commits on May 29, 2024

  1. improve candidate peer text

    Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
    cskiraly committed May 29, 2024
    Configuration menu
    Copy the full SHA
    4e1d566 View commit details
    Browse the repository at this point in the history
  2. fix the (source-view) formatting of the table

    Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
    cskiraly committed May 29, 2024
    Configuration menu
    Copy the full SHA
    a04cd87 View commit details
    Browse the repository at this point in the history
  3. remove LossyDAS naming from spec

    While the technique was introduced as LossyDAS, we don't need the name
    in the specification itself.
    
    Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
    cskiraly committed May 29, 2024
    Configuration menu
    Copy the full SHA
    5f3beca View commit details
    Browse the repository at this point in the history
  4. add get_extended_sample_count helper function

    add LossyDAS sample count generation helper function
    
    Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
    cskiraly committed May 29, 2024
    Configuration menu
    Copy the full SHA
    436e58e View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2024

  1. self-contained get_extended_sample_count

    Importing scipy is not preferred. This is a self-contained
    version. Eventually an import of math and use of math.comb
    makes it simpler.
    Solving other formatting issues as well.
    
    Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
    cskiraly committed Jun 4, 2024
    Configuration menu
    Copy the full SHA
    4c57399 View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2024

  1. get_extended_sample_count: use SAMPLES_PER_SLOT constant

    Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
    cskiraly committed Jun 10, 2024
    Configuration menu
    Copy the full SHA
    2ab4f1e View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2024

  1. clarifying reconstruction and cross-seeding

    - when should a node reconstruct
    - how to cross-seed for subscribed and unsubscribed topics
    
    Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
    cskiraly committed Jun 11, 2024
    Configuration menu
    Copy the full SHA
    6711acf View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2024

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

Commits on Jun 18, 2024

  1. Merge pull request #3807 from etan-status/bd-remerkleable

    Bump remerkleable to `v0.1.28`
    hwwhww authored Jun 18, 2024
    Configuration menu
    Copy the full SHA
    6e2b370 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fb02045 View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2024

  1. Merge pull request #3763 from ethereum/electra-merkle-proof-tests

    Add Electra merkle proof test vectors
    hwwhww authored Jun 19, 2024
    Configuration menu
    Copy the full SHA
    29d3a24 View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2024

  1. Fix typing issue when 10e10 is interpreted as float

    On macOS Python, passing `10e10` to `rng.randint` results in an error
    when generating certain tests. Forcing `int` avoids the problem.
    etan-status committed Jun 21, 2024
    Configuration menu
    Copy the full SHA
    2c384da View commit details
    Browse the repository at this point in the history
  2. Update light client specifications for Electra

    Electra introduces two changes that affect light client data handling:
    
    1. The `ExecutionPayloadHeader` is extended with new fields.
       This is handled similarly as before with the Deneb fork.
    
    2. The `BeaconState` generalized indices change due to lack of EIP-6493.
       This is handled by making the generalized index be fork dependent via
       a helper function that computes it dynamically. Furthermore, the case
       where pre-Electra light client data is consumed by an Electra based
       `LightClientStore` requires normalizing the shorter proof of the
       pre-Electra data to fit into the Electra data structure by prepending
       a zero hash.
    etan-status committed Jun 21, 2024
    Configuration menu
    Copy the full SHA
    2035a9f View commit details
    Browse the repository at this point in the history
  3. Lint

    etan-status committed Jun 21, 2024
    Configuration menu
    Copy the full SHA
    ea04148 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    67a053d View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    835576a View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2024

  1. Update test_incorrect_not_enough_consolidation_churn_available and …

    …add assertions to test cases
    hwwhww committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    f30a3a3 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #3810 from etan-status/bf-payloadinit

    Fix typing issue when `10e10` is interpreted as float
    hwwhww authored Jun 24, 2024
    Configuration menu
    Copy the full SHA
    fed320c View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2024

  1. Configuration menu
    Copy the full SHA
    beedf85 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'dev' into pr3782

    hwwhww committed Jun 25, 2024
    Configuration menu
    Copy the full SHA
    1f87bbe View commit details
    Browse the repository at this point in the history
  3. moving part of text in custody section

    Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
    cskiraly committed Jun 25, 2024
    Configuration menu
    Copy the full SHA
    4539265 View commit details
    Browse the repository at this point in the history
  4. Add test_get_extended_sample_count__table_in_spec to verify the tab…

    …le content in the spec
    hwwhww committed Jun 25, 2024
    Configuration menu
    Copy the full SHA
    ee97738 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ded072a View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2024

  1. lint

    dapplion committed Jun 26, 2024
    Configuration menu
    Copy the full SHA
    25b810f View commit details
    Browse the repository at this point in the history
  2. Update doctoc

    dapplion committed Jun 26, 2024
    Configuration menu
    Copy the full SHA
    9280cc7 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #3814 from ethereum/update-consolidation-tests

    Update `test_incorrect_not_enough_consolidation_churn_available` and add assertions to test cases
    hwwhww authored Jun 26, 2024
    Configuration menu
    Copy the full SHA
    29f3948 View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2024

  1. fix get_extended_sample_count proc signature

    Co-authored-by: Pop Chunhapanya <haxx.pop@gmail.com>
    cskiraly and ppopth authored Jun 27, 2024
    Configuration menu
    Copy the full SHA
    17dfb9a View commit details
    Browse the repository at this point in the history
  2. clarify use of get_extended_sample_count

    Here we assume uniform random selection without replacement.
    If other methods are used, the target false positive threshold
    is the main rule to follow.
    
    Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
    cskiraly committed Jun 27, 2024
    Configuration menu
    Copy the full SHA
    78b583d View commit details
    Browse the repository at this point in the history
  3. adding get_extended_sample_count docsstring

    Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
    cskiraly committed Jun 27, 2024
    Configuration menu
    Copy the full SHA
    1ad381d View commit details
    Browse the repository at this point in the history
  4. Merge pull request #3794 from cskiraly/peer-das-reconstruction

    EIP-7594: clarifying reconstruction and cross-seeding
    hwwhww authored Jun 27, 2024
    Configuration menu
    Copy the full SHA
    258c2c9 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #3782 from cskiraly/peer-das-sampling

    PeerDAS sampling clarifications
    hwwhww authored Jun 27, 2024
    Configuration menu
    Copy the full SHA
    0a49572 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a3a6c91 View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2024

  1. Configuration menu
    Copy the full SHA
    f25aac6 View commit details
    Browse the repository at this point in the history
  2. EIP7594: Do universal verification in verify_cell_kzg_proof_batch() (#…

    …3812)
    
    * restructure verify_cell_kzg_proof_batch a bit
    
    * first draft of universal verification equation
    
    * add one more empty line to make linter happy
    
    * make linter happy
    
    * more testcases for verify_cell_kzg_proof_batch
    
    * verify_cell_kzg_proof_batch: derive coefficient via hash
    
    * rename verify_cell_kzg_proof_batch_challenge -> compute_verify_cell_kzg_proof_batch_challenge
    
    * verify_cell_kzg_proof_batch: editorial + some refactoring
    
    * Improve documentation and variable naming.
    
    * remove k_i from code and doc
    
    ---------
    
    Co-authored-by: Justin Traglia <95511699+jtraglia@users.noreply.github.com>
    b-wagn and jtraglia authored Jun 28, 2024
    Configuration menu
    Copy the full SHA
    83da380 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0e03d8c View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2024

  1. Merge pull request #3764 from ethereum/electra-fork-tests

    Add more Electra fork tests
    ralexstokes authored Jul 1, 2024
    Configuration menu
    Copy the full SHA
    090d349 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #3822 from jtraglia/section-header-nits

    Fix beacon-chain.md section header issues
    ralexstokes authored Jul 1, 2024
    Configuration menu
    Copy the full SHA
    0532952 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    77c371b View commit details
    Browse the repository at this point in the history
  4. Fix link to Deneb spec

    jtraglia committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    7b72cbd View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2024

  1. Fix EL block hash computation for Deneb

    The parent beacon block hash was incorrectly set to zero in #3778.
    Passing the state to the computation function allows correct hash
    computation.
    etan-status committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    b4f44ca View commit details
    Browse the repository at this point in the history
  2. Merge pull request #3826 from jtraglia/fix-deneb-link

    Fix link to Deneb spec
    hwwhww authored Jul 2, 2024
    Configuration menu
    Copy the full SHA
    81f3ea8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a63bad0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c078a97 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1189d52 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    0daa2ac View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2024

  1. Merge pull request #3829 from etan-status/df-elhash

    Fix EL block hash computation for Deneb
    hwwhww authored Jul 5, 2024
    Configuration menu
    Copy the full SHA
    9be0529 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    228752c View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2024

  1. Configuration menu
    Copy the full SHA
    b9e7b03 View commit details
    Browse the repository at this point in the history
  2. beacon chain changes

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    104fbc7 View commit details
    Browse the repository at this point in the history
  3. Forkchoice changes

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    673c75c View commit details
    Browse the repository at this point in the history
  4. Honest validator guide

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    971c57c View commit details
    Browse the repository at this point in the history
  5. Honest Builder Guide

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    614e14e View commit details
    Browse the repository at this point in the history
  6. P2P changes

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    cd7dbef View commit details
    Browse the repository at this point in the history
  7. Fork logic

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    6d6ef7b View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    0d082fd View commit details
    Browse the repository at this point in the history
  9. Fix epbs consensus spec to be executable (#10)

    Fix epbs consensus spec to be executable
    terencechain authored and potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    6e02cb4 View commit details
    Browse the repository at this point in the history
  10. modify INTEVALS_PER_SLOT

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    a01f124 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    b7b1de9 View commit details
    Browse the repository at this point in the history
  12. small typo fixes (#12)

    gorondan authored and potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    51e47ff View commit details
    Browse the repository at this point in the history
  13. doctoc

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    25a0fdc View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    ed7f17e View commit details
    Browse the repository at this point in the history
  15. codespell

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    95dd081 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    752a804 View commit details
    Browse the repository at this point in the history
  17. add fake value to KZG indices

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    4997588 View commit details
    Browse the repository at this point in the history
  18. Fix python execution 1

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    ad8d71d View commit details
    Browse the repository at this point in the history
  19. doctoc

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    2a43ce5 View commit details
    Browse the repository at this point in the history
  20. Fix python execution 2

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    4500eab View commit details
    Browse the repository at this point in the history
  21. Fix python execution 3

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    d7a199f View commit details
    Browse the repository at this point in the history
  22. Fix epbs pre fork (#13)

    terencechain authored and potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    5013e57 View commit details
    Browse the repository at this point in the history
  23. add type annotation

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    181ce5e View commit details
    Browse the repository at this point in the history
  24. use definitive EIP number

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    a11ffb5 View commit details
    Browse the repository at this point in the history
  25. Add deprecation helpers in spec builder

    hwwhww authored and potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    b230a42 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    b2d6e68 View commit details
    Browse the repository at this point in the history
  27. Add eip7732 to .gitignore

    hwwhww authored and potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    1127640 View commit details
    Browse the repository at this point in the history
  28. add fork fixes

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    603cf53 View commit details
    Browse the repository at this point in the history
  29. Fix python execution 4

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    e9a8dda View commit details
    Browse the repository at this point in the history
  30. Fix python execution 5

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    e3cd216 View commit details
    Browse the repository at this point in the history
  31. Fix python execution 6

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    dba3cda View commit details
    Browse the repository at this point in the history
  32. Fix python execution 7

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    53aaf26 View commit details
    Browse the repository at this point in the history
  33. Configuration menu
    Copy the full SHA
    3d48e72 View commit details
    Browse the repository at this point in the history
  34. add CI workflow

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    a5d2161 View commit details
    Browse the repository at this point in the history
  35. Fix p2p to use eip7732 (#14)

    terencechain authored and potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    614284c View commit details
    Browse the repository at this point in the history
  36. Disable eip7732 tests like whisk-style

    hwwhww authored and potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    eb3382f View commit details
    Browse the repository at this point in the history
  37. Minor refactoring

    hwwhww authored and potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    2af6e7d View commit details
    Browse the repository at this point in the history
  38. minor fixes

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    bb7ce4f View commit details
    Browse the repository at this point in the history
  39. fix typo last_withdrawals_root

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    e93f923 View commit details
    Browse the repository at this point in the history
  40. Configuration menu
    Copy the full SHA
    9181e29 View commit details
    Browse the repository at this point in the history
  41. Configuration menu
    Copy the full SHA
    17b7905 View commit details
    Browse the repository at this point in the history
  42. linter

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    19c6f84 View commit details
    Browse the repository at this point in the history
  43. linter 2

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    b556420 View commit details
    Browse the repository at this point in the history
  44. Rename changed preset

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    0e94fc9 View commit details
    Browse the repository at this point in the history
  45. Fix linter error

    hwwhww authored and potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    93aa7d6 View commit details
    Browse the repository at this point in the history
  46. fix Merkle proof generator

    potuz committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    9274a66 View commit details
    Browse the repository at this point in the history
  47. Configuration menu
    Copy the full SHA
    f97f0b4 View commit details
    Browse the repository at this point in the history
  48. Merge pull request #3835 from jtraglia/early-exit-zero-cells

    In batch cell verification, check if there are zero cells
    asn-d6 authored Jul 8, 2024
    Configuration menu
    Copy the full SHA
    1642610 View commit details
    Browse the repository at this point in the history
  49. Configuration menu
    Copy the full SHA
    1dbb68d View commit details
    Browse the repository at this point in the history
  50. Fix linter issues

    jtraglia committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    8da90b2 View commit details
    Browse the repository at this point in the history
  51. Update beacon-chain.md

    Typo fix in deneb comment
    ralexstokes authored Jul 8, 2024
    Configuration menu
    Copy the full SHA
    b7149ef View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2024

  1. Merge pull request #3837 from ethereum/ralexstokes-patch-2

    fix typo in deneb comment
    hwwhww authored Jul 9, 2024
    Configuration menu
    Copy the full SHA
    5cce790 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c402414 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    096e564 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    63433ec View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a86eeb3 View commit details
    Browse the repository at this point in the history
  6. Fix lint

    etan-status committed Jul 9, 2024
    Configuration menu
    Copy the full SHA
    82fe862 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    088f771 View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2024

  1. Configuration menu
    Copy the full SHA
    9a9fa96 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #3830 from jtraglia/remove-verify-cell-kzg-proof

    Remove `verify_cell_kzg_proof` (non-batch)
    asn-d6 authored Jul 10, 2024
    Configuration menu
    Copy the full SHA
    dc5f74d View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2024

  1. Move to peerdas eip

    dapplion committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    db71770 View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2024

  1. Fix link

    etan-status committed Jul 15, 2024
    Configuration menu
    Copy the full SHA
    e2c06c3 View commit details
    Browse the repository at this point in the history
  2. Remove unnecessary cast

    etan-status committed Jul 15, 2024
    Configuration menu
    Copy the full SHA
    9db6d3f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3529b46 View commit details
    Browse the repository at this point in the history
  4. Rename column_index to cell_index in KZG spec (#3841)

    * Rename column_index to cell_index in KZG spec
    
    * Fix table of contents
    
    * Replace list(set()) with set()
    
    * Change coset_evals to cell_indices in some places
    
    * Remove punctuation in table description
    
    * Remove "row" from comments & improve docstring
    
    * Replace unique with deduplicated
    jtraglia authored Jul 15, 2024
    Configuration menu
    Copy the full SHA
    252b852 View commit details
    Browse the repository at this point in the history
  5. doctoc

    potuz committed Jul 15, 2024
    Configuration menu
    Copy the full SHA
    4b43b96 View commit details
    Browse the repository at this point in the history
  6. Remove unnecessary comment

    jtraglia authored Jul 15, 2024
    Configuration menu
    Copy the full SHA
    5961e26 View commit details
    Browse the repository at this point in the history
  7. remove spurious config prefix

    potuz committed Jul 15, 2024
    Configuration menu
    Copy the full SHA
    5bb25c8 View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2024

  1. Merge pull request #3817 from dapplion/max-blobs-config

    Make MAX_BLOBS_PER_BLOCK a config parameter
    hwwhww authored Jul 16, 2024
    Configuration menu
    Copy the full SHA
    b4432fb View commit details
    Browse the repository at this point in the history
  2. Merge pull request #3836 from jtraglia/columns-cells-and-proofs

    Update get_data_column_sidecars to take cells/proofs
    asn-d6 authored Jul 16, 2024
    Configuration menu
    Copy the full SHA
    bb8f3ca View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6d146e2 View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2024

  1. Configuration menu
    Copy the full SHA
    460d46d View commit details
    Browse the repository at this point in the history
  2. Replace recover_data with recover_polynomialcoeff (#3820)

    * chore: remove recover_data
    
    * make it look closer to final code
    
    * Improve comments
    
    * Fix lint issue
    
    * Fix tests & clean things up a bit
    
    * Replace a couple uses of "monomial" with "coefficient"
    
    * Revert "Replace a couple uses of "monomial" with "coefficient""
    
    This reverts commit c9a1a75.
    
    * Only replace "monomial" with "coefficient"
    
    ---------
    
    Co-authored-by: Justin Traglia <95511699+jtraglia@users.noreply.github.com>
    Co-authored-by: Justin Traglia <jtraglia@pm.me>
    3 people authored Jul 17, 2024
    Configuration menu
    Copy the full SHA
    2331291 View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2024

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

Commits on Jul 19, 2024

  1. Merge pull request #3811 from etan-status/lc-electra

    Update light client specifications for Electra
    hwwhww authored Jul 19, 2024
    Configuration menu
    Copy the full SHA
    a42d670 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    80092b1 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2024

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

Commits on Jul 23, 2024

  1. Configuration menu
    Copy the full SHA
    b7461ac View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d0fad1f View commit details
    Browse the repository at this point in the history
  3. solve ties by block slot first

    potuz committed Jul 23, 2024
    Configuration menu
    Copy the full SHA
    0c9ca6d View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2024

  1. Revert "Remove block_timeliness from the store"

    The damned linter complains and there's no problem having it
    
    This reverts commit b7461ac.
    potuz committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    b082140 View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2024

  1. Merge pull request #3849 from 0xTylerHolmes/electra-p2p-topics

    move beacon_attestation_subnet from electra global topics
    hwwhww authored Jul 25, 2024
    Configuration menu
    Copy the full SHA
    2218c94 View commit details
    Browse the repository at this point in the history
  2. Fix indentation for kzg_7594 tests

    Somehow (probably because of a merge conflict) the last three
    verify_cell_kzg_proof_batch test cases were indented too far and as a result
    were part of the loop above, and as a result executed multiple times. This
    doesn't change the generated tests because it would try to do the same test
    with the same inputs.
    jtraglia committed Jul 25, 2024
    Configuration menu
    Copy the full SHA
    2d59c55 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #3855 from jtraglia/kzg-7594-tests-indentation

    Fix indentation for some kzg_7594 tests
    hwwhww authored Jul 25, 2024
    Configuration menu
    Copy the full SHA
    e9be4e2 View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2024

  1. Merge pull request #3846 from jtraglia/replace-ncores-with-auto

    For pytest, replace NUMBER_OF_CORES with auto
    hwwhww authored Jul 27, 2024
    Configuration menu
    Copy the full SHA
    e8fcebc View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2024

  1. improve comments in recovery

    b-wagn committed Jul 31, 2024
    Configuration menu
    Copy the full SHA
    85a42cd View commit details
    Browse the repository at this point in the history
  2. some punctuation

    b-wagn committed Jul 31, 2024
    Configuration menu
    Copy the full SHA
    225c486 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    31c23f8 View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2024

  1. Merge pull request #3858 from b-wagn/documentation-reconstruct

    EIP7594: Improve Documentation in Recovery Code
    asn-d6 authored Aug 1, 2024
    Configuration menu
    Copy the full SHA
    9c39645 View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2024

  1. Merge pull request #3848 from ethereum/jtraglia-eip7594-format-fix

    Update description for test format
    hwwhww authored Aug 2, 2024
    Configuration menu
    Copy the full SHA
    b394b27 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ef3c9dc View commit details
    Browse the repository at this point in the history
  3. Merge pull request #3595 from etan-status/bf-safehash

    Rename `get_safe_execution_payload_hash` -> `*_block_hash`
    mkalinin authored Aug 2, 2024
    Configuration menu
    Copy the full SHA
    10becc5 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #3863 from b-wagn/patch-3

    EIP7594: Remove dead link
    asn-d6 authored Aug 2, 2024
    Configuration menu
    Copy the full SHA
    92aeafe View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7ab2bbe View commit details
    Browse the repository at this point in the history
  6. Typo in validator.md

    potuz committed Aug 2, 2024
    Configuration menu
    Copy the full SHA
    74124f5 View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2024

  1. Merge pull request #3838 from kocubinski/dev

    Fix spec error in get_generalized_index function
    hwwhww authored Aug 3, 2024
    Configuration menu
    Copy the full SHA
    1a086f6 View commit details
    Browse the repository at this point in the history
  2. bump to 1.5.0-alpha.4

    hwwhww committed Aug 3, 2024
    Configuration menu
    Copy the full SHA
    b5cea48 View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2024

  1. Merge pull request #3865 from ethereum/bump-version

    bump to 1.5.0-alpha.4
    hwwhww authored Aug 6, 2024
    Configuration menu
    Copy the full SHA
    9515f3e View commit details
    Browse the repository at this point in the history
  2. Merge pull request #3821 from dapplion/csc

    Add MetadataV3 with custody_subnet_count
    hwwhww authored Aug 6, 2024
    Configuration menu
    Copy the full SHA
    572ca9e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fcca2b5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b665698 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #3828 from potuz/epbs_cl_repo

    EIP-7732: Enshrined Proposer-Builder Separation
    hwwhww authored Aug 6, 2024
    Configuration menu
    Copy the full SHA
    8f8ab03 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    7c10922 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2024

  1. Apply suggestions by @fradamt

    Co-authored-by: fradamt <104826920+fradamt@users.noreply.github.com>
    mkalinin and fradamt authored Aug 7, 2024
    Configuration menu
    Copy the full SHA
    5e06787 View commit details
    Browse the repository at this point in the history
  2. Fix lint

    mkalinin committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    024ee04 View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2024

  1. Configuration menu
    Copy the full SHA
    5409396 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #3869 from terencechain/p2p-payload-att1

    EIP-7732(p2p): clean up `payload_attestation_message` conditions
    hwwhww authored Aug 8, 2024
    Configuration menu
    Copy the full SHA
    674d924 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #3873 from jtraglia/nits-in-7594-p2p-interface

    Fix nits in eip7594 p2p-interface spec
    hwwhww authored Aug 8, 2024
    Configuration menu
    Copy the full SHA
    bd396a6 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #3868 from mkalinin/fix-consolidation

    Fix off-by-one in process_pending_consolidations
    hwwhww authored Aug 8, 2024
    Configuration menu
    Copy the full SHA
    f4e3908 View commit details
    Browse the repository at this point in the history