"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getDefaultProvider = void 0; const index_js_1 = require("../utils/index.js"); const provider_ankr_js_1 = require("./provider-ankr.js"); const provider_alchemy_js_1 = require("./provider-alchemy.js"); const provider_cloudflare_js_1 = require("./provider-cloudflare.js"); const provider_etherscan_js_1 = require("./provider-etherscan.js"); const provider_infura_js_1 = require("./provider-infura.js"); //import { PocketProvider } from "./provider-pocket.js"; const provider_quicknode_js_1 = require("./provider-quicknode.js"); const provider_fallback_js_1 = require("./provider-fallback.js"); const provider_jsonrpc_js_1 = require("./provider-jsonrpc.js"); const network_js_1 = require("./network.js"); const provider_websocket_js_1 = require("./provider-websocket.js"); function isWebSocketLike(value) { return (value && typeof (value.send) === "function" && typeof (value.close) === "function"); } const Testnets = "goerli kovan sepolia classicKotti optimism-goerli arbitrum-goerli matic-mumbai bnbt".split(" "); /** * Returns a default provider for %%network%%. * * If %%network%% is a [[WebSocketLike]] or string that begins with * ``"ws:"`` or ``"wss:"``, a [[WebSocketProvider]] is returned backed * by that WebSocket or URL. * * If %%network%% is a string that begins with ``"HTTP:"`` or ``"HTTPS:"``, * a [[JsonRpcProvider]] is returned connected to that URL. * * Otherwise, a default provider is created backed by well-known public * Web3 backends (such as [[link-infura]]) using community-provided API * keys. * * The %%options%% allows specifying custom API keys per backend (setting * an API key to ``"-"`` will omit that provider) and ``options.exclusive`` * can be set to either a backend name or and array of backend names, which * will whitelist **only** those backends. * * Current backend strings supported are: * - ``"alchemy"`` * - ``"ankr"`` * - ``"cloudflare"`` * - ``"etherscan"`` * - ``"infura"`` * - ``"publicPolygon"`` * - ``"quicknode"`` * * @example: * // Connect to a local Geth node * provider = getDefaultProvider("http://localhost:8545/"); * * // Connect to Ethereum mainnet with any current and future * // third-party services available * provider = getDefaultProvider("mainnet"); * * // Connect to Polygon, but only allow Etherscan and * // INFURA and use "MY_API_KEY" in calls to Etherscan. * provider = getDefaultProvider("matic", { * etherscan: "MY_API_KEY", * exclusive: [ "etherscan", "infura" ] * }); */ function getDefaultProvider(network, options) { if (options == null) { options = {}; } const allowService = (name) => { if (options[name] === "-") { return false; } if (typeof (options.exclusive) === "string") { return (name === options.exclusive); } if (Array.isArray(options.exclusive)) { return (options.exclusive.indexOf(name) !== -1); } return true; }; if (typeof (network) === "string" && network.match(/^https?:/)) { return new provider_jsonrpc_js_1.JsonRpcProvider(network); } if (typeof (network) === "string" && network.match(/^wss?:/) || isWebSocketLike(network)) { return new provider_websocket_js_1.WebSocketProvider(network); } // Get the network and name, if possible let staticNetwork = null; try { staticNetwork = network_js_1.Network.from(network); } catch (error) { } const providers = []; if (allowService("publicPolygon") && staticNetwork) { if (staticNetwork.name === "matic") { providers.push(new provider_jsonrpc_js_1.JsonRpcProvider("https:/\/polygon-rpc.com/", staticNetwork, { staticNetwork })); } } if (allowService("alchemy")) { try { providers.push(new provider_alchemy_js_1.AlchemyProvider(network, options.alchemy)); } catch (error) { } } if (allowService("ankr") && options.ankr != null) { try { providers.push(new provider_ankr_js_1.AnkrProvider(network, options.ankr)); } catch (error) { } } if (allowService("cloudflare")) { try { providers.push(new provider_cloudflare_js_1.CloudflareProvider(network)); } catch (error) { } } if (allowService("etherscan")) { try { providers.push(new provider_etherscan_js_1.EtherscanProvider(network, options.etherscan)); } catch (error) { } } if (allowService("infura")) { try { let projectId = options.infura; let projectSecret = undefined; if (typeof (projectId) === "object") { projectSecret = projectId.projectSecret; projectId = projectId.projectId; } providers.push(new provider_infura_js_1.InfuraProvider(network, projectId, projectSecret)); } catch (error) { } } /* if (options.pocket !== "-") { try { let appId = options.pocket; let secretKey: undefined | string = undefined; let loadBalancer: undefined | boolean = undefined; if (typeof(appId) === "object") { loadBalancer = !!appId.loadBalancer; secretKey = appId.secretKey; appId = appId.appId; } providers.push(new PocketProvider(network, appId, secretKey, loadBalancer)); } catch (error) { console.log(error); } } */ if (allowService("quicknode")) { try { let token = options.quicknode; providers.push(new provider_quicknode_js_1.QuickNodeProvider(network, token)); } catch (error) { } } (0, index_js_1.assert)(providers.length, "unsupported default network", "UNSUPPORTED_OPERATION", { operation: "getDefaultProvider" }); // No need for a FallbackProvider if (providers.length === 1) { return providers[0]; } // We use the floor because public third-party providers can be unreliable, // so a low number of providers with a large quorum will fail too often let quorum = Math.floor(providers.length / 2); if (quorum > 2) { quorum = 2; } // Testnets don't need as strong a security gaurantee and speed is // more useful during testing if (staticNetwork && Testnets.indexOf(staticNetwork.name) !== -1) { quorum = 1; } // Provided override qorum takes priority if (options && options.quorum) { quorum = options.quorum; } return new provider_fallback_js_1.FallbackProvider(providers, undefined, { quorum }); } exports.getDefaultProvider = getDefaultProvider; //# sourceMappingURL=default-provider.js.map