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.3.0-rc.3 #3263

Merged
merged 82 commits into from
Feb 21, 2023
Merged

release v1.3.0-rc.3 #3263

merged 82 commits into from
Feb 21, 2023

Conversation

djrtwo
Copy link
Contributor

@djrtwo djrtwo commented Feb 20, 2023

  • testgen
  • bump VERSION.txt

rolfyone and others added 30 commits January 23, 2023 15:08
Add on_attester_slashing() to handlers list
This PR reintroduces and further decouples blocks and blobs in EIP-4844,
so as to improve network and processing performance.

Block and blob processing, for the purpose of gossip validation, are
independent: they can both be propagated and gossip-validated
in parallel - the decoupled design allows 4 important optimizations
(or, if you are so inclined, removes 4 unnecessary pessimizations):

* Blocks and blobs travel on independent meshes allowing for better
parallelization and utilization of high-bandwidth peers
* Re-broadcasting after validation can start earlier allowing more
efficient use of upload bandwidth - blocks for example can be
rebroadcast to peers while blobs are still being downloaded
* bandwidth-reduction techniques such as per-peer deduplication are more
efficient because of the smaller message size
* gossip verification happens independently for blocks and blobs,
allowing better sharing / use of CPU and I/O resources in clients

With growing block sizes and additional blob data to stream, the network
streaming time becomes a dominant factor in propagation times - on a
100mbit line, streaming 1mb to 8 peers takes ~1s - this process is
repeated for each hop in both incoming and outgoing directions.

This design in particular sends each blob on a separate subnet, thus
maximising the potential for parallelisation and providing a natural
path for growing the number of blobs per block should the network be
judged to be able to handle it.

Changes compared to the current design include:

* `BlobsSidecar` is split into individual `BlobSidecar` containers -
each container is signed individually by the proposer
  * the signature is used during gossip validation but later dropped.
* KZG commitment verification is moved out of the gossip pipeline and
instead done before fork choice addition, when both block and sidecars
have arrived
  * clients may verify individual blob commitments earlier
* more generally and similar to block verification, gossip propagation
is performed solely based on trivial consistency checks and proposer
signature verification
* by-root blob requests are done per-blob, so as to retain the ability
to fill in blobs one-by-one assuming clients generally receive blobs
from gossip
* by-range blob requests are done per-block, so as to simplify
historical sync
* range and root requests are limited to `128` entries for both blocks
and blobs - practically, the current higher limit of `1024` for blocks
does not get used and keeping the limits consistent simplifies
implementation - with the merge, block sizes have grown significantly
and clients generally fetch smaller chunks.
Updated eip4844 references to deneb
* separate constant for blob requests
* pedantry
* expand sidecar gossip conditions
* editing
* add spec text for `BlobSidecar` signatures
Simplify commitee weight computation
arnetheduck and others added 18 commits February 16, 2023 09:12
* fight the test suite
* clarify who orphans the block
* must supply all blobs of a block in range request
Move experimental features to `specs/_features` folder
…in_domain

Fix `compute_quotient_eval_within_domain` overflow
* also, use root/index for uniqueness
Co-authored-by: Hsiao-Wei Wang <hsiaowei.eth@gmail.com>
Co-authored-by: g11tech <develop@g11tech.io>
EIP4844: Fix typo in polynomial-commitments.md
EIP4844: Remove repeated computation in polynomial-commitments.md
@hwwhww hwwhww changed the title [do not merge] release release v1.3.0-rc.3 Feb 21, 2023
@hwwhww hwwhww merged commit 84fcfa8 into master Feb 21, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet