Node Endpoints
Network Endpoints
Network
URL
Network
URL
// Using the Polkadot Mainnet Endpointconst { ApiPromise, WsProvider } = require('@polkadot/api');async () => { // Construct a provider with the endpoint URL const provider = new WsProvider('wss://rpc.polkadot.io/'); // Create an API instance for Polkadot const api = await ApiPromise.create({ provider }); // ...Last updated