import { TransactionLegacyUnsigned } from "./legacy.js"; import { Transaction2930Unsigned } from "@ethernauta/eip/2930"; import { Transaction1559Unsigned } from "@ethernauta/eip/1559"; import { Transaction4844Unsigned } from "@ethernauta/eip/4844"; import { Transaction7702Unsigned } from "@ethernauta/eip/7702"; //#region src/core/transaction/unsigned.d.ts type TransactionUnsigned = Transaction4844Unsigned | Transaction1559Unsigned | Transaction2930Unsigned | Transaction7702Unsigned | TransactionLegacyUnsigned; //#endregion export { TransactionUnsigned }; //# sourceMappingURL=unsigned.d.ts.map