Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ codegen-units = 1
[workspace.dependencies]
# local
base-bundles = { path = "crates/bundles" }
base-fbal = { path = "crates/fbal" }
base-access-lists = { path = "crates/access-lists" }
base-reth-cli = { path = "crates/cli" }
base-reth-rpc = { path = "crates/rpc" }
base-reth-rpc-types = { path = "crates/reth-rpc-types" }
Expand Down
2 changes: 1 addition & 1 deletion crates/fbal/Cargo.toml → crates/access-lists/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "base-fbal"
name = "base-access-lists"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
Expand Down
File renamed without changes.
585 changes: 585 additions & 0 deletions crates/access-lists/SPEC.md

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ use alloy_consensus::Header;
pub use alloy_primitives::{Address, B256, TxKind, U256};
use alloy_sol_macro::sol;
pub use alloy_sol_types::SolCall;
use base_fbal::FBALBuilderDb;
pub use base_fbal::FlashblockAccessList;
use base_access_lists::FBALBuilderDb;
pub use base_access_lists::FlashblockAccessList;
pub use eyre::Result;
pub use op_revm::OpTransaction;
use reth_evm::{ConfigureEvm, Evm};
Expand Down