You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.
Is your feature request related to a problem? Please describe.
Currently it is not possible to implement something like cast send --blob, because ethers-rs does not support signing and RLP encoding an EIP4844 transaction request.
Describe the solution you'd like
A new typed transaction request type should be implemented which has correct RLP encoding. This should be feature gated behind a new feature flag kzg, since c-kzg will need to be pulled in as a dependency.
Is your feature request related to a problem? Please describe.
Currently it is not possible to implement something like
cast send --blob
, because ethers-rs does not support signing and RLP encoding an EIP4844 transaction request.Describe the solution you'd like
A new typed transaction request type should be implemented which has correct RLP encoding. This should be feature gated behind a new feature flag
kzg
, since c-kzg will need to be pulled in as a dependency.This should support encoding for:
eth_sendRawTransaction
encodingAdditional context
An existing implementation of this can be found here:
https://github.com/paradigmxyz/reth/blob/34004938415a449c773530d5fb3ff3a99b099ace/crates/primitives/src/transaction/eip4844.rs#L315-L321
https://github.com/paradigmxyz/reth/blob/34004938415a449c773530d5fb3ff3a99b099ace/crates/primitives/src/transaction/eip4844.rs#L295-L306
https://github.com/paradigmxyz/reth/blob/34004938415a449c773530d5fb3ff3a99b099ace/crates/primitives/src/transaction/sidecar.rs#L101-L127
The text was updated successfully, but these errors were encountered: