import * as viem_chains from 'viem/chains';
import { Chain } from 'viem/chains';
import * as viem from 'viem';
import * as viem_op_stack from 'viem/op-stack';

type MUDChain = Chain & {
    faucetUrl?: string;
};

declare const mudFoundry: {
    readonly fees: {
        readonly defaultPriorityFee: () => bigint;
    };
    readonly blockExplorers?: {
        [key: string]: {
            name: string;
            url: string;
            apiUrl?: string | undefined;
        };
        default: {
            name: string;
            url: string;
            apiUrl?: string | undefined;
        };
    } | undefined;
    readonly contracts?: {
        [x: string]: viem.ChainContract | {
            [sourceId: number]: viem.ChainContract | undefined;
        } | undefined;
        ensRegistry?: viem.ChainContract | undefined;
        ensUniversalResolver?: viem.ChainContract | undefined;
        multicall3?: viem.ChainContract | undefined;
    } | undefined;
    readonly id: 31337;
    readonly name: "Foundry";
    readonly nativeCurrency: {
        readonly decimals: 18;
        readonly name: "Ether";
        readonly symbol: "ETH";
    };
    readonly rpcUrls: {
        readonly default: {
            readonly http: readonly ["http://127.0.0.1:8545"];
            readonly webSocket: readonly ["ws://127.0.0.1:8545"];
        };
    };
    readonly sourceId?: number | undefined;
    readonly testnet?: boolean | undefined;
    readonly custom?: Record<string, unknown> | undefined;
    readonly formatters?: undefined;
    readonly serializers?: viem.ChainSerializers<undefined> | undefined;
};

/** @deprecated This chain is deprecated and will be going offline soon. Please switch to Garnet! */
declare const latticeTestnet: {
    readonly name: "Lattice Testnet";
    readonly id: 4242;
    readonly nativeCurrency: {
        readonly decimals: 18;
        readonly name: "Ether";
        readonly symbol: "ETH";
    };
    readonly rpcUrls: {
        readonly default: {
            readonly http: readonly ["https://follower.testnet-chain.linfra.xyz"];
            readonly webSocket: readonly ["wss://follower.testnet-chain.linfra.xyz"];
        };
        readonly public: {
            readonly http: readonly ["https://follower.testnet-chain.linfra.xyz"];
            readonly webSocket: readonly ["wss://follower.testnet-chain.linfra.xyz"];
        };
    };
    readonly blockExplorers: {
        readonly default: {
            readonly name: "Otterscan";
            readonly url: "https://explorer.testnet-chain.linfra.xyz";
        };
    };
    readonly faucetUrl: "https://faucet.testnet-mud-services.linfra.xyz";
};

declare const garnet: {
    readonly id: 17069;
    readonly sourceId: 17000;
    readonly name: "Garnet Holesky";
    readonly testnet: true;
    readonly nativeCurrency: {
        readonly name: "Ether";
        readonly symbol: "ETH";
        readonly decimals: 18;
    };
    readonly rpcUrls: {
        readonly default: {
            readonly http: readonly ["https://rpc.garnetchain.com"];
            readonly webSocket: readonly ["wss://rpc.garnetchain.com"];
        };
    };
    readonly blockExplorers: {
        readonly default: {
            readonly name: "Blockscout";
            readonly url: "https://explorer.garnetchain.com";
        };
    };
    readonly contracts: {
        readonly multicall3: {
            readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
        };
        readonly portal: {
            readonly 17000: {
                readonly address: "0x57ee40586fbE286AfC75E67cb69511A6D9aF5909";
                readonly blockCreated: 1274684;
            };
        };
        readonly l2OutputOracle: {
            readonly 17000: {
                readonly address: "0xCb8E7AC561b8EF04F2a15865e9fbc0766FEF569B";
                readonly blockCreated: 1274684;
            };
        };
        readonly l1StandardBridge: {
            readonly 17000: {
                readonly address: "0x09bcDd311FE398F80a78BE37E489f5D440DB95DE";
                readonly blockCreated: 1274684;
            };
        };
    };
    readonly formatters: {
        readonly block: {
            exclude: [] | undefined;
            format: (args: viem_chains.Assign<viem.ExactPartial<viem.RpcBlock<viem.BlockTag, boolean, viem.RpcTransaction<boolean>>>, viem_op_stack.OpStackRpcBlockOverrides & {
                transactions: `0x${string}`[] | viem_op_stack.OpStackRpcTransaction<boolean>[];
            }>) => {
                baseFeePerGas: bigint | null;
                blobGasUsed: bigint;
                difficulty: bigint;
                excessBlobGas: bigint;
                extraData: `0x${string}`;
                gasLimit: bigint;
                gasUsed: bigint;
                hash: `0x${string}` | null;
                logsBloom: `0x${string}` | null;
                miner: `0x${string}`;
                mixHash: `0x${string}`;
                nonce: `0x${string}` | null;
                number: bigint | null;
                parentHash: `0x${string}`;
                receiptsRoot: `0x${string}`;
                sealFields: `0x${string}`[];
                sha3Uncles: `0x${string}`;
                size: bigint;
                stateRoot: `0x${string}`;
                timestamp: bigint;
                totalDifficulty: bigint | null;
                transactions: `0x${string}`[] | viem_op_stack.OpStackTransaction<boolean>[];
                transactionsRoot: `0x${string}`;
                uncles: `0x${string}`[];
                withdrawals?: viem.Withdrawal[] | undefined;
                withdrawalsRoot?: `0x${string}` | undefined;
            };
            type: "block";
        };
        readonly transaction: {
            exclude: [] | undefined;
            format: (args: ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: undefined;
                blobVersionedHashes?: undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & viem_chains.Omit<viem_chains.PartialBy<{
                r: `0x${string}`;
                s: `0x${string}`;
                v: `0x${string}`;
                to: `0x${string}` | null;
                from: `0x${string}`;
                gas: `0x${string}`;
                nonce: `0x${string}`;
                value: `0x${string}`;
                blockHash: `0x${string}` | null;
                blockNumber: `0x${string}` | null;
                hash: `0x${string}`;
                input: `0x${string}`;
                transactionIndex: `0x${string}` | null;
                typeHex: `0x${string}` | null;
                gasPrice: `0x${string}`;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas?: undefined;
                maxPriorityFeePerGas?: undefined;
                accessList?: undefined;
                blobVersionedHashes?: undefined;
                chainId?: `0x${string}` | undefined;
                yParity?: undefined;
                type: "0x0";
            }, "yParity">, "typeHex"> & {
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: undefined;
                blobVersionedHashes?: undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & Omit<viem.TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & viem.FeeValuesEIP1559<`0x${string}`> & {
                isSystemTx?: boolean | undefined;
                mint?: `0x${string}` | undefined;
                sourceHash: `0x${string}`;
                type: "0x7e";
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: viem.AccessList | undefined;
                blobVersionedHashes?: undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & viem_chains.Omit<viem_chains.PartialBy<{
                r: `0x${string}`;
                s: `0x${string}`;
                v: `0x${string}`;
                to: `0x${string}` | null;
                from: `0x${string}`;
                gas: `0x${string}`;
                nonce: `0x${string}`;
                value: `0x${string}`;
                blockHash: `0x${string}` | null;
                blockNumber: `0x${string}` | null;
                hash: `0x${string}`;
                input: `0x${string}`;
                transactionIndex: `0x${string}` | null;
                typeHex: `0x${string}` | null;
                gasPrice: `0x${string}`;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas?: undefined;
                maxPriorityFeePerGas?: undefined;
                accessList?: undefined;
                blobVersionedHashes?: undefined;
                chainId?: `0x${string}` | undefined;
                yParity?: undefined;
                type: "0x0";
            }, "yParity">, "typeHex"> & {
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: viem.AccessList | undefined;
                blobVersionedHashes?: undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & viem_chains.Omit<viem_chains.PartialBy<{
                blockHash: `0x${string}` | null;
                blockNumber: `0x${string}` | null;
                from: `0x${string}`;
                gas: `0x${string}`;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: `0x${string}`;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: `0x${string}` | null;
                typeHex: `0x${string}` | null;
                v: `0x${string}`;
                value: `0x${string}`;
                yParity: `0x${string}`;
                gasPrice: `0x${string}`;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas?: undefined;
                maxPriorityFeePerGas?: undefined;
                accessList: viem.AccessList;
                blobVersionedHashes?: undefined;
                chainId: `0x${string}`;
                type: "0x1";
            }, "yParity">, "typeHex"> & {
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: viem.AccessList | undefined;
                blobVersionedHashes?: undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & viem_chains.Omit<viem_chains.PartialBy<{
                blockHash: `0x${string}` | null;
                blockNumber: `0x${string}` | null;
                from: `0x${string}`;
                gas: `0x${string}`;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: `0x${string}`;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: `0x${string}` | null;
                typeHex: `0x${string}` | null;
                v: `0x${string}`;
                value: `0x${string}`;
                yParity: `0x${string}`;
                gasPrice?: undefined;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas: `0x${string}`;
                maxPriorityFeePerGas: `0x${string}`;
                accessList: viem.AccessList;
                blobVersionedHashes?: undefined;
                chainId: `0x${string}`;
                type: "0x2";
            }, "yParity">, "typeHex"> & {
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: viem.AccessList | undefined;
                blobVersionedHashes?: undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & Omit<viem.TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & viem.FeeValuesEIP1559<`0x${string}`> & {
                isSystemTx?: boolean | undefined;
                mint?: `0x${string}` | undefined;
                sourceHash: `0x${string}`;
                type: "0x7e";
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: viem.AccessList | undefined;
                blobVersionedHashes?: undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & viem_chains.Omit<viem_chains.PartialBy<{
                r: `0x${string}`;
                s: `0x${string}`;
                v: `0x${string}`;
                to: `0x${string}` | null;
                from: `0x${string}`;
                gas: `0x${string}`;
                nonce: `0x${string}`;
                value: `0x${string}`;
                blockHash: `0x${string}` | null;
                blockNumber: `0x${string}` | null;
                hash: `0x${string}`;
                input: `0x${string}`;
                transactionIndex: `0x${string}` | null;
                typeHex: `0x${string}` | null;
                gasPrice: `0x${string}`;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas?: undefined;
                maxPriorityFeePerGas?: undefined;
                accessList?: undefined;
                blobVersionedHashes?: undefined;
                chainId?: `0x${string}` | undefined;
                yParity?: undefined;
                type: "0x0";
            }, "yParity">, "typeHex"> & {
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: viem.AccessList | undefined;
                blobVersionedHashes?: undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & viem_chains.Omit<viem_chains.PartialBy<{
                blockHash: `0x${string}` | null;
                blockNumber: `0x${string}` | null;
                from: `0x${string}`;
                gas: `0x${string}`;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: `0x${string}`;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: `0x${string}` | null;
                typeHex: `0x${string}` | null;
                v: `0x${string}`;
                value: `0x${string}`;
                yParity: `0x${string}`;
                gasPrice: `0x${string}`;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas?: undefined;
                maxPriorityFeePerGas?: undefined;
                accessList: viem.AccessList;
                blobVersionedHashes?: undefined;
                chainId: `0x${string}`;
                type: "0x1";
            }, "yParity">, "typeHex"> & {
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: viem.AccessList | undefined;
                blobVersionedHashes?: undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & viem_chains.Omit<viem_chains.PartialBy<{
                blockHash: `0x${string}` | null;
                blockNumber: `0x${string}` | null;
                from: `0x${string}`;
                gas: `0x${string}`;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: `0x${string}`;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: `0x${string}` | null;
                typeHex: `0x${string}` | null;
                v: `0x${string}`;
                value: `0x${string}`;
                yParity: `0x${string}`;
                gasPrice?: undefined;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas: `0x${string}`;
                maxPriorityFeePerGas: `0x${string}`;
                accessList: viem.AccessList;
                blobVersionedHashes?: undefined;
                chainId: `0x${string}`;
                type: "0x2";
            }, "yParity">, "typeHex"> & {
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: viem.AccessList | undefined;
                blobVersionedHashes?: undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & Omit<viem.TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & viem.FeeValuesEIP1559<`0x${string}`> & {
                isSystemTx?: boolean | undefined;
                mint?: `0x${string}` | undefined;
                sourceHash: `0x${string}`;
                type: "0x7e";
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: viem.AccessList | undefined;
                blobVersionedHashes?: `0x${string}`[] | undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & viem_chains.Omit<viem_chains.PartialBy<{
                r: `0x${string}`;
                s: `0x${string}`;
                v: `0x${string}`;
                to: `0x${string}` | null;
                from: `0x${string}`;
                gas: `0x${string}`;
                nonce: `0x${string}`;
                value: `0x${string}`;
                blockHash: `0x${string}` | null;
                blockNumber: `0x${string}` | null;
                hash: `0x${string}`;
                input: `0x${string}`;
                transactionIndex: `0x${string}` | null;
                typeHex: `0x${string}` | null;
                gasPrice: `0x${string}`;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas?: undefined;
                maxPriorityFeePerGas?: undefined;
                accessList?: undefined;
                blobVersionedHashes?: undefined;
                chainId?: `0x${string}` | undefined;
                yParity?: undefined;
                type: "0x0";
            }, "yParity">, "typeHex"> & {
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: viem.AccessList | undefined;
                blobVersionedHashes?: `0x${string}`[] | undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & viem_chains.Omit<viem_chains.PartialBy<{
                blockHash: `0x${string}` | null;
                blockNumber: `0x${string}` | null;
                from: `0x${string}`;
                gas: `0x${string}`;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: `0x${string}`;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: `0x${string}` | null;
                typeHex: `0x${string}` | null;
                v: `0x${string}`;
                value: `0x${string}`;
                yParity: `0x${string}`;
                gasPrice: `0x${string}`;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas?: undefined;
                maxPriorityFeePerGas?: undefined;
                accessList: viem.AccessList;
                blobVersionedHashes?: undefined;
                chainId: `0x${string}`;
                type: "0x1";
            }, "yParity">, "typeHex"> & {
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: viem.AccessList | undefined;
                blobVersionedHashes?: `0x${string}`[] | undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & viem_chains.Omit<viem_chains.PartialBy<{
                blockHash: `0x${string}` | null;
                blockNumber: `0x${string}` | null;
                from: `0x${string}`;
                gas: `0x${string}`;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: `0x${string}`;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: `0x${string}` | null;
                typeHex: `0x${string}` | null;
                v: `0x${string}`;
                value: `0x${string}`;
                yParity: `0x${string}`;
                gasPrice?: undefined;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas: `0x${string}`;
                maxPriorityFeePerGas: `0x${string}`;
                accessList: viem.AccessList;
                blobVersionedHashes?: undefined;
                chainId: `0x${string}`;
                type: "0x2";
            }, "yParity">, "typeHex"> & {
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: viem.AccessList | undefined;
                blobVersionedHashes?: `0x${string}`[] | undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & viem_chains.Omit<viem_chains.PartialBy<{
                blockHash: `0x${string}` | null;
                blockNumber: `0x${string}` | null;
                from: `0x${string}`;
                gas: `0x${string}`;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: `0x${string}`;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: `0x${string}` | null;
                typeHex: `0x${string}` | null;
                v: `0x${string}`;
                value: `0x${string}`;
                yParity: `0x${string}`;
                gasPrice?: undefined;
                maxFeePerBlobGas: `0x${string}`;
                maxFeePerGas: `0x${string}`;
                maxPriorityFeePerGas: `0x${string}`;
                accessList: viem.AccessList;
                blobVersionedHashes: `0x${string}`[];
                chainId: `0x${string}`;
                type: "0x3";
            }, "yParity">, "typeHex"> & {
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: viem.AccessList | undefined;
                blobVersionedHashes?: `0x${string}`[] | undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & Omit<viem.TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & viem.FeeValuesEIP1559<`0x${string}`> & {
                isSystemTx?: boolean | undefined;
                mint?: `0x${string}` | undefined;
                sourceHash: `0x${string}`;
                type: "0x7e";
            })) => {
                r: `0x${string}`;
                s: `0x${string}`;
                v: bigint;
                to: `0x${string}` | null;
                from: `0x${string}`;
                gas: bigint;
                nonce: number;
                value: bigint;
                blockHash: `0x${string}` | null;
                blockNumber: bigint | null;
                hash: `0x${string}`;
                input: `0x${string}`;
                transactionIndex: number | null;
                typeHex: `0x${string}` | null;
                gasPrice: bigint;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas?: undefined;
                maxPriorityFeePerGas?: undefined;
                accessList?: undefined;
                blobVersionedHashes?: undefined;
                chainId?: number | undefined;
                yParity?: undefined;
                type: "legacy";
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            } | {
                r: `0x${string}`;
                s: `0x${string}`;
                v: bigint;
                to: `0x${string}` | null;
                from: `0x${string}`;
                gas: bigint;
                nonce: number;
                value: bigint;
                blockHash: `0x${string}` | null;
                blockNumber: bigint | null;
                hash: `0x${string}`;
                input: `0x${string}`;
                transactionIndex: number | null;
                typeHex: `0x${string}` | null;
                gasPrice: undefined;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas: bigint;
                maxPriorityFeePerGas: bigint;
                accessList?: undefined;
                blobVersionedHashes?: undefined;
                chainId?: number | undefined;
                yParity: number;
                type: "deposit";
                isSystemTx?: boolean | undefined;
                mint?: bigint | undefined;
                sourceHash: `0x${string}`;
            } | {
                blockHash: `0x${string}` | null;
                blockNumber: bigint | null;
                from: `0x${string}`;
                gas: bigint;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: number;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: number | null;
                typeHex: `0x${string}` | null;
                v: bigint;
                value: bigint;
                yParity: number;
                gasPrice: bigint;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas?: undefined;
                maxPriorityFeePerGas?: undefined;
                accessList: viem.AccessList;
                blobVersionedHashes?: undefined;
                chainId: number;
                type: "eip2930";
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            } | {
                blockHash: `0x${string}` | null;
                blockNumber: bigint | null;
                from: `0x${string}`;
                gas: bigint;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: number;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: number | null;
                typeHex: `0x${string}` | null;
                v: bigint;
                value: bigint;
                yParity: number;
                gasPrice: undefined;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas: bigint;
                maxPriorityFeePerGas: bigint;
                accessList: viem.AccessList;
                blobVersionedHashes?: undefined;
                chainId: number;
                type: "eip1559";
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            } | {
                blockHash: `0x${string}` | null;
                blockNumber: bigint | null;
                from: `0x${string}`;
                gas: bigint;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: number;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: number | null;
                typeHex: `0x${string}` | null;
                v: bigint;
                value: bigint;
                yParity: number;
                gasPrice: undefined;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas: bigint;
                maxPriorityFeePerGas: bigint;
                accessList: viem.AccessList;
                blobVersionedHashes?: undefined;
                chainId: number;
                type: "deposit";
                isSystemTx?: boolean | undefined;
                mint?: bigint | undefined;
                sourceHash: `0x${string}`;
            } | {
                blockHash: `0x${string}` | null;
                blockNumber: bigint | null;
                from: `0x${string}`;
                gas: bigint;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: number;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: number | null;
                typeHex: `0x${string}` | null;
                v: bigint;
                value: bigint;
                yParity: number;
                gasPrice: bigint;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas: undefined;
                maxPriorityFeePerGas: undefined;
                accessList: viem.AccessList;
                blobVersionedHashes?: undefined;
                chainId: number;
                type: "eip2930";
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            } | {
                blockHash: `0x${string}` | null;
                blockNumber: bigint | null;
                from: `0x${string}`;
                gas: bigint;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: number;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: number | null;
                typeHex: `0x${string}` | null;
                v: bigint;
                value: bigint;
                yParity: number;
                gasPrice?: undefined;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas: bigint;
                maxPriorityFeePerGas: bigint;
                accessList: viem.AccessList;
                blobVersionedHashes?: undefined;
                chainId: number;
                type: "eip1559";
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            } | {
                blockHash: `0x${string}` | null;
                blockNumber: bigint | null;
                from: `0x${string}`;
                gas: bigint;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: number;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: number | null;
                typeHex: `0x${string}` | null;
                v: bigint;
                value: bigint;
                yParity: number;
                gasPrice?: undefined;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas: bigint;
                maxPriorityFeePerGas: bigint;
                accessList: viem.AccessList;
                blobVersionedHashes?: undefined;
                chainId: number;
                type: "deposit";
                isSystemTx?: boolean | undefined;
                mint?: bigint | undefined;
                sourceHash: `0x${string}`;
            } | {
                blockHash: `0x${string}` | null;
                blockNumber: bigint | null;
                from: `0x${string}`;
                gas: bigint;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: number;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: number | null;
                typeHex: `0x${string}` | null;
                v: bigint;
                value: bigint;
                yParity: number;
                gasPrice?: undefined;
                maxFeePerBlobGas: bigint;
                maxFeePerGas: bigint;
                maxPriorityFeePerGas: bigint;
                accessList: viem.AccessList;
                blobVersionedHashes: `0x${string}`[];
                chainId: number;
                type: "eip4844";
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            } | {
                blockHash: `0x${string}` | null;
                blockNumber: bigint | null;
                from: `0x${string}`;
                gas: bigint;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: number;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: number | null;
                typeHex: `0x${string}` | null;
                v: bigint;
                value: bigint;
                yParity: number;
                gasPrice?: undefined;
                maxFeePerBlobGas: undefined;
                maxFeePerGas: bigint;
                maxPriorityFeePerGas: bigint;
                accessList: viem.AccessList;
                blobVersionedHashes: `0x${string}`[];
                chainId: number;
                type: "deposit";
                isSystemTx?: boolean | undefined;
                mint?: bigint | undefined;
                sourceHash: `0x${string}`;
            };
            type: "transaction";
        };
        readonly transactionReceipt: {
            exclude: [] | undefined;
            format: (args: viem_chains.Assign<viem.ExactPartial<viem.RpcTransactionReceipt>, viem_op_stack.OpStackRpcTransactionReceiptOverrides>) => {
                blobGasPrice?: bigint | undefined;
                blobGasUsed?: bigint | undefined;
                blockHash: `0x${string}`;
                blockNumber: bigint;
                contractAddress: `0x${string}` | null | undefined;
                cumulativeGasUsed: bigint;
                effectiveGasPrice: bigint;
                from: `0x${string}`;
                gasUsed: bigint;
                logs: viem.Log<bigint, number, false, undefined, undefined, undefined, undefined>[];
                logsBloom: `0x${string}`;
                root?: `0x${string}` | undefined;
                status: "success" | "reverted";
                to: `0x${string}` | null;
                transactionHash: `0x${string}`;
                transactionIndex: number;
                type: viem.TransactionType;
                l1GasPrice: bigint | null;
                l1GasUsed: bigint | null;
                l1Fee: bigint | null;
                l1FeeScalar: number | null;
            };
            type: "transactionReceipt";
        };
    };
    readonly serializers: {
        readonly transaction: typeof viem_op_stack.serializeTransaction;
    };
};

declare const redstone: {
    readonly id: 690;
    readonly sourceId: 1;
    readonly name: "Redstone";
    readonly nativeCurrency: {
        readonly name: "Ether";
        readonly symbol: "ETH";
        readonly decimals: 18;
    };
    readonly rpcUrls: {
        readonly default: {
            readonly http: readonly ["https://rpc.redstonechain.com"];
            readonly webSocket: readonly ["wss://rpc.redstonechain.com"];
        };
    };
    readonly blockExplorers: {
        readonly default: {
            readonly name: "Blockscout";
            readonly url: "https://explorer.redstone.xyz";
        };
    };
    readonly contracts: {
        readonly multicall3: {
            readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
        };
    };
    readonly formatters: {
        readonly block: {
            exclude: [] | undefined;
            format: (args: viem_chains.Assign<viem.ExactPartial<viem.RpcBlock<viem.BlockTag, boolean, viem.RpcTransaction<boolean>>>, viem_op_stack.OpStackRpcBlockOverrides & {
                transactions: `0x${string}`[] | viem_op_stack.OpStackRpcTransaction<boolean>[];
            }>) => {
                baseFeePerGas: bigint | null;
                blobGasUsed: bigint;
                difficulty: bigint;
                excessBlobGas: bigint;
                extraData: `0x${string}`;
                gasLimit: bigint;
                gasUsed: bigint;
                hash: `0x${string}` | null;
                logsBloom: `0x${string}` | null;
                miner: `0x${string}`;
                mixHash: `0x${string}`;
                nonce: `0x${string}` | null;
                number: bigint | null;
                parentHash: `0x${string}`;
                receiptsRoot: `0x${string}`;
                sealFields: `0x${string}`[];
                sha3Uncles: `0x${string}`;
                size: bigint;
                stateRoot: `0x${string}`;
                timestamp: bigint;
                totalDifficulty: bigint | null;
                transactions: `0x${string}`[] | viem_op_stack.OpStackTransaction<boolean>[];
                transactionsRoot: `0x${string}`;
                uncles: `0x${string}`[];
                withdrawals?: viem.Withdrawal[] | undefined;
                withdrawalsRoot?: `0x${string}` | undefined;
            };
            type: "block";
        };
        readonly transaction: {
            exclude: [] | undefined;
            format: (args: ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: undefined;
                blobVersionedHashes?: undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & viem_chains.Omit<viem_chains.PartialBy<{
                r: `0x${string}`;
                s: `0x${string}`;
                v: `0x${string}`;
                to: `0x${string}` | null;
                from: `0x${string}`;
                gas: `0x${string}`;
                nonce: `0x${string}`;
                value: `0x${string}`;
                blockHash: `0x${string}` | null;
                blockNumber: `0x${string}` | null;
                hash: `0x${string}`;
                input: `0x${string}`;
                transactionIndex: `0x${string}` | null;
                typeHex: `0x${string}` | null;
                gasPrice: `0x${string}`;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas?: undefined;
                maxPriorityFeePerGas?: undefined;
                accessList?: undefined;
                blobVersionedHashes?: undefined;
                chainId?: `0x${string}` | undefined;
                yParity?: undefined;
                type: "0x0";
            }, "yParity">, "typeHex"> & {
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: undefined;
                blobVersionedHashes?: undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & Omit<viem.TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & viem.FeeValuesEIP1559<`0x${string}`> & {
                isSystemTx?: boolean | undefined;
                mint?: `0x${string}` | undefined;
                sourceHash: `0x${string}`;
                type: "0x7e";
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: viem.AccessList | undefined;
                blobVersionedHashes?: undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & viem_chains.Omit<viem_chains.PartialBy<{
                r: `0x${string}`;
                s: `0x${string}`;
                v: `0x${string}`;
                to: `0x${string}` | null;
                from: `0x${string}`;
                gas: `0x${string}`;
                nonce: `0x${string}`;
                value: `0x${string}`;
                blockHash: `0x${string}` | null;
                blockNumber: `0x${string}` | null;
                hash: `0x${string}`;
                input: `0x${string}`;
                transactionIndex: `0x${string}` | null;
                typeHex: `0x${string}` | null;
                gasPrice: `0x${string}`;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas?: undefined;
                maxPriorityFeePerGas?: undefined;
                accessList?: undefined;
                blobVersionedHashes?: undefined;
                chainId?: `0x${string}` | undefined;
                yParity?: undefined;
                type: "0x0";
            }, "yParity">, "typeHex"> & {
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: viem.AccessList | undefined;
                blobVersionedHashes?: undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & viem_chains.Omit<viem_chains.PartialBy<{
                blockHash: `0x${string}` | null;
                blockNumber: `0x${string}` | null;
                from: `0x${string}`;
                gas: `0x${string}`;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: `0x${string}`;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: `0x${string}` | null;
                typeHex: `0x${string}` | null;
                v: `0x${string}`;
                value: `0x${string}`;
                yParity: `0x${string}`;
                gasPrice: `0x${string}`;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas?: undefined;
                maxPriorityFeePerGas?: undefined;
                accessList: viem.AccessList;
                blobVersionedHashes?: undefined;
                chainId: `0x${string}`;
                type: "0x1";
            }, "yParity">, "typeHex"> & {
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: viem.AccessList | undefined;
                blobVersionedHashes?: undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & viem_chains.Omit<viem_chains.PartialBy<{
                blockHash: `0x${string}` | null;
                blockNumber: `0x${string}` | null;
                from: `0x${string}`;
                gas: `0x${string}`;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: `0x${string}`;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: `0x${string}` | null;
                typeHex: `0x${string}` | null;
                v: `0x${string}`;
                value: `0x${string}`;
                yParity: `0x${string}`;
                gasPrice?: undefined;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas: `0x${string}`;
                maxPriorityFeePerGas: `0x${string}`;
                accessList: viem.AccessList;
                blobVersionedHashes?: undefined;
                chainId: `0x${string}`;
                type: "0x2";
            }, "yParity">, "typeHex"> & {
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: viem.AccessList | undefined;
                blobVersionedHashes?: undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & Omit<viem.TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & viem.FeeValuesEIP1559<`0x${string}`> & {
                isSystemTx?: boolean | undefined;
                mint?: `0x${string}` | undefined;
                sourceHash: `0x${string}`;
                type: "0x7e";
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: viem.AccessList | undefined;
                blobVersionedHashes?: undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & viem_chains.Omit<viem_chains.PartialBy<{
                r: `0x${string}`;
                s: `0x${string}`;
                v: `0x${string}`;
                to: `0x${string}` | null;
                from: `0x${string}`;
                gas: `0x${string}`;
                nonce: `0x${string}`;
                value: `0x${string}`;
                blockHash: `0x${string}` | null;
                blockNumber: `0x${string}` | null;
                hash: `0x${string}`;
                input: `0x${string}`;
                transactionIndex: `0x${string}` | null;
                typeHex: `0x${string}` | null;
                gasPrice: `0x${string}`;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas?: undefined;
                maxPriorityFeePerGas?: undefined;
                accessList?: undefined;
                blobVersionedHashes?: undefined;
                chainId?: `0x${string}` | undefined;
                yParity?: undefined;
                type: "0x0";
            }, "yParity">, "typeHex"> & {
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: viem.AccessList | undefined;
                blobVersionedHashes?: undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & viem_chains.Omit<viem_chains.PartialBy<{
                blockHash: `0x${string}` | null;
                blockNumber: `0x${string}` | null;
                from: `0x${string}`;
                gas: `0x${string}`;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: `0x${string}`;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: `0x${string}` | null;
                typeHex: `0x${string}` | null;
                v: `0x${string}`;
                value: `0x${string}`;
                yParity: `0x${string}`;
                gasPrice: `0x${string}`;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas?: undefined;
                maxPriorityFeePerGas?: undefined;
                accessList: viem.AccessList;
                blobVersionedHashes?: undefined;
                chainId: `0x${string}`;
                type: "0x1";
            }, "yParity">, "typeHex"> & {
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: viem.AccessList | undefined;
                blobVersionedHashes?: undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & viem_chains.Omit<viem_chains.PartialBy<{
                blockHash: `0x${string}` | null;
                blockNumber: `0x${string}` | null;
                from: `0x${string}`;
                gas: `0x${string}`;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: `0x${string}`;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: `0x${string}` | null;
                typeHex: `0x${string}` | null;
                v: `0x${string}`;
                value: `0x${string}`;
                yParity: `0x${string}`;
                gasPrice?: undefined;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas: `0x${string}`;
                maxPriorityFeePerGas: `0x${string}`;
                accessList: viem.AccessList;
                blobVersionedHashes?: undefined;
                chainId: `0x${string}`;
                type: "0x2";
            }, "yParity">, "typeHex"> & {
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: viem.AccessList | undefined;
                blobVersionedHashes?: undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & Omit<viem.TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & viem.FeeValuesEIP1559<`0x${string}`> & {
                isSystemTx?: boolean | undefined;
                mint?: `0x${string}` | undefined;
                sourceHash: `0x${string}`;
                type: "0x7e";
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: viem.AccessList | undefined;
                blobVersionedHashes?: `0x${string}`[] | undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & viem_chains.Omit<viem_chains.PartialBy<{
                r: `0x${string}`;
                s: `0x${string}`;
                v: `0x${string}`;
                to: `0x${string}` | null;
                from: `0x${string}`;
                gas: `0x${string}`;
                nonce: `0x${string}`;
                value: `0x${string}`;
                blockHash: `0x${string}` | null;
                blockNumber: `0x${string}` | null;
                hash: `0x${string}`;
                input: `0x${string}`;
                transactionIndex: `0x${string}` | null;
                typeHex: `0x${string}` | null;
                gasPrice: `0x${string}`;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas?: undefined;
                maxPriorityFeePerGas?: undefined;
                accessList?: undefined;
                blobVersionedHashes?: undefined;
                chainId?: `0x${string}` | undefined;
                yParity?: undefined;
                type: "0x0";
            }, "yParity">, "typeHex"> & {
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: viem.AccessList | undefined;
                blobVersionedHashes?: `0x${string}`[] | undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & viem_chains.Omit<viem_chains.PartialBy<{
                blockHash: `0x${string}` | null;
                blockNumber: `0x${string}` | null;
                from: `0x${string}`;
                gas: `0x${string}`;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: `0x${string}`;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: `0x${string}` | null;
                typeHex: `0x${string}` | null;
                v: `0x${string}`;
                value: `0x${string}`;
                yParity: `0x${string}`;
                gasPrice: `0x${string}`;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas?: undefined;
                maxPriorityFeePerGas?: undefined;
                accessList: viem.AccessList;
                blobVersionedHashes?: undefined;
                chainId: `0x${string}`;
                type: "0x1";
            }, "yParity">, "typeHex"> & {
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: viem.AccessList | undefined;
                blobVersionedHashes?: `0x${string}`[] | undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & viem_chains.Omit<viem_chains.PartialBy<{
                blockHash: `0x${string}` | null;
                blockNumber: `0x${string}` | null;
                from: `0x${string}`;
                gas: `0x${string}`;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: `0x${string}`;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: `0x${string}` | null;
                typeHex: `0x${string}` | null;
                v: `0x${string}`;
                value: `0x${string}`;
                yParity: `0x${string}`;
                gasPrice?: undefined;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas: `0x${string}`;
                maxPriorityFeePerGas: `0x${string}`;
                accessList: viem.AccessList;
                blobVersionedHashes?: undefined;
                chainId: `0x${string}`;
                type: "0x2";
            }, "yParity">, "typeHex"> & {
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: viem.AccessList | undefined;
                blobVersionedHashes?: `0x${string}`[] | undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & viem_chains.Omit<viem_chains.PartialBy<{
                blockHash: `0x${string}` | null;
                blockNumber: `0x${string}` | null;
                from: `0x${string}`;
                gas: `0x${string}`;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: `0x${string}`;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: `0x${string}` | null;
                typeHex: `0x${string}` | null;
                v: `0x${string}`;
                value: `0x${string}`;
                yParity: `0x${string}`;
                gasPrice?: undefined;
                maxFeePerBlobGas: `0x${string}`;
                maxFeePerGas: `0x${string}`;
                maxPriorityFeePerGas: `0x${string}`;
                accessList: viem.AccessList;
                blobVersionedHashes: `0x${string}`[];
                chainId: `0x${string}`;
                type: "0x3";
            }, "yParity">, "typeHex"> & {
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            }) | ({
                r?: `0x${string}` | undefined;
                s?: `0x${string}` | undefined;
                v?: `0x${string}` | undefined;
                yParity?: `0x${string}` | undefined;
                gasPrice?: `0x${string}` | undefined;
                maxFeePerBlobGas?: `0x${string}` | undefined;
                maxFeePerGas?: `0x${string}` | undefined;
                maxPriorityFeePerGas?: `0x${string}` | undefined;
                to?: `0x${string}` | null | undefined;
                from?: `0x${string}` | undefined;
                gas?: `0x${string}` | undefined;
                nonce?: `0x${string}` | undefined;
                value?: `0x${string}` | undefined;
                type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
                accessList?: viem.AccessList | undefined;
                blobVersionedHashes?: `0x${string}`[] | undefined;
                blockHash?: `0x${string}` | null | undefined;
                blockNumber?: `0x${string}` | null | undefined;
                hash?: `0x${string}` | undefined;
                input?: `0x${string}` | undefined;
                transactionIndex?: `0x${string}` | null | undefined;
                chainId?: `0x${string}` | undefined;
            } & Omit<viem.TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & viem.FeeValuesEIP1559<`0x${string}`> & {
                isSystemTx?: boolean | undefined;
                mint?: `0x${string}` | undefined;
                sourceHash: `0x${string}`;
                type: "0x7e";
            })) => {
                r: `0x${string}`;
                s: `0x${string}`;
                v: bigint;
                to: `0x${string}` | null;
                from: `0x${string}`;
                gas: bigint;
                nonce: number;
                value: bigint;
                blockHash: `0x${string}` | null;
                blockNumber: bigint | null;
                hash: `0x${string}`;
                input: `0x${string}`;
                transactionIndex: number | null;
                typeHex: `0x${string}` | null;
                gasPrice: bigint;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas?: undefined;
                maxPriorityFeePerGas?: undefined;
                accessList?: undefined;
                blobVersionedHashes?: undefined;
                chainId?: number | undefined;
                yParity?: undefined;
                type: "legacy";
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            } | {
                r: `0x${string}`;
                s: `0x${string}`;
                v: bigint;
                to: `0x${string}` | null;
                from: `0x${string}`;
                gas: bigint;
                nonce: number;
                value: bigint;
                blockHash: `0x${string}` | null;
                blockNumber: bigint | null;
                hash: `0x${string}`;
                input: `0x${string}`;
                transactionIndex: number | null;
                typeHex: `0x${string}` | null;
                gasPrice: undefined;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas: bigint;
                maxPriorityFeePerGas: bigint;
                accessList?: undefined;
                blobVersionedHashes?: undefined;
                chainId?: number | undefined;
                yParity: number;
                type: "deposit";
                isSystemTx?: boolean | undefined;
                mint?: bigint | undefined;
                sourceHash: `0x${string}`;
            } | {
                blockHash: `0x${string}` | null;
                blockNumber: bigint | null;
                from: `0x${string}`;
                gas: bigint;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: number;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: number | null;
                typeHex: `0x${string}` | null;
                v: bigint;
                value: bigint;
                yParity: number;
                gasPrice: bigint;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas?: undefined;
                maxPriorityFeePerGas?: undefined;
                accessList: viem.AccessList;
                blobVersionedHashes?: undefined;
                chainId: number;
                type: "eip2930";
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            } | {
                blockHash: `0x${string}` | null;
                blockNumber: bigint | null;
                from: `0x${string}`;
                gas: bigint;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: number;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: number | null;
                typeHex: `0x${string}` | null;
                v: bigint;
                value: bigint;
                yParity: number;
                gasPrice: undefined;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas: bigint;
                maxPriorityFeePerGas: bigint;
                accessList: viem.AccessList;
                blobVersionedHashes?: undefined;
                chainId: number;
                type: "eip1559";
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            } | {
                blockHash: `0x${string}` | null;
                blockNumber: bigint | null;
                from: `0x${string}`;
                gas: bigint;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: number;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: number | null;
                typeHex: `0x${string}` | null;
                v: bigint;
                value: bigint;
                yParity: number;
                gasPrice: undefined;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas: bigint;
                maxPriorityFeePerGas: bigint;
                accessList: viem.AccessList;
                blobVersionedHashes?: undefined;
                chainId: number;
                type: "deposit";
                isSystemTx?: boolean | undefined;
                mint?: bigint | undefined;
                sourceHash: `0x${string}`;
            } | {
                blockHash: `0x${string}` | null;
                blockNumber: bigint | null;
                from: `0x${string}`;
                gas: bigint;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: number;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: number | null;
                typeHex: `0x${string}` | null;
                v: bigint;
                value: bigint;
                yParity: number;
                gasPrice: bigint;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas: undefined;
                maxPriorityFeePerGas: undefined;
                accessList: viem.AccessList;
                blobVersionedHashes?: undefined;
                chainId: number;
                type: "eip2930";
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            } | {
                blockHash: `0x${string}` | null;
                blockNumber: bigint | null;
                from: `0x${string}`;
                gas: bigint;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: number;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: number | null;
                typeHex: `0x${string}` | null;
                v: bigint;
                value: bigint;
                yParity: number;
                gasPrice?: undefined;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas: bigint;
                maxPriorityFeePerGas: bigint;
                accessList: viem.AccessList;
                blobVersionedHashes?: undefined;
                chainId: number;
                type: "eip1559";
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            } | {
                blockHash: `0x${string}` | null;
                blockNumber: bigint | null;
                from: `0x${string}`;
                gas: bigint;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: number;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: number | null;
                typeHex: `0x${string}` | null;
                v: bigint;
                value: bigint;
                yParity: number;
                gasPrice?: undefined;
                maxFeePerBlobGas?: undefined;
                maxFeePerGas: bigint;
                maxPriorityFeePerGas: bigint;
                accessList: viem.AccessList;
                blobVersionedHashes?: undefined;
                chainId: number;
                type: "deposit";
                isSystemTx?: boolean | undefined;
                mint?: bigint | undefined;
                sourceHash: `0x${string}`;
            } | {
                blockHash: `0x${string}` | null;
                blockNumber: bigint | null;
                from: `0x${string}`;
                gas: bigint;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: number;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: number | null;
                typeHex: `0x${string}` | null;
                v: bigint;
                value: bigint;
                yParity: number;
                gasPrice?: undefined;
                maxFeePerBlobGas: bigint;
                maxFeePerGas: bigint;
                maxPriorityFeePerGas: bigint;
                accessList: viem.AccessList;
                blobVersionedHashes: `0x${string}`[];
                chainId: number;
                type: "eip4844";
                isSystemTx?: undefined;
                mint?: undefined;
                sourceHash?: undefined;
            } | {
                blockHash: `0x${string}` | null;
                blockNumber: bigint | null;
                from: `0x${string}`;
                gas: bigint;
                hash: `0x${string}`;
                input: `0x${string}`;
                nonce: number;
                r: `0x${string}`;
                s: `0x${string}`;
                to: `0x${string}` | null;
                transactionIndex: number | null;
                typeHex: `0x${string}` | null;
                v: bigint;
                value: bigint;
                yParity: number;
                gasPrice?: undefined;
                maxFeePerBlobGas: undefined;
                maxFeePerGas: bigint;
                maxPriorityFeePerGas: bigint;
                accessList: viem.AccessList;
                blobVersionedHashes: `0x${string}`[];
                chainId: number;
                type: "deposit";
                isSystemTx?: boolean | undefined;
                mint?: bigint | undefined;
                sourceHash: `0x${string}`;
            };
            type: "transaction";
        };
        readonly transactionReceipt: {
            exclude: [] | undefined;
            format: (args: viem_chains.Assign<viem.ExactPartial<viem.RpcTransactionReceipt>, viem_op_stack.OpStackRpcTransactionReceiptOverrides>) => {
                blobGasPrice?: bigint | undefined;
                blobGasUsed?: bigint | undefined;
                blockHash: `0x${string}`;
                blockNumber: bigint;
                contractAddress: `0x${string}` | null | undefined;
                cumulativeGasUsed: bigint;
                effectiveGasPrice: bigint;
                from: `0x${string}`;
                gasUsed: bigint;
                logs: viem.Log<bigint, number, false, undefined, undefined, undefined, undefined>[];
                logsBloom: `0x${string}`;
                root?: `0x${string}` | undefined;
                status: "success" | "reverted";
                to: `0x${string}` | null;
                transactionHash: `0x${string}`;
                transactionIndex: number;
                type: viem.TransactionType;
                l1GasPrice: bigint | null;
                l1GasUsed: bigint | null;
                l1Fee: bigint | null;
                l1FeeScalar: number | null;
            };
            type: "transactionReceipt";
        };
    };
    readonly serializers: {
        readonly transaction: typeof viem_op_stack.serializeTransaction;
    };
};

export { MUDChain, garnet, latticeTestnet, mudFoundry, redstone };
