File tree Expand file tree Collapse file tree 3 files changed +701
-294
lines changed Expand file tree Collapse file tree 3 files changed +701
-294
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ link-eip-4788 [EIP-4788](https://eips.ethereum.org/EIPS/eip-4788)
3636link-eip-4844 [EIP-4844](https://eips.ethereum.org/EIPS/eip-4844)
3737link-eip-6963 [EIP-6963](https://eips.ethereum.org/EIPS/eip-6963)
3838link-eip-7702 [EIP-7702](https://eips.ethereum.org/EIPS/eip-7702)
39+ link-eip-7594 [EIP-7594](https://eips.ethereum.org/EIPS/eip-7594)
3940
4041# Open Standards
4142link-base58 [Base58](https://en.bitcoinwiki.org/wiki/Base58)
Original file line number Diff line number Diff line change @@ -404,6 +404,10 @@ export function copyRequest(req: TransactionRequest): PreparedTransactionRequest
404404 result . blobVersionedHashes = req . blobVersionedHashes . slice ( ) ;
405405 }
406406
407+ if ( "blobVersion" in req && req . blobVersion != null ) {
408+ result . blobVersion = req . blobVersion ;
409+ }
410+
407411 if ( "kzg" in req ) { result . kzg = req . kzg ; }
408412
409413 if ( "blobs" in req && req . blobs ) {
You can’t perform that action at this time.
0 commit comments