RPC Endpoints

Public RPC

Use this RPC endpoint for program deployments, transaction broadcasting, state queries, and dev testing:

https://rpc.nadalayer.com

The RPC endpoint supports the standard Solana JSON-RPC interface, including:

  • getBalance

  • sendTransaction

  • getLatestBlockhash

  • getProgramAccounts

  • simulateTransaction

  • and more.

All Solana SDKs, including JavaScript and Rust, work without modification.

WebSocket

For subscriptions and real-time events:

wss://rpc.nadalayer.com

Explorer

https://explorer.nadalayer.com

Connect via Solana CLI

You can immediately connect your Solana CLI to the Nada Testnet:

Check your configuration:


Airdrop (Faucet)

The Nada Testnet includes an open faucet for testing.

Request SOL

Faucet requires explicit URL (if not set via the config):

You can re-request as needed (with rate limits).


Example: Deploying a Program

A normal Solana deployment works without any changes.

Example:

Verify the program:

Everything works exactly as on devnet, but faster and without congestion.


Example: Interacting With the Testnet Using TypeScript

Everything behaves exactly like mainnet/devnet - this is intentional.

Last updated