@hubbleprotocol/hubble-config
v8.0.0
Published
Hubble Protocol configuration
Downloads
7,178
Readme
Hubble Config
Hubble config is a public registry/configuration with Solana public keys that are used by the Hubble Protocol.
Install
npm install @hubbleprotocol/hubble-config
Usage
// 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');