diff --git a/action/blob_tx.go b/action/blob_tx.go new file mode 100644 index 0000000000..03ef56a785 --- /dev/null +++ b/action/blob_tx.go @@ -0,0 +1,14 @@ +// Copyright (c) 2024 IoTeX Foundation +// This source code is provided 'as is' and no warranties are given as to title or non-infringement, merchantability +// or fitness for purpose and, to the extent permitted by law, all liability for your use of the code is disclaimed. +// This source code is governed by Apache License 2.0 that can be found in the LICENSE file. + +package action + +import "github.com/ethereum/go-ethereum/common" + +// BlobTx represents an EIP-4844 transaction +type BlobTx struct { + *Execution + BlobHashes []common.Hash +}