Ethereal Chain Documentation
  • Introduction
  • Industry use cases
    • Decentralized applications
    • NFT Marketplaces
    • Decentralized finance
  • Wallets
    • Ethereal Wallet Guide
    • App Wallets
      • Ethereal Wallets
  • Web Wallets
    • Web Wallets
  • Command-Line Wallets
    • Command-Line Wallets
    • Paper Wallet
    • File System Wallet
  • Support/ Troubleshooting
  • Staking
    • Staking on Ethereal
    • Stake Account Structure
  • Grants
    • Ethereal's $100 Thousand Grants Program
    • Ethereal's Grants Process
  • Command Line
    • Command-line Guide
    • Install the Ethereal Tool Suite
    • Using Ethereal CLI
    • Connecting to a Cluster
    • Send and Receive Tokens
    • Offline Transaction Signing
    • Durable Transaction Nonces
  • Developing on native Ethereal
    • Programming Model
      • Overview
      • Transactions
      • Accounts
      • Runtime
      • Calling Between Programs
  • Clients
    • JSON RPC API
    • JavaScript API
  • Runtime Facilities
    • Native Programs
    • Sysvar Cluster Data
  • On-chain Programs
    • Overview
    • Developing with Rust
    • Developing with C
    • Deploying
    • Debugging
  • Ethereal Test Validator
  • EVM Integration
    • EVM in Ethereal
    • Legacy Address convention
    • EVM Bridge
  • Integrating
    • Add Ethereal to Your Exchange
  • Validating
    • Running a Validator
    • Validator Requirements
    • Starting a Validator
    • Vote Account Management
    • Staking
    • Monitoring a Validator
    • Publishing Validator Info
  • Clusters
    • Ethereal Clusters
    • Benchmark a Cluster
    • Performance Metrics
  • Architecture
    • Cluster
      • Ethereal Cluster
      • Synchronization
      • Leader Rotation
      • Fork Generation
    • Validator
      • Anatomy of a Validator
      • Blockstore
      • Gossip Service
  • Software
    • Vision Documentation
    • Quick Start
    • Specifications
    • Technical Perspective
  • Tutorials
    • Solidity Tutorials
      • Deploy a NFT (ERC-721) Tutorial
      • Deploy a Smart Contract
      • Deploy a ERC-20 Token
      • How To Build an NFT Marketplace
  • Set up MetaMask (Mainnet)
  • Set up MetaMask (Testnet)
Powered by GitBook
On this page
  • EtherealNetwork Clusters
  • Testnet
  • Mainnet
  1. Clusters

Ethereal Clusters

EtherealNetwork Clusters

EtherealNetwork maintains several different clusters with different purposes.

Before you begin make sure you have first installed the EtherealNetwork command line tools

Explorers:

  • http://native.Ethereal.com/ Native explorer.

  • http://evmexplorer.Ethereal.com/ EVM mainnet explorer.

  • http://evmexplorer.testnet.Ethereal.com/ EVM testnet explorer.

Testnet

Space

Native

RPC

https://api.testnet.Ethereal.network

Websocket

wss://api.testnet.Ethereal.network

Block Explorer

https://native.Ethereal.network?cluster=testnet

Faucet CLI

Etherealairdrop 1 -u https://api.testnet.Ethereal.network --faucet-host airdrop.testnet.Ethereal.network

Space

EVM

chainId

2370

ETH RPC

https://evm.testnet.Ethereal.io/rpc

ETH Websocket

wss://api.testnet.Ethereal.io/

Block Explorer

https://evmexplorer.testnet.Ethereal.io

Block Explorer

https://explorer.testnet.Ethereal.io (V-encoded Legacy addresses)

Faucet bot

https://t.me/Ethereal

  • Testnet serves as a playground for anyone who wants to take EtherealNetwork for a test drive, as a user, token holder, app developer, or validator.

  • Application developers should target Testnet.

  • Potential validators should first target Testnet.

  • Key differences between Testnet and Mainnet:

    • Testnet tokens are not real

    • Testnet includes a token faucet for airdrops for application testing

    • Testnet may be subject to ledger resets

    • Testnet typically runs a newer software version than Mainnet Beta

  • Gossip entrypoint for Testnet: bootstrap.testnet.Ethereal.com:8001

Mainnet

Space

Native

RPC

https://api.Ethereal.io

Websocket

wss://api.Ethereal.io

Block Explorer

https://native.Ethereal.io

Shred version

17211

Genesis hash

EsZtukC1MYxB2tohUTdigaUdy1k6kCU8HKS8LEK99iJY

Space

EVM

chainId

1229

ETH RPC

https://evm-explorer.Ethereal.io/rpc

ETH Websocket

wss://api.Ethereal.io/

Block Explorer

https://evm.Ethereal.io

Block Explorer

https://evm-explorer.Ethereal.io/ (V-encoded Legacy addresses)

  • Gossip entrypoint for Mainnet: bootstrap.Ethereal.io:8001

  • Shred version: 17211

  • Some of the popular nodes:

  • 78rvyxYJAUXGaZHJWyz7Yx81ribpAYvwupVuF9CugGws, FSZbHLPerYngGGwgWbXHtqTLRvLmgKVeUZCKwbFttWng, Eydu1kJNyPQNKtYrH4dqJJRxrxHuHtbXJCjgo6pSGSjf, QnQHuNAYMd7jaUJ61Pchi9bD7NbaZ4jxZ4cbdEaYMWF, Fxb6TgvScYJxjHjSpTr6a4xgLULLQSh8uhAexG5tzFJ6

Example Etherealcommand-line configuration

Etherealset --url https://api.Ethereal.io

Example Ethereal-validator command-line

$ Ethereal-validator \

--identity ~/validator-keypair.json \

--vote-account ~/vote-account-keypair.json \

--no-untrusted-rpc \

--ledger ~/validator-ledger \

--rpc-port 8899 \

--enable-rpc-transaction-history \

--trusted-validator 78rvyxYJAUXGaZHJWyz7Yx81ribpAYvwupVuF9CugGws \

--trusted-validator FSZbHLPerYngGGwgWbXHtqTLRvLmgKVeUZCKwbFttWng \

--dynamic-port-range 8000-8010 \

--entrypoint bootstrap.Ethereal.io:8001 \

--limit-ledger-size

The --trusted-validators is operated by EtherealNetwork

PreviousClustersNextBenchmark a Cluster

Last updated 1 year ago