-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: correct eip2718 network encoding behavior
- Loading branch information
Showing
7 changed files
with
424 additions
and
36 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,27 @@ | ||
# alloy-consensus | ||
|
||
Consensus logic for the Ethereum blockchain. | ||
Consensus types for the Ethereum blockchain. | ||
|
||
This crate contains constants, types, and functions for implementing Ethereum | ||
EL consensus and communication. This includes headers, blocks, transactions, | ||
eip2718 envelopes, eip2930, eip4844, and more. The types in this crate | ||
implement many of the traits found in [alloy_network]. | ||
|
||
In general a type belongs in this crate if it is committed to in the EL block | ||
header. This includes: | ||
|
||
- transactions | ||
- blocks | ||
- headers | ||
- receipts | ||
- [EIP-2718] envelopes. | ||
|
||
[alloy-network]: ../network | ||
[EIP-2718]: https://eips.ethereum.org/EIPS/eip-2718 | ||
|
||
## Provenance | ||
|
||
Much of this code was ported from [reth-primitives] as part of ongoing alloy | ||
migrations. | ||
|
||
[reth-primitives]: https://github.com/paradigmxyz/reth/tree/main/crates/primitives |
This file contains 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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.