Skip to content

Conversation

@mablr
Copy link
Contributor

@mablr mablr commented Jan 12, 2026

Motivation

Close #12449

Solution

  • Added support for EIP-7594 (PeerDAS) in transaction handling, allowing users to specify the new blob format.
  • Added tests for both EIP-4844 and EIP-7594 blob transactions in the CLI.

PR Checklist

  • Added Tests
  • Added Documentation
  • Breaking changes (no, since eip7594 format is not the default one yet)

- Added support for EIP-7594 (PeerDAS) in transaction handling, allowing users to specify blob transactions using the new format.
- Added tests for both EIP-4844 and EIP-7594 blob transactions in the CLI.
Comment on lines +677 to +683
if self.peerdas {
let sidecar = coder.build_7594()?;
self.tx.set_blob_sidecar_7594(sidecar);
} else {
let sidecar = coder.build()?;
alloy_network::TransactionBuilder4844::set_blob_sidecar(&mut self.tx, sidecar);
}
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lmk if you'd rather prefer setting eip7594 format by default

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

Status: No status

Development

Successfully merging this pull request may close these issues.

Support 7594 in cast mktx

1 participant