Der Service IPv64.net stellt neben anderen häufig gebrauchten Diensten im Internet, einen fairen Mining Pool zur Verfügung.
There are different ways to create a Monero wallet. The best way is to use the official Monero wallet or create an account with one of the online crypto exchanges. Additionally, there are hardware wallets such as Ledger Nano.
Official Monero Wallet
Official Monero Crypto Exchanges
Smartphone App
Hardware Wallet - Ledger Nano
The best results and experiences we have made with the software "XMRig". However, miners such as "cpuminer" also work very efficiently.
xmrig.exe -o xmr.ipv64.io:4444 -u <YOUR_WALLET_ADDRESS>
./xmrig -o xmr.ipv64.io:4444 -u <YOUR_WALLET_ADDRESS>
Optional: --threads=4 (Use only X Threads/CPUs)
XMRig Configuration File - Optional
"pools": [
{
"url": "xmr.ipv64.io:4444",
"user": "<address>",
"pass": "x"
}
]
A miner can also be launched on Docker / container environments. By specifying threads, you can select how many CPUs should be used for this.
Filename: docker-compose.yml
version: "3.8"
services:
xmrig:
container_name: xmrig
hostname: xmrig
image: metal3d/xmrig:latest
restart: unless-stopped
environment:
- POOL_URL=xmr.ipv64.io:4444
- POOL_USER=<wallet-address>
#- POOL_PASS="x"
- DONATE_LEVEL=1
#- PRIORITY="1"
#- THREADS="1"