RPC Endpoints
Public RPC
Use this RPC endpoint for program deployments, transaction broadcasting, state queries, and dev testing:
https://rpc.nadalayer.comThe RPC endpoint supports the standard Solana JSON-RPC interface, including:
getBalancesendTransactiongetLatestBlockhashgetProgramAccountssimulateTransactionand more.
All Solana SDKs, including JavaScript and Rust, work without modification.
WebSocket
For subscriptions and real-time events:
wss://rpc.nadalayer.comExplorer
https://explorer.nadalayer.comConnect 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