Speedy Nodes Alternative

Since the speedy-nodes have been removed how must i replace these fields now?

import React from 'react';

import { createRoot } from 'react-dom/client';

import App from "./App";

import "./index.css";

import { MoralisProvider } from "react-moralis";

import { NotificationProvider } from "web3uikit";

import { BrowserRouter as Router } from "react-router-dom";

const rootElement = document.getElementById("root");

if (!rootElement) throw new Error("Failed to find the root element");

const root = createRoot(rootElement);

root.render(

  <React.StrictMode>

    <MoralisProvider

      initializeOnMount

      appId={"xxx"}

      serverUrl={"xxx"}

    >

      <NotificationProvider>

        <Router>

          <App />

        </Router>

      </NotificationProvider>

    </MoralisProvider>

  </React.StrictMode>

);

I am Following the Blog Dapp on polygon tutorial. Do i just put my api key?

on what filed are you referring in particular?

it looks like speedy nodes were not used directly in this code