Plugin to add Ethereum Classic (ETC) support to Nethermind.
| Network | Chain ID | Config |
|---|---|---|
| ETC Mainnet | 61 | classic |
| Mordor Testnet | 63 | mordor |
- Download the plugin from GitHub Releases
- Extract to your Nethermind installation:
# From the release archive
cp Nethermind.EthereumClassic.dll /path/to/nethermind/plugins/
mkdir -p /path/to/nethermind/chainspecs/
cp chainspecs/*.json /path/to/nethermind/chainspecs/
cp configs/*.cfg /path/to/nethermind/configs/# ETC Mainnet
./nethermind --config classic
# Mordor Testnet
./nethermind --config mordor
# Or with explicit chainspec
./nethermind --Init.ChainSpecPath=chainspecs/classic.jsondotnet build -c Release
dotnet test
# Output: src/Nethermind.EthereumClassic/bin/Release/net10.0/Nethermind.EthereumClassic.dllGPL-3.0