⛏ Witness School · MELEK · PRANA pool
SchoolDevTokenServicesLearnAcademyBuildWhitepaperRunPoolMineFeesServersWalletHathorLibrary

Mine PRANA · Etchash (ECIP-1099) · same rig as Ethereum Classic

PRANA is an EVM proof-of-work compute chain — chainId 712217 (0xade19). Its security lane runs Etchash, byte-for-byte the algorithm your ETC rig already mines: zero switching cost — same miner, same GPU, same DAG mechanics. You change one pool URL and your payout address and you're hashing. Below is copy-paste for the common miners; a rig can be submitting shares in minutes.

Why point a GPU at PRANA now — the honest pitch

The three things you set (everywhere)

  1. Pool (stratum) URLstratum+tcp://pool.soapbox.community:3333
  2. Wallet / payout — your PRANA EVM address 0x… (40 hex chars). Get one below. You give the pool only the public address — never a private key.
  3. Worker name — any label (rig1, garage3070) to tell rigs apart.

Username convention in every miner: wallet.worker — your 0x address, a dot, then the worker name.

1 · Get an address — add PRANA to your wallet

Your payout is a normal EVM 0x… address. Use Akasha or any MetaMask-compatible wallet. One click adds the network (EIP-3085 wallet_addEthereumChain):

Or copy the params into any wallet:

{
  "chainId": "0xade19",
  "chainName": "PRANA",
  "nativeCurrency": {
    "name": "PRANA",
    "symbol": "PRANA",
    "decimals": 18
  },
  "rpcUrls": [
    "https://rpc.prana.melek.salon"
  ],
  "blockExplorerUrls": [
    "https://pranascan.soapbox.community"
  ]
}

The pool creates a wallet for you in-browser too — My Coins generates the EVM address (seed never leaves your browser; the pool holds no keys).

2 · Point your rig at the pool

Miningcore speaks the standard Ethereum/Etchash stratum, so every mainstream Etchash miner works. Replace 0xYOUR_PRANA_ADDRESS with your address.

lolMiner (NVIDIA + AMD)

lolMiner --algo ETCHASH \
  --pool stratum+tcp://pool.soapbox.community:3333 \
  --user 0xYOUR_PRANA_ADDRESS.rig1

T-Rex (NVIDIA)

t-rex -a etchash \
  -o stratum+tcp://pool.soapbox.community:3333 \
  -u 0xYOUR_PRANA_ADDRESS -p x -w rig1

GMiner (NVIDIA + AMD)

miner --algo etchash \
  --server pool.soapbox.community --port 3333 \
  --user 0xYOUR_PRANA_ADDRESS.rig1

Windows .bat (double-click)

lolMiner.exe --algo ETCHASH --pool stratum+tcp://pool.soapbox.community:3333 --user 0xYOUR_PRANA_ADDRESS.rig1
pause

HiveOS / mmpOS flight sheet

Coin: custom / Etchash · Wallet: 0xYOUR_PRANA_ADDRESS · Pool: pool.soapbox.community:3333 (template %WAL%.%WORKER_NAME%) · Miner: lolMiner or T-Rex. Apply the flight sheet.

3 · What you need — the one hard spec is VRAM

Etchash keeps a large dataset (the DAG) resident in GPU memory, and it grows slowly over time. That single spec decides whether a card can mine:

First run builds the DAG (seconds to ~a minute, once per epoch), connects, then submits shares. "Share accepted" = the pool credits your address. A DAG build that immediately errors on memory means the card lacks free VRAM.

4 · Rewards, fees, and checking your stats

The pool credits your 0x address by contributed shares; when your pending balance crosses the payout threshold, Miningcore sends PRANA to your address. Miners earn PRANA (and KULA, the paired DeFi collateral coin) — like a STEEM/SBD pair, but for EVM miners.

Run your own pool — PRANA is permissionless

Anyone can run a pool and more are welcome — they decentralize block production and give miners choice. The stack is a synced PRANA node serving eth_getWork, a Miningcore Etchash pools[] entry pointing at it, Postgres, and a payout wallet you control. Full reference: PRANA contract dev and pool/README.md in the open-source repo. Depth on the algorithm and economics is in the Library — Mining and PRANA articles.

Live pool status → · Build on PRANA → · Akasha wallet → · The whitepaper →