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

TransactionLegacy<TQuantity, TIndex, TPending, TType>: Omit<TransactionBase<TQuantity, TIndex, TPending>, "yParity"> & FeeValuesLegacy<TQuantity> & {
    accessList?: 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 chainId?: TIndex

    Chain ID that this transaction is valid on.

  • type: TType
  • Optional yParity?: never

Generated using TypeDoc