Skip to main content
Developer Tools

Playground

Interact with the Selendra network directly from your browser.

Live Network Explorer

Monitor the latest blocks on Selendra Testnet.

Mini Explorer
Testnet
Latest Blocks
No blocks loaded

SDK Code Examples

Ready-to-use code snippets. Copy and run in your project.

Connect to Selendra
import { ethers } from 'ethers';

// Connect to Selendra Testnet
const provider = new ethers.JsonRpcProvider(
  'https://rpc-testnet.selendra.org'
);

// Get network info
const network = await provider.getNetwork();
console.log('Connected to:', network.name);
console.log('Chain ID:', network.chainId);
Check Balance
// Check account balance
const address = '0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb';
const balance = await provider.getBalance(address);

console.log('Balance:', ethers.formatEther(balance), 'SEL');
Send Transaction
// Create wallet from private key
const wallet = new ethers.Wallet(privateKey, provider);

// Send transaction
const tx = await wallet.sendTransaction({
  to: '0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb',
  value: ethers.parseEther('1.0')
});

// Wait for confirmation
const receipt = await tx.wait();
console.log('Transaction hash:', receipt.hash);

Installation

npm install ethers

For full SDK features, install @selendrajs/sdk

Network Information

Testnet

Network Name:
Selendra Testnet
Chain ID:
1953
Currency:
SEL
RPC URL:
rpc-testnet.selendra.org

Mainnet

Network Name:
Selendra
Chain ID:
1961
Currency:
SEL
RPC URL:
rpc.selendra.org

Ready to Deploy?

Start building on Selendra with our comprehensive documentation.