Connect to Selendra
Network details and connection information for Selendra Mainnet and Testnet
Connect your wallet or dApp to Selendra.
Network Details
Mainnet
| Parameter | Value |
|---|---|
| Network Name | Selendra Mainnet |
| RPC URL | https://rpc.selendra.org |
| Chain ID | 1961 |
| Currency Symbol | SEL |
| Explorer | explorer.selendra.org |
Testnet (Indra)
| Parameter | Value |
|---|---|
| Network Name | Selendra Testnet |
| RPC URL | https://rpc-testnet.selendra.org |
| Chain ID | 1953 |
| Currency Symbol | tSEL |
| Explorer | testnet-explorer.selendra.org |
| Faucet | faucet-testnet.selendra.org |
Add to MetaMask
- Open MetaMask
- Settings -> Networks -> Add Network
- Enter the details above for Mainnet or Testnet
Developer Quickstart
Selendra is EVM-compatible. You can use standard tools like Hardhat, Foundry, or Remix.
Hardhat Config
module.exports = {
solidity: "0.8.19",
networks: {
selendra: {
url: "https://rpc.selendra.org",
chainId: 1961,
accounts: [process.env.PRIVATE_KEY]
},
selendraTestnet: {
url: "https://rpc-testnet.selendra.org",
chainId: 1953,
accounts: [process.env.PRIVATE_KEY]
}
}
};
Foundry
forge create --rpc-url https://rpc.selendra.org --private-key <YOUR_KEY> src/MyContract.sol:MyContract
Next Steps
- Unified Accounts - One address for EVM & Substrate
- Run a Node - Support the network
Contribute
Found an issue or want to contribute?
Help us improve this documentation by editing this page on GitHub.
