Skip to content

Variable: TransactionType

const TransactionType: {
  EIP1559: "eip1559";
  EIP2930: "eip2930";
  EIP4844: "eip4844";
  EIP7702: "eip7702";
  LEGACY: "legacy";
};

Defined in: apps/submitter/lib/types/ethereum.ts:47

Possible EVM transaction types.

Type declaration

EIP1559

readonly EIP1559: "eip1559" = "eip1559";

EIP2930

readonly EIP2930: "eip2930" = "eip2930";

EIP4844

readonly EIP4844: "eip4844" = "eip4844";

EIP7702

readonly EIP7702: "eip7702" = "eip7702";

LEGACY

readonly LEGACY: "legacy" = "legacy";