feat: withdrawals (#1322)

Co-authored-by: rakita <rakita@users.noreply.github.com>
This commit is contained in:
Roman Krasiuk
2023-02-16 14:44:05 +02:00
committed by GitHub
parent 94674f9c16
commit e97753c768
35 changed files with 648 additions and 264 deletions

View File

@ -29,6 +29,7 @@ mod peer;
mod receipt;
mod storage;
mod transaction;
mod withdrawal;
/// Helper function for calculating Merkle proofs and hashes
pub mod proofs;
@ -61,6 +62,7 @@ pub use transaction::{
Transaction, TransactionKind, TransactionSigned, TransactionSignedEcRecovered, TxEip1559,
TxEip2930, TxLegacy, TxType,
};
pub use withdrawal::Withdrawal;
/// A block hash.
pub type BlockHash = H256;