To connect to the Polybase Mainnet, you will need to configure the SDK with the following parameters:
Copy
Ask AI
import { Polybase } from "@polybase/client";const db = new Polybase({ baseURL: "https://mainnet.polybase.xyz/v0", defaultNamespace: "your-namespace"});// Now you can use the SDK as normalawait db.collection("City").call("setCountry", ["USA"]);