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.4.0-beta.7 #3598

Merged
merged 36 commits into from
Feb 15, 2024
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
b4d418d
Remove some trailing whitespace
asn-d6 Jan 15, 2024
a4331e7
Public methods must accept raw bytes
asn-d6 Jan 15, 2024
96e41bc
Optimization: reduce `len()` call
hwwhww Jan 16, 2024
87f2ad2
Public methods: int -> uint64
asn-d6 Jan 16, 2024
6679860
Minor fixes based on review
asn-d6 Jan 17, 2024
2000a4f
Improve test_verify_cell_proof_batch()
asn-d6 Jan 17, 2024
f1dff5f
Merge pull request #3581 from ethereum/reduce-len-call
hwwhww Jan 20, 2024
0db4580
add py.typed file mypy
gurukamath Jan 23, 2024
ae3ef6f
Merge pull request #3579 from asn-d6/peerdas_public_method_bytes
asn-d6 Jan 26, 2024
8b3ac46
Add helper method: construct_vanishing_polynomial()
asn-d6 Jan 31, 2024
be5e5c5
Add helpers: recover_shifted_data() and recover_original_data()
asn-d6 Jan 23, 2024
4d01d50
Initial docs added to recover_shifted_data() and recover_original_data()
asn-d6 Jan 31, 2024
212c1fe
Small improvements on construct_vanishing_polynomial()
asn-d6 Jan 31, 2024
d60580b
Apply suggestions from code review
hwwhww Feb 1, 2024
e3b83d5
Add defensive asserts in recover_polynomial()
asn-d6 Feb 5, 2024
1e41a6b
New FIELD_ELEMENTS_PER_EXT_BLOB: number of cells in an extended blob
asn-d6 Feb 5, 2024
4b1106b
Update specs/_features/eip7594/polynomial-commitments-sampling.md
asn-d6 Feb 5, 2024
f1dd735
Update specs/_features/eip7594/polynomial-commitments-sampling.md
asn-d6 Feb 6, 2024
385b0f3
Update specs/_features/eip7594/polynomial-commitments-sampling.md
asn-d6 Feb 6, 2024
3b700d3
Merge pull request #3588 from gurukamath/mypy-types
hwwhww Feb 6, 2024
fe344b7
correct the location of py.typed
gurukamath Feb 6, 2024
fe8db03
Merge pull request #3594 from gurukamath/mypy-types
hwwhww Feb 7, 2024
4e2578d
Schedule Deneb for Mainnet
etan-status Feb 8, 2024
4878f1d
Set official mainnet `DENEB_FORK_EPOCH`
hwwhww Feb 8, 2024
3b45d92
Merge commit '4878f1da30393582d67e2736a2c058430d05784f' into df-schedule
etan-status Feb 8, 2024
07bba7a
Bump version to `1.4.0-beta.7`
hwwhww Feb 13, 2024
e043a12
Merge pull request #3597 from etan-status/df-schedule
hwwhww Feb 13, 2024
daf6a0a
Merge pull request #3599 from ethereum/bump-version
hwwhww Feb 13, 2024
7076fb2
Handle `integer_squareroot` bound case
hwwhww Feb 14, 2024
90afb23
Update specs/_features/eip7594/polynomial-commitments-sampling.md
hwwhww Feb 14, 2024
2faa44b
Merge pull request #3591 from asn-d6/peerdas_refactor_recovery_polyno…
hwwhww Feb 14, 2024
42bc600
Add overflow case
hwwhww Feb 14, 2024
f020649
add higher_churn_limit_to_lower tests
hwwhww Feb 14, 2024
e3d91d8
Rename `MAX_UINT_64` -> `UINT64_MAX`
hwwhww Feb 15, 2024
f82a3af
Merge pull request #3600 from ethereum/integer_squareroot
hwwhww Feb 15, 2024
b696174
Merge pull request #3602 from ethereum/deneb-fork-transition
hwwhww Feb 15, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update specs/_features/eip7594/polynomial-commitments-sampling.md
Co-authored-by: Hsiao-Wei Wang <hsiaowei.eth@gmail.com>
  • Loading branch information
asn-d6 and hwwhww authored Feb 5, 2024
commit 4b1106b39c1ffe9604ab2b961a40409e93bad2ef
9 changes: 6 additions & 3 deletions specs/_features/eip7594/polynomial-commitments-sampling.md
Original file line number Diff line number Diff line change
Expand Up @@ -616,9 +616,12 @@ def recover_polynomial(cell_ids: Sequence[CellID],
eval_shifted_extended_evaluation, eval_shifted_zero_poly, shift_inv = \
recover_shifted_data(cell_ids, cells, zero_poly_eval, zero_poly_coeff, roots_of_unity_extended)

reconstructed_data = \
recover_original_data(eval_shifted_extended_evaluation, eval_shifted_zero_poly, shift_inv,
roots_of_unity_extended)
reconstructed_data = recover_original_data(
eval_shifted_extended_evaluation,
eval_shifted_zero_poly,
shift_inv,
roots_of_unity_extended,
)

for cell_id, cell in zip(cell_ids, cells):
start = cell_id * FIELD_ELEMENTS_PER_CELL
Expand Down
Loading