Conversation
buddh0
commented
Mar 13, 2024
Contributor
|
need add logic to add the blobfee as validator income instead of burning it |
NathanBSC
reviewed
Mar 13, 2024
NathanBSC
reviewed
Mar 13, 2024
zzzckck
reviewed
Mar 13, 2024
zzzckck
reviewed
Mar 13, 2024
zzzckck
reviewed
Mar 13, 2024
Contributor
Author
solved |
NathanBSC
reviewed
Mar 15, 2024
NathanBSC
reviewed
Mar 15, 2024
zzzckck
reviewed
Mar 18, 2024
buddh0
commented
Mar 19, 2024
buddh0
commented
Mar 19, 2024
pool: switch ON blobpool+no reannotx
* chainconfig: use cancun fork for BSC; feat: fill WithdrawalsHash when BSC enable cancun fork; * rawdb: support to CRUD blobs; freezer: support to freeze block blobs; * freezer: support to freeze block blobs; * blockchain: add blob cache & blob query helper; * blockchain: add blob cache & blob query helper; * freezer: refactor addition table logic, add uts; * blobexpiry: add more extra expiry time, and logs; * ci: fix UT fails; * fix: fix some PR review comments; * parlia: implement IsDataAvailable function; * blob: refactor blob transfer logic; * blob: support config blob extra reserve;
* blob: implement min&max gas price logic; blob: change some key parameters; * blockchian: support import side chain; * blobpool: reject the banned address; * blockchain: add chasing head for DA check; * params: update blob related config; * blockchain: opt data available checking performance; dataavailability: add more UTs; * blockchain: opt data available checking performance; dataavailability: add more UTs; * ci: fix failed UTs; * ci: fix failed UTs; * params: modify blob related params; * gasprice: support BEP-336 blob gas price calculate; * ci: fix some broken UTs;
* ci: temp enable blobtx branch ci run; * Switch ON blobpool & ensure Cancun hardfork can occur (#2223) pool: switch ON blobpool+no reannotx * feat: support blob storage & miscs; (#2229) * chainconfig: use cancun fork for BSC; feat: fill WithdrawalsHash when BSC enable cancun fork; * rawdb: support to CRUD blobs; freezer: support to freeze block blobs; * freezer: support to freeze block blobs; * blockchain: add blob cache & blob query helper; * blockchain: add blob cache & blob query helper; * freezer: refactor addition table logic, add uts; * blobexpiry: add more extra expiry time, and logs; * ci: fix UT fails; * fix: fix some PR review comments; * parlia: implement IsDataAvailable function; * blob: refactor blob transfer logic; * blob: support config blob extra reserve; * blockchian: support to import block with blob & blobGasFee; (#2260) * blob: implement min&max gas price logic; blob: change some key parameters; * blockchian: support import side chain; * blobpool: reject the banned address; * blockchain: add chasing head for DA check; * params: update blob related config; * blockchain: opt data available checking performance; dataavailability: add more UTs; * blockchain: opt data available checking performance; dataavailability: add more UTs; * ci: fix failed UTs; * ci: fix failed UTs; * params: modify blob related params; * gasprice: support BEP-336 blob gas price calculate; * ci: fix some broken UTs; * fix failed check for WithdrawalsHash (#2276) * eth: include sidecars in fitering of body * core: refactor sidecars name * eth: sidecars type refactor * core: remove extra from bad merge * eth: fix handlenewblock test after merge --------- Co-authored-by: GalaIO <GalaIO@users.noreply.github.com> Co-authored-by: buddho <galaxystroller@gmail.com>
* internal/api: implement eth_getBlobSidecars && eth_getBlobSidecarByTxHash * internal/api: implement eth_getBlobSidecars && eth_getBlobSidecarByTxHash * internal/api: fix comments * internal/api: fix comments * internal/api: fix comments * internal/api: fix comments
ci: fix some failed UTs; sync: add more UTs for blob syncing;
…obSidecarByTxHash (#2300)
* fix: fix some validation issues & ancient reset; * fix: fix some UTs fails; * fix: fix some UTs fails;
Contributor
|
mev module should be adapted |
* blobsidecar: add new sidecar struct with metadata; * blobfee: add UT to check blob fee reward; * fix: fix some UTs fails & comments;
NathanBSC
reviewed
Mar 22, 2024
* core: more check for validity of sidecars core/rawdb: optimize write block with sidecars core/rawdb: rollback interface freezeRange * core: fix TestIsDataAvailable
rollback interface of NewFreezer remove ci for blobtx
Contributor
Author
fixed |
Contributor
Author
solved |
emailtovamos
approved these changes
Mar 22, 2024
This was referenced Apr 2, 2024
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
BSC will support Cancun EIPs, check out Tycho hard fork plan. Other EIPs except EIP-4844 are already supported. But the implementation of EIP-4844 will be the big one and it will be different on BSC, mainly the blob part, as Ethereum store and propagate blobs in its consensus layer, while BSC doesn't have it. BSC need to implement in execution layer.
This PR will implement the EIP-4844 on BSC, there are some docs you may refer:
Rationale
Check out the motivation part of BEP-336: https://github.com/bnb-chain/BEPs/blob/master/BEPs/BEP-336.md#4-motivation
Example
NA
Changes