Skip to content

Commit

Permalink
feat(examples): add blob support to the rollup ExEx (paradigmxyz#8028)
Browse files Browse the repository at this point in the history
  • Loading branch information
shekhirin authored May 2, 2024
1 parent 232e7bf commit 2ac2433
Show file tree
Hide file tree
Showing 7 changed files with 655 additions and 1,020 deletions.
150 changes: 117 additions & 33 deletions Cargo.lock

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

1 change: 0 additions & 1 deletion crates/transaction-pool/src/test_utils/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,6 @@ impl PoolTransaction for MockTransaction {
fn chain_id(&self) -> Option<u64> {
match self {
MockTransaction::Legacy { chain_id, .. } => *chain_id,

MockTransaction::Eip1559 { chain_id, .. } |
MockTransaction::Eip4844 { chain_id, .. } |
MockTransaction::Eip2930 { chain_id, .. } => Some(*chain_id),
Expand Down
1 change: 1 addition & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ unknown-git = "deny"
allow-git = [
# TODO: remove, see ./Cargo.toml
"https://github.com/alloy-rs/alloy",
"https://github.com/foundry-rs/block-explorers",
"https://github.com/paradigmxyz/evm-inspectors",
"https://github.com/sigp/discv5",
]
8 changes: 5 additions & 3 deletions examples/exex/rollup/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,18 @@ reth-tracing.workspace = true
reth-trie.workspace = true

# async
tokio.workspace = true
futures.workspace = true
tokio.workspace = true

# misc
alloy-sol-types = { workspace = true, features = ["json"] }
alloy-consensus = { workspace = true, features = ["kzg"] }
alloy-rlp.workspace = true
alloy-sol-types = { workspace = true, features = ["json"] }
eyre.workspace = true
foundry-blob-explorers = { git = "https://github.com/foundry-rs/block-explorers" }
once_cell.workspace = true
rusqlite = { version = "0.31.0", features = ["bundled"] }
serde_json.workspace = true
once_cell.workspace = true

[dev-dependencies]
reth-interfaces = { workspace = true, features = ["test-utils"] }
Expand Down
Loading

0 comments on commit 2ac2433

Please sign in to comment.