import type { AccessList, TransactionType } from "viem"; export type FeeOverrides = { readonly gasPrice: bigint; readonly maxFeePerGas?: never; readonly maxPriorityFeePerGas?: never; } | { readonly gasPrice?: never; readonly maxFeePerGas: bigint; readonly maxPriorityFeePerGas?: bigint | undefined; }; export type TxOverrides = { readonly accessList?: AccessList | undefined; readonly gas?: bigint | undefined; readonly gasPrice?: bigint | undefined; readonly maxFeePerGas?: bigint | undefined; readonly maxPriorityFeePerGas?: bigint | undefined; readonly nonce?: number | bigint | undefined; readonly type?: TransactionType | undefined; }; //# sourceMappingURL=tx-overrides.d.ts.map