mirror of
https://github.com/xmrig/xmrig.git
synced 2024-11-16 15:57:38 +00:00
7aba194d3b
Change back to script's folder when started as administrator
20 lines
1 KiB
Batchfile
20 lines
1 KiB
Batchfile
:: Example batch file for mining Monero at a pool
|
|
::
|
|
:: Format:
|
|
:: xmrig.exe -o <pool address>:<pool port> -u <pool username/wallet> -p <pool password>
|
|
::
|
|
:: Fields:
|
|
:: pool address The host name of the pool stratum or its IP address, for example pool.hashvault.pro
|
|
:: pool port The port of the pool's stratum to connect to, for example 3333. Check your pool's getting started page.
|
|
:: pool username/wallet For most pools, this is the wallet address you want to mine to. Some pools require a username
|
|
:: pool password For most pools this can be just 'x'. For pools using usernames, you may need to provide a password as configured on the pool.
|
|
::
|
|
:: List of Monero mining pools:
|
|
:: https://miningpoolstats.stream/monero
|
|
::
|
|
:: Choose pools outside of top 5 to help Monero network be more decentralized!
|
|
:: Smaller pools also often have smaller fees/payout limits.
|
|
|
|
cd %~dp0
|
|
xmrig.exe -o pool.hashvault.pro:3333 -u 48edfHu7V9Z84YzzMa6fUueoELZ9ZRXq9VetWzYGzKt52XU5xvqgzYnDK9URnRoJMk1j8nLwEVsaSWJ4fhdUyZijBGUicoD -p x
|
|
pause
|