Networks
Pre-configured network settings for popular EVM-compatible blockchains.
Supported Networks
Hyperkit SDK includes configurations for multiple networks:
- • Metis Hyperion Testnet
- • Base Sepolia
- • Mantle Testnet
- • Ethereum Sepolia
- • Polygon Mumbai
Usage
NetworksExample.ts
import { NETWORKS } from 'hyperkit';
// Access network configuration
const network = NETWORKS.BASE_SEPOLIA;
// Network properties
console.log(network.chainId);
console.log(network.name);
console.log(network.rpcUrl);