Skip to main content

Network Endpoints

Elysium has two types of endpoints available for users to connect to: one for HTTPS and one for WSS.

If you are looking for an API provider suitable for production use, you can check out the Node Operator section of this guide to setup your own node.

ProviderRPC URLWebSocket
Elysiumhttps://rpc.elysiumchain.techwss://ws.elysiumchain.tech
Atlantishttp://rpc.atlantischain.networkwss://ws.atlantischain.network

Quick Started

For the Web3.js library, you can create a local Web3 instance and set the provider to connect to Elysium (both HTTP and WS are supported):

For the Ether.js library, define the provider by using ethers.JsonRpcProvider( providerURL, {object}) and setting the provider URL to Elysium:

const ethers = require('ethers'); // Load Ethers library
// Testnet RPC url is: https://rpc.atlantischain.network
const providerURL = 'https://rpc.elysiumchain.tech';
// Define provider
const provider = new ethers.JsonRpcProvider(providerURL, {
chainId: 1339,
name: 'elysium'
});

Chain ID

Elysium Chain Mainnet chain ID is: 1339 & Testnet chain ID is: 1338 for more information follow Elysium Network

Public Endpoints

Elysium has two endpoints available for users to connect to: one for RPC and one for Websocket connection.

The endpoints in this section are for development purposes only and are not meant to be used in production applications.

If you are looking for an API provider suitable for production use, you can check out the Node Operator section of this guide to setup your own node.

Atlantis (Testnet)

VariableValue
Chain ID1338
RPC URLhttps://rpc.atlantischain.network
WSS URLwss://ws.atlantischain.network

Elysium Mainnet

VariableValue
Chain ID1339
RPC URLhttps://rpc.elysiumchain.tech
WSS URLwss://ws.elysiumchain.tech

Block Explorers

For Elysium, you can use any of the following block explorers:

  • Ethereum API (Etherscan Equivalent) — Elysium
  • Ethereum API with Indexing — Blockscout

For more information on each of the available block explorers, please head to the Block Explorers section of the documentation.

Get Tokens

To start building on Elysium, you can get LAVA from the Elysium Faucet. For specific amounts, you can always reach out directly to us via our community channels.

To request LAVA tokens from the faucet, you can enter your address on the Elysium Faucet.

NOTE:
Elysium Testnet tokens have no value. Please don’t spam the faucet with unnecessary requests.