Type Alias TransactionEIP4844<TQuantity, TIndex, TPending, TType>

TransactionEIP4844<TQuantity, TIndex, TPending, TType>: TransactionBase<TQuantity, TIndex, TPending> & FeeValuesEIP4844<TQuantity> & {
    accessList: AccessList;
    blobVersionedHashes: Hex[];
    chainId: TIndex;
    type: TType;
}

Type Parameters

  • TQuantity = bigint
  • TIndex = number
  • TPending extends boolean = boolean
  • TType = "eip4844"

Type declaration

  • accessList: AccessList

    EIP-2930 Access List.

  • blobVersionedHashes: Hex[]

    List of versioned blob hashes associated with the transaction's blobs.

  • chainId: TIndex

    Chain ID that this transaction is valid on.

  • type: TType