Documentation
API reference, SDK guides, quick-start steps, and tutorials for the KuberNodes development cloud.
Quick-start
Start with the SDK, install the package manager of your choice, and point it at a supported chain like Sepolia or Mainnet.
npm install @kubernodes/sdk
import { KuberNodesClient } from '@kubernodes/sdk';
const client = new KuberNodesClient({
apiKey: process.env.KN_API_KEY,
chain: 'sepolia',
});
const block = await client.rpc('eth_blockNumber');