-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: added documentation, cleanup after rebase
- Loading branch information
1 parent
01413b9
commit abd1e09
Showing
7 changed files
with
45 additions
and
13 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
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 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 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 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 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 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,14 +1,21 @@ | ||
/// Module reposnsible for listening to the L1 chain and monitoring for new | ||
/// blocks and events. | ||
pub mod chain_watcher; | ||
pub use chain_watcher::{BlockUpdate, ChainWatcher}; | ||
|
||
/// module responsible for parsing logs to extract system config updates | ||
pub mod config_updates; | ||
pub use config_updates::SystemConfigUpdate; | ||
|
||
/// L1 block info | ||
pub mod l1_info; | ||
pub use l1_info::L1Info; | ||
|
||
/// Module responsible for extracting batcher transaction data from | ||
/// L1 batcher transaction data or blobs (after the Ecotone hardfork) | ||
pub mod blob_fetcher; | ||
pub use blob_fetcher::{BatcherTransactionData, BlobFetcher, BlobSidecar}; | ||
|
||
/// Helper module for decoding blob data | ||
pub mod blob_encoding; | ||
pub use blob_encoding::decode_blob_data; |