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

  • Optional accessList?: never

    EIP-2930 Access List.

  • Optional blobVersionedHashes?: never
  • Optional chainId?: TIndex

    Chain ID that this transaction is valid on.

  • type: TType
  • Optional yParity?: never