Selendra

Documentation

Connect to Selendra

Network details and connection information for Selendra Mainnet and Testnet

Connect your wallet or dApp to Selendra.

Network Details

Mainnet

ParameterValue
Network NameSelendra Mainnet
RPC URLhttps://rpc.selendra.org
Chain ID1961
Currency SymbolSEL
Explorerexplorer.selendra.org

Testnet (Indra)

ParameterValue
Network NameSelendra Testnet
RPC URLhttps://rpc-testnet.selendra.org
Chain ID1953
Currency SymboltSEL
Explorertestnet-explorer.selendra.org
Faucetfaucet-testnet.selendra.org

Add to MetaMask

  1. Open MetaMask
  2. Settings -> Networks -> Add Network
  3. 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

Contribute

Found an issue or want to contribute?

Help us improve this documentation by editing this page on GitHub.

Edit this page on GitHub