Mining Client Setup Guide

Complete step-by-step guide to setup popular mining software for ATMN

Before You Start

Get Your ATMN Wallet Address

You need an ATMN wallet address to receive mining rewards. Visit the Web Wallet to create one.

System Requirements

Pool Connection Details

Pool URL:        https://miningpool.carphatian.ro
Stratum Port:    3333
Algorithm:       SHA256d
Block Time:      12 seconds
Pool Fee:        2%

CPU Mining Software

CPUMiner (Recommended for CPU) CPU

1 Download & Install

Windows:

# Download from official repository
https://github.com/pooler/cpuminer/releases

# Extract the ZIP file to C:\Mining\cpuminer

Linux:

sudo apt update
sudo apt install automake autoconf pkg-config libcurl4-openssl-dev libjansson-dev libssl-dev libgmp-dev zlib1g-dev

git clone https://github.com/pooler/cpuminer
cd cpuminer
./autogen.sh
./configure CFLAGS="-O3 -march=native"
make
sudo make install

2 Configure & Run

Create a batch file (Windows) or shell script (Linux):

# Windows (mine.bat)
cpuminer.exe -a sha256d -o stratum+tcp://miningpool.carphatian.ro:3333 -u YOUR_ATMN_ADDRESS -p x -t 4

# Linux (mine.sh)
minerd -a sha256d -o stratum+tcp://miningpool.carphatian.ro:3333 -u YOUR_ATMN_ADDRESS -p x -t 4
Important: Replace YOUR_ATMN_ADDRESS with your actual wallet address. Adjust -t 4 to number of CPU threads (recommended: cores - 1).
XMRig CPU

1 Download

# Download from: https://github.com/xmrig/xmrig/releases
# Extract to desired folder

2 Configure

Edit config.json:

{
    "autosave": true,
    "cpu": true,
    "opencl": false,
    "cuda": false,
    "pools": [
        {
            "algo": "rx/0",
            "coin": null,
            "url": "miningpool.carphatian.ro:3333",
            "user": "YOUR_ATMN_ADDRESS",
            "pass": "x",
            "tls": false,
            "keepalive": true
        }
    ]
}

3 Run

# Windows
xmrig.exe

# Linux
./xmrig

GPU Mining Software

CGMiner (GPU) GPU

1 Download & Setup

Windows:

# Download from: https://github.com/ckolivas/cgminer/releases
# Extract to C:\Mining\cgminer
# Install GPU drivers (NVIDIA/AMD)

Linux:

sudo apt install libcurl4-openssl-dev libncurses5-dev libudev-dev

git clone https://github.com/ckolivas/cgminer
cd cgminer
./autogen.sh
./configure
make
sudo make install

2 Run CGMiner

# Windows
cgminer.exe --sha256d -o stratum+tcp://miningpool.carphatian.ro:3333 -u YOUR_ATMN_ADDRESS -p x

# Linux
cgminer --sha256d -o stratum+tcp://miningpool.carphatian.ro:3333 -u YOUR_ATMN_ADDRESS -p x
T-Rex Miner (NVIDIA) NVIDIA GPU

1 Download

# Download from: https://github.com/trexminer/T-Rex/releases
# Extract archive
# Requires NVIDIA GPU with latest drivers

2 Create Start Script

Windows (start.bat):

t-rex.exe -a sha256d -o stratum+tcp://miningpool.carphatian.ro:3333 -u YOUR_ATMN_ADDRESS -p x
pause

Linux (start.sh):

#!/bin/bash
./t-rex -a sha256d -o stratum+tcp://miningpool.carphatian.ro:3333 -u YOUR_ATMN_ADDRESS -p x
lolMiner (AMD) AMD GPU

1 Download & Setup

# Download from: https://github.com/Lolliedieb/lolMiner-releases/releases
# Extract to mining folder
# Install AMD Adrenalin drivers

2 Create Configuration

# Windows
lolMiner.exe --algo SHA256 --pool miningpool.carphatian.ro:3333 --user YOUR_ATMN_ADDRESS

# Linux
./lolMiner --algo SHA256 --pool miningpool.carphatian.ro:3333 --user YOUR_ATMN_ADDRESS

Monitoring Your Mining

Check Your Stats

Visit the Pool Dashboard to monitor:

Common Issues & Solutions

Connection Failed

  • Check firewall settings - allow port 3333
  • Verify internet connection
  • Confirm pool URL is correct
  • Try using IP instead of hostname

Low Hashrate

  • Update GPU drivers to latest version
  • Check GPU temperature (should be under 80°C)
  • Increase thread count for CPU mining
  • Close other resource-intensive programs

Shares Rejected

  • Verify wallet address is correct
  • Ensure algorithm is SHA256d
  • Check for overclocking issues
  • Update miner software to latest version

Performance Optimization

CPU Mining Tips

GPU Mining Tips

Pro Tip: Start with conservative settings and gradually optimize. Mining should be stable before pushing performance.