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

TransactionEIP2930<TQuantity, TIndex, TPending, TType>: TransactionBase<TQuantity, TIndex, TPending> & FeeValuesLegacy<TQuantity> & {
    accessList: AccessList;
    blobVersionedHashes?: never;
    chainId: TIndex;
    type: TType;
}

Type Parameters

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

Type declaration

  • accessList: AccessList

    EIP-2930 Access List.

  • OptionalblobVersionedHashes?: never
  • chainId: TIndex

    Chain ID that this transaction is valid on.

  • type: TType