Hubble config is a public registry/configuration with Solana public keys that are used by the Hubble Protocol.
npm install @hubbleprotocol/hubble-config
// For ESM
import { getAllConfigs, getConfigByEnv } from "@hubbleprotocol/hubble-config";
// For CommonJS
const config = require("@hubbleprotocol/hubble-config");
// Get all configs: mainnet-beta, devnet, localnet, testnet configs
const configs = getAllConfigs();
// Get config by solana environment:
const mainnetConfig = getConfigByEnv('mainnet-beta');
const devnetConfig = getConfigByEnv('devnet');