Connect to Vecno Pool
Quick Start
Connect your GPU miner to start earning VEC immediately.
./vecno-miner -a YOUR_VECNO_ADDRESS --stratum-server junopoolnogain.xyz --stratum-port 5555 --stratum-worker YOUR_WORKER_NAME
Pool Endpoints
Step by Step Guide
1. Download the Miner
Download the Vecno GPU miner from our GitHub releases page.
# Linux
wget https://github.com/pkt-cash/pktd/releases/latest/download/vecno-miner-linux-amd64.tar.gz
tar -xzf vecno-miner-linux-amd64.tar.gz
# Windows
# Download vecno-miner-windows-amd64.zip from releases
2. Get a Vecno Wallet
Create a Vecno wallet to receive your mining rewards. You can use the CLI wallet or a GUI wallet.
# Generate new wallet address using vecnod
./vecnod --generate-address
# Your address will look like:
# vecno:qpgeycxxstj94z76n3um8nnxpg7n2hzasv36zd3l8gtfg4mydrf5k6wq5dltq
3. Start Mining
Run the miner with your wallet address and connect to the pool.
NVIDIA GPU (CUDA)
./vecno-miner \
-a vecno:YOUR_ADDRESS_HERE \
--stratum-server junopoolnogain.xyz \
--stratum-port 5555 \
--stratum-worker rig1
AMD GPU (OpenCL)
./vecno-miner \
-a vecno:YOUR_ADDRESS_HERE \
--stratum-server junopoolnogain.xyz \
--stratum-port 5555 \
--stratum-worker rig1 \
--cuda-disable
CPU Only
./vecno-miner \
-a vecno:YOUR_ADDRESS_HERE \
--stratum-server junopoolnogain.xyz \
--stratum-port 5555 \
--stratum-worker rig1 \
--cuda-disable \
--opencl-disable \
-t 4
Mining Tips
GPU Power
MemHash is optimized for GPU mining. NVIDIA cards perform best with CUDA.
Temperature
Keep your GPU below 80°C for optimal performance and longevity.
Connection
Use a stable internet connection. Vecno has 1-second blocks, so latency matters.
Workers
Use unique worker names for each rig to track performance separately.
Troubleshooting
- Connection refused - Check if the pool is running and your firewall allows outgoing connections on port 5555.
- No shares found - Make sure your GPU drivers are up to date. For NVIDIA, use driver version 525 or newer.
- High rejection rate - Try using a lower difficulty port or check your internet connection stability.
- Low hashrate - Ensure no other applications are using your GPU. Close browsers and other GPU-intensive apps.