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

TransactionLegacy<TQuantity, TIndex, TPending, TType>: Omit<TransactionBase<TQuantity, TIndex, TPending>, "yParity"> & FeeValuesLegacy<TQuantity> & {
    accessList?: never;
    blobVersionedHashes?: never;
    chainId?: TIndex;
    type: TType;
    yParity?: never;
}

Type Parameters

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

Type declaration

  • OptionalaccessList?: never

    EIP-2930 Access List.

  • OptionalblobVersionedHashes?: never
  • OptionalchainId?: TIndex

    Chain ID that this transaction is valid on.

  • type: TType
  • OptionalyParity?: never