Skip to content
@mordortestnet

Mordor Testnet

A collection of public goods for Ethereum Classic's proof of work Mordor Testnet.

.github

Mordor Testnet

Mordor Testnet

The Ethereum Classic Proof of Work testnet.
Explorer · Dashboard · Fork Mon · Faucet · Create an Issue

Launch: October 3, 2019 at ETCSummit. eth-classic/mordor#1


Mordor Testnet Launch: October 3, 2019 at ETCSummit.

Network Properties

  • Network ID: 7
  • Chain ID: 63
  • SLIP44: 1

Network Upgrades | Activation Block

  • Frontier: 0
  • Homestead: 0
  • GasReprice: 0
  • Diehard: 0
  • Gotham: 0
  • Defuse Difficulty Bomb: 0
  • Atlantis: 0
  • Agharta: 301_243
  • Phoenix: 999_983
  • Thanos: 2_520_000
  • Magneto: 3_985_893
  • Mystique: 5_520_000
  • Spiral: 9_957_000

Mordor Testnet Genesis hash

0xa68ebde7932eccb177d38d55dcc6461a019dd795a681e59b5a3e4f3a7259a3f1

Resources

Status Dashboard:

  • none

Fork Monitoring:

  • none

Block Explorer:

Faucet:

Public End Points:

Core-Geth

Minimum required version: v1.11.16

geth --mordor

Hyperledger Besu

Minimum required version: v20.10.0-RC2

besu --network mordor

Mordor Testnet Guide


Mordor is a Proof of Work Ethereum Classic testnet. A testnet allows developers to perform specific tests. Developers may want to test protocol changes, test a smart contract, or interact with the network in anyway that does not require real EthClassic (ETC)—just don’t test on mainnet, mainnet is for production. This guide will teach you how to mine Mordor Testnet with your home computer to obtain the METC asset and pay for transaction on the testnet.

Summary:

Install Core-geth

https://etclabscore.github.io/core-geth/getting-started/installation/

Mordor Testnet Mining Guide

You can visit the Core-geth documentation for more installation options. I’m using Ubuntu 22.04 LTS.

If you just want to download and run geth --mordor or any of the other tools here, this is the quickest and simplest way.

Binary archives are published at https://github.com/etclabscore/core-geth/releases. Find the latest one for your OS, download it, (check the SHA sum), unarchive it, and run! As of the time this is being written, v1.12.19 is the most recent release that includes the next network upgrade: Spiral.

When running Core-geth use --mordor flag for Ethereum Classic's Mordor Testnet.

$ wget https://github.com/etclabscore/core-geth/releases/download/v1.12.19/core-geth-linux-v1.12.19.zip # Update to the most current release version
$ sudo unzip core-geth-linux-v1.12.19.zip -d /bin/ # Update to the most current release version
$ geth --help # Lists available options
$ geth --mordor # Runs Ethereum Classic's testnet Mordor

Account Creation

You'll need an account with an address (0x...) to receive your METC mining rewards. Here is how you make an address and keystore file with core-geth. You'll be able to import the keystore file into wallets like MetaMask. Backup this file. You'll mine your Mordor Testnet block rewards to this address.

$ geth --mordor account new # Creates a new account with a public address and keystore file
$ geth --mordor account list
$ geth --mordor # Runs Ethereum Classic's testnet Mordor

You’ll notice listing the account will print the keystore file location.For example:keystore:///home/USER/.ethereum/mordor/keystore/UTC...

Run Mordor with Mining Enable

$ geth --mordor --mine --miner.threads 1 --miner.gaslimit 8000000 --miner.etherbase 0x_INSERT_YOUR_ADDRESS_HERE_3a087

Check your Mordor Testnet Balance

So, you’re running a Mordor node and mining testnet METC. Woohoo! An easy way to double check you’re actually growing a Mordor testnet balance is on Blockscout. Just search the account address you created earlier.

Add your Mordor Account to a Wallet?

You can use your keystore file to import your wallet into a wallet application such as MetaMask. In MetaMask

  • Add the Ethereum Classic mainnet to your MetaMask by visiting https://chainlist.org/chain/61 and clicking the "Add to MetaMask" button.
  • Add the Mordor testnet to your MetaMask by visiting https://chainlist.org/chain/63 and clicking the "Add to MetaMask" button.
  • Under your account profile select import account > select type (JSON) > upload your keystore file. You may need to enter the account password.

Mordor Mining Script

One way to avoid typing or copy and pasting this same text block is creating a shell script file.

$ geth --mordor --mine --miner.threads 1 --miner.gaslimit 8000000 --miner.etherbase 0x_INSERT_YOUR_ADDRESS_HERE_3a087

Enter the following in a new terminal window (ctrl + alt + t):

touch start-mordor.sh && echo "geth --mordor --mine --miner.threads 1 --miner.gaslimit 8000000 --miner.etherbase 0x_INSERT_YOUR_ADDRESS_HERE_3a087" >start-mordor.sh && chmod +x start-mordor.sh

touch start-mordor.sh to create the file && echo “the contents” into the shell script file && add chmod executable+x permissions to the file.

Enter the following in a new terminal window (ctrl + alt + t):

 ./start-mordor.sh

Great job! You are mining on Ethereum Classic's testnet.

Donate Mined METC to a Community Faucet for Pubic Use

https://faucet.mordortest.net

A faucet is a developer tool that gives users testnet tokens to use when testing smart contracts or interacting with DApps on test networks. https://faucet.mordortest.net gives Mordor testnet ETC to test smart contracts before pushing them to production on the Ethereum Classic mainnet. Faucets like this allow network users and developers to interact with the Mordor network without the prerequisite of mining METC via a client node. To donate METC to this public faucet, please send your METC to address 0x51Cb0EA27f03e56d84E9EB1879F131393a6769bA.

Video Mordor Testnet Guide

https://www.youtube.com/watch?v=0hutSdb-dV8

Pinned

  1. faucet faucet Public

    Forked from pk910/PoWFaucet

    Modularized faucet for EVM chains with different protection methods (Captcha, Mining, IP, Mainnet Balance, Gitcoin Passport and more)

    TypeScript

Repositories

Showing 10 of 33 repositories

People

This organization has no public members. You must be a member to see who’s a part of this organization.

Most used topics

Loading…