• Type Parameters

    • K1 extends "Mainnet" | "Testnet"

    • K2 extends string | number | symbol

    Parameters

    • args_0: K1
    • args_1: K2

    Returns (K1 extends bigint
            ? `bigint(${K1})`
            : K1 extends boolean
                ? `boolean(${K1})`
                : K1) extends "Mainnet" | "Testnet"
        ? {
                Mainnet: {
                    Aptos: {
                        baseUrl: "https://explorer.aptoslabs.com/";
                        endpoints: {
                            account: "account/";
                            tx: "txn/";
                        };
                        name: "Aptos Explorer";
                    };
                    Avalanche: {
                        baseUrl: "https://snowtrace.io/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "Snowtrace";
                    };
                    Bsc: {
                        baseUrl: "https://bscscan.com/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "BscScan";
                    };
                    Celo: {
                        baseUrl: "https://explorer.celo.org/mainnet/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "Celo Explorer";
                    };
                    Ethereum: {
                        baseUrl: "https://etherscan.io/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "Etherscan";
                    };
                    Fantom: {
                        baseUrl: "https://ftmscan.com/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "FTMscan";
                    };
                    Moonbeam: {
                        baseUrl: "https://moonscan.io/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "Moonscan";
                    };
                    Polygon: {
                        baseUrl: "https://polygonscan.com/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "PolygonScan";
                    };
                    Sei: {
                        baseUrl: "https://sei.explorers.guru/";
                        endpoints: {
                            account: "address/";
                            tx: "transaction/";
                        };
                        name: "Sei Explorer";
                    };
                    Solana: {
                        baseUrl: "https://explorer.solana.com/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "Solana Explorer";
                    };
                    Sui: {
                        baseUrl: "https://explorer.sui.io/";
                        endpoints: {
                            account: "address/";
                            tx: "txblock/";
                        };
                        name: "Sui Explorer";
                    };
                };
                Testnet: {
                    Aptos: {
                        baseUrl: "https://explorer.aptoslabs.com/";
                        endpoints: {
                            account: "account/";
                            tx: "txn/";
                        };
                        name: "Aptos Explorer";
                        networkQuery: {
                            Devnet: "?network=devnet";
                            Testnet: "?network=testnet";
                            default: "Testnet";
                        };
                    };
                    Avalanche: {
                        baseUrl: "https://testnet.snowtrace.io/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "Snowtrace";
                    };
                    Bsc: {
                        baseUrl: "https://testnet.bscscan.com/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "BscScan";
                    };
                    Celo: {
                        baseUrl: "https://explorer.celo.org/alfajores/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "Celo Explorer";
                    };
                    Ethereum: {
                        baseUrl: "https://goerli.etherscan.io/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "Etherscan";
                    };
                    Fantom: {
                        baseUrl: "https://testnet.ftmscan.com/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "FTMscan";
                    };
                    Moonbeam: {
                        baseUrl: "https://moonbase.moonscan.io/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "Moonscan";
                    };
                    Polygon: {
                        baseUrl: "https://mumbai.polygonscan.com/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "PolygonScan";
                    };
                    Sei: {
                        baseUrl: "https://sei.explorers.guru/";
                        endpoints: {
                            account: "address/";
                            tx: "transaction/";
                        };
                        name: "Sei Explorer";
                    };
                    Solana: {
                        baseUrl: "https://explorer.solana.com/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "Solana Explorer";
                        networkQuery: {
                            Devnet: "?cluster=devnet";
                            Testnet: "?cluster=testnet";
                            default: "Devnet";
                        };
                    };
                    Sui: {
                        baseUrl: "https://explorer.sui.io/";
                        endpoints: {
                            account: "address/";
                            tx: "txblock/";
                        };
                        name: "Sui Explorer";
                        networkQuery: {
                            Devnet: "?network=devnet";
                            Testnet: "?network=testnet";
                            default: "Testnet";
                        };
                    };
                };
            }[Object] extends {
                [key: string]: unknown;
            }
            ? (K2 extends bigint
                    ? `bigint(${K2})`
                    : K2 extends boolean
                        ? `boolean(${K2})`
                        : K2) extends keyof {
                    Mainnet: {
                        Aptos: {
                            baseUrl: "https://explorer.aptoslabs.com/";
                            endpoints: {
                                account: "account/";
                                tx: "txn/";
                            };
                            name: "Aptos Explorer";
                        };
                        Avalanche: {
                            baseUrl: "https://snowtrace.io/";
                            endpoints: {
                                account: "address/";
                                tx: "tx/";
                            };
                            name: "Snowtrace";
                        };
                        Bsc: {
                            baseUrl: "https://bscscan.com/";
                            endpoints: {
                                account: "address/";
                                tx: "tx/";
                            };
                            name: "BscScan";
                        };
                        Celo: {
                            baseUrl: "https://explorer.celo.org/mainnet/";
                            endpoints: {
                                account: "address/";
                                tx: "tx/";
                            };
                            name: "Celo Explorer";
                        };
                        Ethereum: {
                            baseUrl: "https://etherscan.io/";
                            endpoints: {
                                account: "address/";
                                tx: "tx/";
                            };
                            name: "Etherscan";
                        };
                        Fantom: {
                            baseUrl: "https://ftmscan.com/";
                            endpoints: {
                                account: "address/";
                                tx: "tx/";
                            };
                            name: "FTMscan";
                        };
                        Moonbeam: {
                            baseUrl: "https://moonscan.io/";
                            endpoints: {
                                account: "address/";
                                tx: "tx/";
                            };
                            name: "Moonscan";
                        };
                        Polygon: {
                            baseUrl: "https://polygonscan.com/";
                            endpoints: {
                                account: "address/";
                                tx: "tx/";
                            };
                            name: "PolygonScan";
                        };
                        Sei: {
                            baseUrl: "https://sei.explorers.guru/";
                            endpoints: {
                                account: "address/";
                                tx: "transaction/";
                            };
                            name: "Sei Explorer";
                        };
                        Solana: {
                            baseUrl: "https://explorer.solana.com/";
                            endpoints: {
                                account: "address/";
                                tx: "tx/";
                            };
                            name: "Solana Explorer";
                        };
                        Sui: {
                            baseUrl: "https://explorer.sui.io/";
                            endpoints: {
                                account: "address/";
                                tx: "txblock/";
                            };
                            name: "Sui Explorer";
                        };
                    };
                    Testnet: {
                        Aptos: {
                            baseUrl: "https://explorer.aptoslabs.com/";
                            endpoints: {
                                account: "account/";
                                tx: "txn/";
                            };
                            name: "Aptos Explorer";
                            networkQuery: {
                                Devnet: "?network=devnet";
                                Testnet: "?network=testnet";
                                default: "Testnet";
                            };
                        };
                        Avalanche: {
                            baseUrl: "https://testnet.snowtrace.io/";
                            endpoints: {
                                account: "address/";
                                tx: "tx/";
                            };
                            name: "Snowtrace";
                        };
                        Bsc: {
                            baseUrl: "https://testnet.bscscan.com/";
                            endpoints: {
                                account: "address/";
                                tx: "tx/";
                            };
                            name: "BscScan";
                        };
                        Celo: {
                            baseUrl: "https://explorer.celo.org/alfajores/";
                            endpoints: {
                                account: "address/";
                                tx: "tx/";
                            };
                            name: "Celo Explorer";
                        };
                        Ethereum: {
                            baseUrl: "https://goerli.etherscan.io/";
                            endpoints: {
                                account: "address/";
                                tx: "tx/";
                            };
                            name: "Etherscan";
                        };
                        Fantom: {
                            baseUrl: "https://testnet.ftmscan.com/";
                            endpoints: {
                                account: "address/";
                                tx: "tx/";
                            };
                            name: "FTMscan";
                        };
                        Moonbeam: {
                            baseUrl: "https://moonbase.moonscan.io/";
                            endpoints: {
                                account: "address/";
                                tx: "tx/";
                            };
                            name: "Moonscan";
                        };
                        Polygon: {
                            baseUrl: "https://mumbai.polygonscan.com/";
                            endpoints: {
                                account: "address/";
                                tx: "tx/";
                            };
                            name: "PolygonScan";
                        };
                        Sei: {
                            baseUrl: "https://sei.explorers.guru/";
                            endpoints: {
                                account: "address/";
                                tx: "transaction/";
                            };
                            name: "Sei Explorer";
                        };
                        Solana: {
                            baseUrl: "https://explorer.solana.com/";
                            endpoints: {
                                account: "address/";
                                tx: "tx/";
                            };
                            name: "Solana Explorer";
                            networkQuery: {
                                Devnet: "?cluster=devnet";
                                Testnet: "?cluster=testnet";
                                default: "Devnet";
                            };
                        };
                        Sui: {
                            baseUrl: "https://explorer.sui.io/";
                            endpoints: {
                                account: "address/";
                                tx: "txblock/";
                            };
                            name: "Sui Explorer";
                            networkQuery: {
                                Devnet: "?network=devnet";
                                Testnet: "?network=testnet";
                                default: "Testnet";
                            };
                        };
                    };
                }[Object]
                ? {
                        Mainnet: {
                            Aptos: {
                                baseUrl: "https://explorer.aptoslabs.com/";
                                endpoints: {
                                    account: "account/";
                                    tx: "txn/";
                                };
                                name: "Aptos Explorer";
                            };
                            Avalanche: {
                                baseUrl: "https://snowtrace.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Snowtrace";
                            };
                            Bsc: {
                                baseUrl: "https://bscscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "BscScan";
                            };
                            Celo: {
                                baseUrl: "https://explorer.celo.org/mainnet/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Celo Explorer";
                            };
                            Ethereum: {
                                baseUrl: "https://etherscan.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Etherscan";
                            };
                            Fantom: {
                                baseUrl: "https://ftmscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "FTMscan";
                            };
                            Moonbeam: {
                                baseUrl: "https://moonscan.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Moonscan";
                            };
                            Polygon: {
                                baseUrl: "https://polygonscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "PolygonScan";
                            };
                            Sei: {
                                baseUrl: "https://sei.explorers.guru/";
                                endpoints: {
                                    account: "address/";
                                    tx: "transaction/";
                                };
                                name: "Sei Explorer";
                            };
                            Solana: {
                                baseUrl: "https://explorer.solana.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Solana Explorer";
                            };
                            Sui: {
                                baseUrl: "https://explorer.sui.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "txblock/";
                                };
                                name: "Sui Explorer";
                            };
                        };
                        Testnet: {
                            Aptos: {
                                baseUrl: "https://explorer.aptoslabs.com/";
                                endpoints: {
                                    account: "account/";
                                    tx: "txn/";
                                };
                                name: "Aptos Explorer";
                                networkQuery: {
                                    Devnet: "?network=devnet";
                                    Testnet: "?network=testnet";
                                    default: "Testnet";
                                };
                            };
                            Avalanche: {
                                baseUrl: "https://testnet.snowtrace.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Snowtrace";
                            };
                            Bsc: {
                                baseUrl: "https://testnet.bscscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "BscScan";
                            };
                            Celo: {
                                baseUrl: "https://explorer.celo.org/alfajores/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Celo Explorer";
                            };
                            Ethereum: {
                                baseUrl: "https://goerli.etherscan.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Etherscan";
                            };
                            Fantom: {
                                baseUrl: "https://testnet.ftmscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "FTMscan";
                            };
                            Moonbeam: {
                                baseUrl: "https://moonbase.moonscan.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Moonscan";
                            };
                            Polygon: {
                                baseUrl: "https://mumbai.polygonscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "PolygonScan";
                            };
                            Sei: {
                                baseUrl: "https://sei.explorers.guru/";
                                endpoints: {
                                    account: "address/";
                                    tx: "transaction/";
                                };
                                name: "Sei Explorer";
                            };
                            Solana: {
                                baseUrl: "https://explorer.solana.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Solana Explorer";
                                networkQuery: {
                                    Devnet: "?cluster=devnet";
                                    Testnet: "?cluster=testnet";
                                    default: "Devnet";
                                };
                            };
                            Sui: {
                                baseUrl: "https://explorer.sui.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "txblock/";
                                };
                                name: "Sui Explorer";
                                networkQuery: {
                                    Devnet: "?network=devnet";
                                    Testnet: "?network=testnet";
                                    default: "Testnet";
                                };
                            };
                        };
                    }[Object][keyof {
                        Mainnet: {
                            Aptos: {
                                baseUrl: "https://explorer.aptoslabs.com/";
                                endpoints: {
                                    account: "account/";
                                    tx: "txn/";
                                };
                                name: "Aptos Explorer";
                            };
                            Avalanche: {
                                baseUrl: "https://snowtrace.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Snowtrace";
                            };
                            Bsc: {
                                baseUrl: "https://bscscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "BscScan";
                            };
                            Celo: {
                                baseUrl: "https://explorer.celo.org/mainnet/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Celo Explorer";
                            };
                            Ethereum: {
                                baseUrl: "https://etherscan.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Etherscan";
                            };
                            Fantom: {
                                baseUrl: "https://ftmscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "FTMscan";
                            };
                            Moonbeam: {
                                baseUrl: "https://moonscan.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Moonscan";
                            };
                            Polygon: {
                                baseUrl: "https://polygonscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "PolygonScan";
                            };
                            Sei: {
                                baseUrl: "https://sei.explorers.guru/";
                                endpoints: {
                                    account: "address/";
                                    tx: "transaction/";
                                };
                                name: "Sei Explorer";
                            };
                            Solana: {
                                baseUrl: "https://explorer.solana.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Solana Explorer";
                            };
                            Sui: {
                                baseUrl: "https://explorer.sui.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "txblock/";
                                };
                                name: "Sui Explorer";
                            };
                        };
                        Testnet: {
                            Aptos: {
                                baseUrl: "https://explorer.aptoslabs.com/";
                                endpoints: {
                                    account: "account/";
                                    tx: "txn/";
                                };
                                name: "Aptos Explorer";
                                networkQuery: {
                                    Devnet: "?network=devnet";
                                    Testnet: "?network=testnet";
                                    default: "Testnet";
                                };
                            };
                            Avalanche: {
                                baseUrl: "https://testnet.snowtrace.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Snowtrace";
                            };
                            Bsc: {
                                baseUrl: "https://testnet.bscscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "BscScan";
                            };
                            Celo: {
                                baseUrl: "https://explorer.celo.org/alfajores/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Celo Explorer";
                            };
                            Ethereum: {
                                baseUrl: "https://goerli.etherscan.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Etherscan";
                            };
                            Fantom: {
                                baseUrl: "https://testnet.ftmscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "FTMscan";
                            };
                            Moonbeam: {
                                baseUrl: "https://moonbase.moonscan.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Moonscan";
                            };
                            Polygon: {
                                baseUrl: "https://mumbai.polygonscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "PolygonScan";
                            };
                            Sei: {
                                baseUrl: "https://sei.explorers.guru/";
                                endpoints: {
                                    account: "address/";
                                    tx: "transaction/";
                                };
                                name: "Sei Explorer";
                            };
                            Solana: {
                                baseUrl: "https://explorer.solana.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Solana Explorer";
                                networkQuery: {
                                    Devnet: "?cluster=devnet";
                                    Testnet: "?cluster=testnet";
                                    default: "Devnet";
                                };
                            };
                            Sui: {
                                baseUrl: "https://explorer.sui.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "txblock/";
                                };
                                name: "Sui Explorer";
                                networkQuery: {
                                    Devnet: "?network=devnet";
                                    Testnet: "?network=testnet";
                                    default: "Testnet";
                                };
                            };
                        };
                    }[Object] & (K2 extends bigint
                        ? `bigint(${K2})`
                        : K2 extends boolean
                            ? `boolean(${K2})`
                            : K2)] extends {
                        [key: string]: unknown;
                    }
                    ? {
                        Mainnet: {
                            Aptos: {
                                baseUrl: "https://explorer.aptoslabs.com/";
                                endpoints: {
                                    account: "account/";
                                    tx: "txn/";
                                };
                                name: "Aptos Explorer";
                            };
                            Avalanche: {
                                baseUrl: "https://snowtrace.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Snowtrace";
                            };
                            Bsc: {
                                baseUrl: "https://bscscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "BscScan";
                            };
                            Celo: {
                                baseUrl: "https://explorer.celo.org/mainnet/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Celo Explorer";
                            };
                            Ethereum: {
                                baseUrl: "https://etherscan.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Etherscan";
                            };
                            Fantom: {
                                baseUrl: "https://ftmscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "FTMscan";
                            };
                            Moonbeam: {
                                baseUrl: "https://moonscan.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Moonscan";
                            };
                            Polygon: {
                                baseUrl: "https://polygonscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "PolygonScan";
                            };
                            Sei: {
                                baseUrl: "https://sei.explorers.guru/";
                                endpoints: {
                                    account: "address/";
                                    tx: "transaction/";
                                };
                                name: "Sei Explorer";
                            };
                            Solana: {
                                baseUrl: "https://explorer.solana.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Solana Explorer";
                            };
                            Sui: {
                                baseUrl: "https://explorer.sui.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "txblock/";
                                };
                                name: "Sui Explorer";
                            };
                        };
                        Testnet: {
                            Aptos: {
                                baseUrl: "https://explorer.aptoslabs.com/";
                                endpoints: {
                                    account: "account/";
                                    tx: "txn/";
                                };
                                name: "Aptos Explorer";
                                networkQuery: {
                                    Devnet: "?network=devnet";
                                    Testnet: "?network=testnet";
                                    default: "Testnet";
                                };
                            };
                            Avalanche: {
                                baseUrl: "https://testnet.snowtrace.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Snowtrace";
                            };
                            Bsc: {
                                baseUrl: "https://testnet.bscscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "BscScan";
                            };
                            Celo: {
                                baseUrl: "https://explorer.celo.org/alfajores/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Celo Explorer";
                            };
                            Ethereum: {
                                baseUrl: "https://goerli.etherscan.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Etherscan";
                            };
                            Fantom: {
                                baseUrl: "https://testnet.ftmscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "FTMscan";
                            };
                            Moonbeam: {
                                baseUrl: "https://moonbase.moonscan.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Moonscan";
                            };
                            Polygon: {
                                baseUrl: "https://mumbai.polygonscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "PolygonScan";
                            };
                            Sei: {
                                baseUrl: "https://sei.explorers.guru/";
                                endpoints: {
                                    account: "address/";
                                    tx: "transaction/";
                                };
                                name: "Sei Explorer";
                            };
                            Solana: {
                                baseUrl: "https://explorer.solana.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Solana Explorer";
                                networkQuery: {
                                    Devnet: "?cluster=devnet";
                                    Testnet: "?cluster=testnet";
                                    default: "Devnet";
                                };
                            };
                            Sui: {
                                baseUrl: "https://explorer.sui.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "txblock/";
                                };
                                name: "Sui Explorer";
                                networkQuery: {
                                    Devnet: "?network=devnet";
                                    Testnet: "?network=testnet";
                                    default: "Testnet";
                                };
                            };
                        };
                    }[Object][keyof {
                        Mainnet: {
                            Aptos: {
                                baseUrl: "https://explorer.aptoslabs.com/";
                                endpoints: {
                                    account: "account/";
                                    tx: "txn/";
                                };
                                name: "Aptos Explorer";
                            };
                            Avalanche: {
                                baseUrl: "https://snowtrace.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Snowtrace";
                            };
                            Bsc: {
                                baseUrl: "https://bscscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "BscScan";
                            };
                            Celo: {
                                baseUrl: "https://explorer.celo.org/mainnet/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Celo Explorer";
                            };
                            Ethereum: {
                                baseUrl: "https://etherscan.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Etherscan";
                            };
                            Fantom: {
                                baseUrl: "https://ftmscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "FTMscan";
                            };
                            Moonbeam: {
                                baseUrl: "https://moonscan.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Moonscan";
                            };
                            Polygon: {
                                baseUrl: "https://polygonscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "PolygonScan";
                            };
                            Sei: {
                                baseUrl: "https://sei.explorers.guru/";
                                endpoints: {
                                    account: "address/";
                                    tx: "transaction/";
                                };
                                name: "Sei Explorer";
                            };
                            Solana: {
                                baseUrl: "https://explorer.solana.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Solana Explorer";
                            };
                            Sui: {
                                baseUrl: "https://explorer.sui.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "txblock/";
                                };
                                name: "Sui Explorer";
                            };
                        };
                        Testnet: {
                            Aptos: {
                                baseUrl: "https://explorer.aptoslabs.com/";
                                endpoints: {
                                    account: "account/";
                                    tx: "txn/";
                                };
                                name: "Aptos Explorer";
                                networkQuery: {
                                    Devnet: "?network=devnet";
                                    Testnet: "?network=testnet";
                                    default: "Testnet";
                                };
                            };
                            Avalanche: {
                                baseUrl: "https://testnet.snowtrace.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Snowtrace";
                            };
                            Bsc: {
                                baseUrl: "https://testnet.bscscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "BscScan";
                            };
                            Celo: {
                                baseUrl: "https://explorer.celo.org/alfajores/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Celo Explorer";
                            };
                            Ethereum: {
                                baseUrl: "https://goerli.etherscan.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Etherscan";
                            };
                            Fantom: {
                                baseUrl: "https://testnet.ftmscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "FTMscan";
                            };
                            Moonbeam: {
                                baseUrl: "https://moonbase.moonscan.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Moonscan";
                            };
                            Polygon: {
                                baseUrl: "https://mumbai.polygonscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "PolygonScan";
                            };
                            Sei: {
                                baseUrl: "https://sei.explorers.guru/";
                                endpoints: {
                                    account: "address/";
                                    tx: "transaction/";
                                };
                                name: "Sei Explorer";
                            };
                            Solana: {
                                baseUrl: "https://explorer.solana.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Solana Explorer";
                                networkQuery: {
                                    Devnet: "?cluster=devnet";
                                    Testnet: "?cluster=testnet";
                                    default: "Devnet";
                                };
                            };
                            Sui: {
                                baseUrl: "https://explorer.sui.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "txblock/";
                                };
                                name: "Sui Explorer";
                                networkQuery: {
                                    Devnet: "?network=devnet";
                                    Testnet: "?network=testnet";
                                    default: "Testnet";
                                };
                            };
                        };
                    }[Object] & (K2 extends bigint
                        ? `bigint(${K2})`
                        : K2 extends boolean
                            ? `boolean(${K2})`
                            : K2)]
                    : {
                        Mainnet: {
                            Aptos: {
                                baseUrl: "https://explorer.aptoslabs.com/";
                                endpoints: {
                                    account: "account/";
                                    tx: "txn/";
                                };
                                name: "Aptos Explorer";
                            };
                            Avalanche: {
                                baseUrl: "https://snowtrace.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Snowtrace";
                            };
                            Bsc: {
                                baseUrl: "https://bscscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "BscScan";
                            };
                            Celo: {
                                baseUrl: "https://explorer.celo.org/mainnet/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Celo Explorer";
                            };
                            Ethereum: {
                                baseUrl: "https://etherscan.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Etherscan";
                            };
                            Fantom: {
                                baseUrl: "https://ftmscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "FTMscan";
                            };
                            Moonbeam: {
                                baseUrl: "https://moonscan.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Moonscan";
                            };
                            Polygon: {
                                baseUrl: "https://polygonscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "PolygonScan";
                            };
                            Sei: {
                                baseUrl: "https://sei.explorers.guru/";
                                endpoints: {
                                    account: "address/";
                                    tx: "transaction/";
                                };
                                name: "Sei Explorer";
                            };
                            Solana: {
                                baseUrl: "https://explorer.solana.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Solana Explorer";
                            };
                            Sui: {
                                baseUrl: "https://explorer.sui.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "txblock/";
                                };
                                name: "Sui Explorer";
                            };
                        };
                        Testnet: {
                            Aptos: {
                                baseUrl: "https://explorer.aptoslabs.com/";
                                endpoints: {
                                    account: "account/";
                                    tx: "txn/";
                                };
                                name: "Aptos Explorer";
                                networkQuery: {
                                    Devnet: "?network=devnet";
                                    Testnet: "?network=testnet";
                                    default: "Testnet";
                                };
                            };
                            Avalanche: {
                                baseUrl: "https://testnet.snowtrace.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Snowtrace";
                            };
                            Bsc: {
                                baseUrl: "https://testnet.bscscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "BscScan";
                            };
                            Celo: {
                                baseUrl: "https://explorer.celo.org/alfajores/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Celo Explorer";
                            };
                            Ethereum: {
                                baseUrl: "https://goerli.etherscan.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Etherscan";
                            };
                            Fantom: {
                                baseUrl: "https://testnet.ftmscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "FTMscan";
                            };
                            Moonbeam: {
                                baseUrl: "https://moonbase.moonscan.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Moonscan";
                            };
                            Polygon: {
                                baseUrl: "https://mumbai.polygonscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "PolygonScan";
                            };
                            Sei: {
                                baseUrl: "https://sei.explorers.guru/";
                                endpoints: {
                                    account: "address/";
                                    tx: "transaction/";
                                };
                                name: "Sei Explorer";
                            };
                            Solana: {
                                baseUrl: "https://explorer.solana.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Solana Explorer";
                                networkQuery: {
                                    Devnet: "?cluster=devnet";
                                    Testnet: "?cluster=testnet";
                                    default: "Devnet";
                                };
                            };
                            Sui: {
                                baseUrl: "https://explorer.sui.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "txblock/";
                                };
                                name: "Sui Explorer";
                                networkQuery: {
                                    Devnet: "?network=devnet";
                                    Testnet: "?network=testnet";
                                    default: "Testnet";
                                };
                            };
                        };
                    }[Object][keyof {
                        Mainnet: {
                            Aptos: {
                                baseUrl: "https://explorer.aptoslabs.com/";
                                endpoints: {
                                    account: "account/";
                                    tx: "txn/";
                                };
                                name: "Aptos Explorer";
                            };
                            Avalanche: {
                                baseUrl: "https://snowtrace.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Snowtrace";
                            };
                            Bsc: {
                                baseUrl: "https://bscscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "BscScan";
                            };
                            Celo: {
                                baseUrl: "https://explorer.celo.org/mainnet/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Celo Explorer";
                            };
                            Ethereum: {
                                baseUrl: "https://etherscan.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Etherscan";
                            };
                            Fantom: {
                                baseUrl: "https://ftmscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "FTMscan";
                            };
                            Moonbeam: {
                                baseUrl: "https://moonscan.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Moonscan";
                            };
                            Polygon: {
                                baseUrl: "https://polygonscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "PolygonScan";
                            };
                            Sei: {
                                baseUrl: "https://sei.explorers.guru/";
                                endpoints: {
                                    account: "address/";
                                    tx: "transaction/";
                                };
                                name: "Sei Explorer";
                            };
                            Solana: {
                                baseUrl: "https://explorer.solana.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Solana Explorer";
                            };
                            Sui: {
                                baseUrl: "https://explorer.sui.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "txblock/";
                                };
                                name: "Sui Explorer";
                            };
                        };
                        Testnet: {
                            Aptos: {
                                baseUrl: "https://explorer.aptoslabs.com/";
                                endpoints: {
                                    account: "account/";
                                    tx: "txn/";
                                };
                                name: "Aptos Explorer";
                                networkQuery: {
                                    Devnet: "?network=devnet";
                                    Testnet: "?network=testnet";
                                    default: "Testnet";
                                };
                            };
                            Avalanche: {
                                baseUrl: "https://testnet.snowtrace.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Snowtrace";
                            };
                            Bsc: {
                                baseUrl: "https://testnet.bscscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "BscScan";
                            };
                            Celo: {
                                baseUrl: "https://explorer.celo.org/alfajores/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Celo Explorer";
                            };
                            Ethereum: {
                                baseUrl: "https://goerli.etherscan.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Etherscan";
                            };
                            Fantom: {
                                baseUrl: "https://testnet.ftmscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "FTMscan";
                            };
                            Moonbeam: {
                                baseUrl: "https://moonbase.moonscan.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Moonscan";
                            };
                            Polygon: {
                                baseUrl: "https://mumbai.polygonscan.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "PolygonScan";
                            };
                            Sei: {
                                baseUrl: "https://sei.explorers.guru/";
                                endpoints: {
                                    account: "address/";
                                    tx: "transaction/";
                                };
                                name: "Sei Explorer";
                            };
                            Solana: {
                                baseUrl: "https://explorer.solana.com/";
                                endpoints: {
                                    account: "address/";
                                    tx: "tx/";
                                };
                                name: "Solana Explorer";
                                networkQuery: {
                                    Devnet: "?cluster=devnet";
                                    Testnet: "?cluster=testnet";
                                    default: "Devnet";
                                };
                            };
                            Sui: {
                                baseUrl: "https://explorer.sui.io/";
                                endpoints: {
                                    account: "address/";
                                    tx: "txblock/";
                                };
                                name: "Sui Explorer";
                                networkQuery: {
                                    Devnet: "?network=devnet";
                                    Testnet: "?network=testnet";
                                    default: "Testnet";
                                };
                            };
                        };
                    }[Object] & (K2 extends bigint
                        ? `bigint(${K2})`
                        : K2 extends boolean
                            ? `boolean(${K2})`
                            : K2)]
                : never
            : {
                Mainnet: {
                    Aptos: {
                        baseUrl: "https://explorer.aptoslabs.com/";
                        endpoints: {
                            account: "account/";
                            tx: "txn/";
                        };
                        name: "Aptos Explorer";
                    };
                    Avalanche: {
                        baseUrl: "https://snowtrace.io/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "Snowtrace";
                    };
                    Bsc: {
                        baseUrl: "https://bscscan.com/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "BscScan";
                    };
                    Celo: {
                        baseUrl: "https://explorer.celo.org/mainnet/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "Celo Explorer";
                    };
                    Ethereum: {
                        baseUrl: "https://etherscan.io/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "Etherscan";
                    };
                    Fantom: {
                        baseUrl: "https://ftmscan.com/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "FTMscan";
                    };
                    Moonbeam: {
                        baseUrl: "https://moonscan.io/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "Moonscan";
                    };
                    Polygon: {
                        baseUrl: "https://polygonscan.com/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "PolygonScan";
                    };
                    Sei: {
                        baseUrl: "https://sei.explorers.guru/";
                        endpoints: {
                            account: "address/";
                            tx: "transaction/";
                        };
                        name: "Sei Explorer";
                    };
                    Solana: {
                        baseUrl: "https://explorer.solana.com/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "Solana Explorer";
                    };
                    Sui: {
                        baseUrl: "https://explorer.sui.io/";
                        endpoints: {
                            account: "address/";
                            tx: "txblock/";
                        };
                        name: "Sui Explorer";
                    };
                };
                Testnet: {
                    Aptos: {
                        baseUrl: "https://explorer.aptoslabs.com/";
                        endpoints: {
                            account: "account/";
                            tx: "txn/";
                        };
                        name: "Aptos Explorer";
                        networkQuery: {
                            Devnet: "?network=devnet";
                            Testnet: "?network=testnet";
                            default: "Testnet";
                        };
                    };
                    Avalanche: {
                        baseUrl: "https://testnet.snowtrace.io/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "Snowtrace";
                    };
                    Bsc: {
                        baseUrl: "https://testnet.bscscan.com/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "BscScan";
                    };
                    Celo: {
                        baseUrl: "https://explorer.celo.org/alfajores/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "Celo Explorer";
                    };
                    Ethereum: {
                        baseUrl: "https://goerli.etherscan.io/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "Etherscan";
                    };
                    Fantom: {
                        baseUrl: "https://testnet.ftmscan.com/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "FTMscan";
                    };
                    Moonbeam: {
                        baseUrl: "https://moonbase.moonscan.io/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "Moonscan";
                    };
                    Polygon: {
                        baseUrl: "https://mumbai.polygonscan.com/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "PolygonScan";
                    };
                    Sei: {
                        baseUrl: "https://sei.explorers.guru/";
                        endpoints: {
                            account: "address/";
                            tx: "transaction/";
                        };
                        name: "Sei Explorer";
                    };
                    Solana: {
                        baseUrl: "https://explorer.solana.com/";
                        endpoints: {
                            account: "address/";
                            tx: "tx/";
                        };
                        name: "Solana Explorer";
                        networkQuery: {
                            Devnet: "?cluster=devnet";
                            Testnet: "?cluster=testnet";
                            default: "Devnet";
                        };
                    };
                    Sui: {
                        baseUrl: "https://explorer.sui.io/";
                        endpoints: {
                            account: "address/";
                            tx: "txblock/";
                        };
                        name: "Sui Explorer";
                        networkQuery: {
                            Devnet: "?network=devnet";
                            Testnet: "?network=testnet";
                            default: "Testnet";
                        };
                    };
                };
            }[Object]
        : never

Generated using TypeDoc