ALPHABLOCK

Monero Mining Pool

Pool Hashrate
World XMR Hashrate
Pool: -
Active Miners
Total Hashes
Blocks Found
Current XMR Block Effort

Pool Hashrate History

Check Your Stats

Your Hashrate
0 H/s
Total Shares
0
Pending Balance
0 XMR
Total Paid
0 XMR

Your Workers

Getting Started

Mining on Windows

1

Download XMRig

Download the latest XMRig miner from the official GitHub releases:

Download XMRig for Windows
2

Extract & Configure

Extract the ZIP file and create a start.bat file with this content:

xmrig.exe -o alphablockmonero.xyz:3333 -u YOUR_MONERO_WALLET_ADDRESS -p worker1 -k

Replace YOUR_MONERO_WALLET_ADDRESS with your actual Monero wallet address.

3

Start Mining

Double-click start.bat to begin mining. You should see your hashrate and accepted shares.

Port Selection Guide

3333 Low-End Hardware (Up to 100 H/s) 1,000 difficulty
5555 Medium Hardware (Up to 1,000 H/s) 10,000 difficulty
7777 High-End Hardware (1,000+ H/s) 50,000 difficulty

Mining on Linux

1

Install Dependencies

sudo apt update
sudo apt install git build-essential cmake libuv1-dev libssl-dev libhwloc-dev
2

Download & Build XMRig

git clone https://github.com/xmrig/xmrig.git
cd xmrig
mkdir build && cd build
cmake ..
make -j$(nproc)
3

Start Mining

./xmrig -o alphablockmonero.xyz:3333 -u YOUR_MONERO_WALLET_ADDRESS -p worker1 -k
4

Run as Service (Optional)

Create a systemd service to run XMRig automatically:

sudo nano /etc/systemd/system/xmrig.service

# Add this content:
[Unit]
Description=XMRig Miner
After=network.target

[Service]
ExecStart=/path/to/xmrig/build/xmrig -o alphablockmonero.xyz:3333 -u YOUR_WALLET -p worker1
Restart=always
User=youruser

[Install]
WantedBy=multi-user.target

# Enable and start:
sudo systemctl enable xmrig
sudo systemctl start xmrig

Mining on macOS

1

Install Homebrew

If you don't have Homebrew installed:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
2

Install Dependencies & Build XMRig

brew install cmake libuv openssl hwloc
git clone https://github.com/xmrig/xmrig.git
cd xmrig
mkdir build && cd build
cmake .. -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl
make -j$(sysctl -n hw.logicalcpu)
3

Start Mining

./xmrig -o alphablockmonero.xyz:3333 -u YOUR_MONERO_WALLET_ADDRESS -p worker1 -k

Advanced Configuration

For advanced users, create a config.json file:

{
    "autosave": true,
    "cpu": {
        "enabled": true,
        "huge-pages": true,
        "hw-aes": null,
        "priority": null,
        "max-threads-hint": 100
    },
    "opencl": false,
    "cuda": false,
    "pools": [
        {
            "algo": "rx/0",
            "coin": "monero",
            "url": "alphablockmonero.xyz:3333",
            "user": "YOUR_MONERO_WALLET_ADDRESS",
            "pass": "worker1",
            "keepalive": true,
            "nicehash": false,
            "tls": false
        }
    ]
}

Useful command-line flags:

-k / --keepalive Send keepalive packets (recommended)
--cpu-max-threads-hint=N Use N% of CPU threads (e.g., 75)
--randomx-1gb-pages Enable 1GB pages for better performance
--donate-level=1 Set donation level (default 1%)
--tls Use TLS/SSL connection

📹 Video Tutorial

Tutorial video coming soon!

Check back later for step-by-step mining setup

Recent Blocks

Loading blocks...