Skip to content

Commit

Permalink
fix: bump (#855)
Browse files Browse the repository at this point in the history
  • Loading branch information
refcell authored Dec 3, 2024
1 parent 216feea commit d01ae03
Show file tree
Hide file tree
Showing 8 changed files with 139 additions and 157 deletions.
229 changes: 89 additions & 140 deletions Cargo.lock

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,25 +75,25 @@ kona-proof = { path = "crates/proof-sdk/proof", version = "0.1.0", default-featu
# Alloy
alloy-rlp = { version = "0.3.9", default-features = false }
alloy-trie = { version = "0.7.4", default-features = false }
alloy-eips = { version = "0.6.4", default-features = false }
alloy-serde = { version = "0.6.4", default-features = false }
alloy-provider = { version = "0.6.4", default-features = false }
alloy-primitives = { version = "0.8.12", default-features = false }
alloy-consensus = { version = "0.6.4", default-features = false }
alloy-transport = { version = "0.6.4", default-features = false }
alloy-rpc-types = { version = "0.6.4", default-features = false, features = ["debug"] }
alloy-rpc-client = { version = "0.6.4", default-features = false }
alloy-node-bindings = { version = "0.6.4", default-features = false }
alloy-transport-http = { version = "0.6.4", default-features = false }
alloy-rpc-types-engine = { version = "0.6.4", default-features = false }
alloy-rpc-types-beacon = { version = "0.6.4", default-features = false }
alloy-eips = { version = "0.7.0", default-features = false }
alloy-serde = { version = "0.7.0", default-features = false }
alloy-provider = { version = "0.7.0", default-features = false }
alloy-primitives = { version = "0.8.13", default-features = false }
alloy-consensus = { version = "0.7.0", default-features = false }
alloy-transport = { version = "0.7.0", default-features = false }
alloy-rpc-types = { version = "0.7.0", default-features = false, features = ["debug"] }
alloy-rpc-client = { version = "0.7.0", default-features = false }
alloy-node-bindings = { version = "0.7.0", default-features = false }
alloy-transport-http = { version = "0.7.0", default-features = false }
alloy-rpc-types-engine = { version = "0.7.0", default-features = false }
alloy-rpc-types-beacon = { version = "0.7.0", default-features = false }

# OP Alloy
op-alloy-genesis = { version = "0.6.8", default-features = false }
op-alloy-registry = { version = "0.6.8", default-features = false }
op-alloy-protocol = { version = "0.6.8", default-features = false }
op-alloy-consensus = { version = "0.6.8", default-features = false }
op-alloy-rpc-types-engine = { version = "0.6.8", default-features = false, features = ["serde"] }
op-alloy-genesis = { version = "0.7.1", default-features = false }
op-alloy-registry = { version = "0.7.1", default-features = false }
op-alloy-protocol = { version = "0.7.1", default-features = false }
op-alloy-consensus = { version = "0.7.1", default-features = false }
op-alloy-rpc-types-engine = { version = "0.7.1", default-features = false, features = ["serde"] }

# General
lru = "0.12.4"
Expand Down
10 changes: 10 additions & 0 deletions crates/derive/src/attributes/stateful.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,8 @@ where
suggested_fee_recipient: SEQUENCER_FEE_VAULT_ADDRESS,
parent_beacon_block_root: parent_beacon_root,
withdrawals,
target_blobs_per_block: None,
max_blobs_per_block: None,
},
transactions: Some(txs),
no_tx_pool: Some(true),
Expand Down Expand Up @@ -450,6 +452,8 @@ mod tests {
suggested_fee_recipient: SEQUENCER_FEE_VAULT_ADDRESS,
parent_beacon_block_root: None,
withdrawals: None,
target_blobs_per_block: None,
max_blobs_per_block: None,
},
transactions: payload.transactions.clone(),
no_tx_pool: Some(true),
Expand Down Expand Up @@ -496,6 +500,8 @@ mod tests {
suggested_fee_recipient: SEQUENCER_FEE_VAULT_ADDRESS,
parent_beacon_block_root: None,
withdrawals: Some(Vec::default()),
target_blobs_per_block: None,
max_blobs_per_block: None,
},
transactions: payload.transactions.clone(),
no_tx_pool: Some(true),
Expand Down Expand Up @@ -544,6 +550,8 @@ mod tests {
suggested_fee_recipient: SEQUENCER_FEE_VAULT_ADDRESS,
parent_beacon_block_root,
withdrawals: Some(vec![]),
target_blobs_per_block: None,
max_blobs_per_block: None,
},
transactions: payload.transactions.clone(),
no_tx_pool: Some(true),
Expand Down Expand Up @@ -591,6 +599,8 @@ mod tests {
suggested_fee_recipient: SEQUENCER_FEE_VAULT_ADDRESS,
parent_beacon_block_root: Some(B256::ZERO),
withdrawals: Some(vec![]),
target_blobs_per_block: None,
max_blobs_per_block: None,
},
transactions: payload.transactions.clone(),
no_tx_pool: Some(true),
Expand Down
2 changes: 2 additions & 0 deletions crates/derive/src/pipeline/core.rs
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,8 @@ mod tests {
suggested_fee_recipient: Default::default(),
withdrawals: None,
parent_beacon_block_root: None,
target_blobs_per_block: None,
max_blobs_per_block: None,
},
transactions: None,
no_tx_pool: None,
Expand Down
2 changes: 2 additions & 0 deletions crates/derive/src/stages/attributes_queue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,8 @@ mod tests {
prev_randao: B256::default(),
withdrawals: None,
parent_beacon_block_root: None,
target_blobs_per_block: None,
max_blobs_per_block: None,
},
no_tx_pool: Some(false),
transactions: None,
Expand Down
4 changes: 4 additions & 0 deletions crates/executor/benches/execution.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,8 @@ fn execution(c: &mut Criterion) {
parent_beacon_block_root: Some(b256!(
"a4414c4984ce7285b82bd9b21c642af30f0f648fb6f4929b67753e7345a06bab"
)),
target_blobs_per_block: None,
max_blobs_per_block: None,
},
gas_limit: Some(30_000_000),
transactions: Some(raw_txs),
Expand Down Expand Up @@ -171,6 +173,8 @@ fn execution(c: &mut Criterion) {
parent_beacon_block_root: Some(b256!(
"8ab0d68c0fc4fe40d31baf01bcf73de45ddf15ab58e66738ca6c60648676f9af"
)),
target_blobs_per_block: None,
max_blobs_per_block: None,
},
gas_limit: Some(30_000_000),
transactions: Some(raw_txs),
Expand Down
13 changes: 13 additions & 0 deletions crates/executor/src/executor/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,7 @@ where
excess_blob_gas: excess_blob_gas.and_then(|x| x.try_into().ok()),
parent_beacon_block_root: payload.payload_attributes.parent_beacon_block_root,
extra_data: encoded_base_fee_params,
target_blobs_per_block: None,
}
.seal_slow();

Expand Down Expand Up @@ -556,6 +557,8 @@ mod test {
"edba75784acf3165bffd96df8b78ffdb3781db91f886f22b4bee0a6f722df939"
),
suggested_fee_recipient: FEE_RECIPIENT,
target_blobs_per_block: None,
max_blobs_per_block: None,
},
gas_limit: Some(0x1c9c380),
transactions: Some(alloc::vec![raw_tx.into()]),
Expand Down Expand Up @@ -619,6 +622,8 @@ mod test {
parent_beacon_block_root: Some(b256!(
"5e7da14ac6b18e62306c84d9d555387d4b4a6c3d122df22a2af2b68bf219860d"
)),
target_blobs_per_block: None,
max_blobs_per_block: None,
},
gas_limit: Some(30000000),
transactions: Some(raw_txs),
Expand Down Expand Up @@ -689,6 +694,8 @@ mod test {
parent_beacon_block_root: Some(b256!(
"50f4a35e2f059621cba649e719d23a2a9d030189fd19172a689c76d3adf39fec"
)),
target_blobs_per_block: None,
max_blobs_per_block: None,
},
gas_limit: Some(0x1c9c380),
transactions: Some(raw_txs),
Expand Down Expand Up @@ -753,6 +760,8 @@ mod test {
parent_beacon_block_root: Some(b256!(
"fa918fbee01a47f475d70995e78b4505bd8714962012720cab27f7e66ec4ea5b"
)),
target_blobs_per_block: None,
max_blobs_per_block: None,
},
gas_limit: Some(30_000_000),
transactions: Some(raw_txs),
Expand Down Expand Up @@ -826,6 +835,8 @@ mod test {
parent_beacon_block_root: Some(b256!(
"a4414c4984ce7285b82bd9b21c642af30f0f648fb6f4929b67753e7345a06bab"
)),
target_blobs_per_block: None,
max_blobs_per_block: None,
},
gas_limit: Some(30_000_000),
transactions: Some(raw_txs),
Expand Down Expand Up @@ -904,6 +915,8 @@ mod test {
parent_beacon_block_root: Some(b256!(
"8ab0d68c0fc4fe40d31baf01bcf73de45ddf15ab58e66738ca6c60648676f9af"
)),
target_blobs_per_block: None,
max_blobs_per_block: None,
},
gas_limit: Some(30_000_000),
transactions: Some(raw_txs),
Expand Down
2 changes: 2 additions & 0 deletions crates/executor/src/executor/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ mod test {
suggested_fee_recipient: Default::default(),
withdrawals: Default::default(),
parent_beacon_block_root: Default::default(),
target_blobs_per_block: None,
max_blobs_per_block: None,
},
transactions: None,
no_tx_pool: None,
Expand Down

0 comments on commit d01ae03

Please sign in to comment.