Created
March 30, 2025 18:46
-
-
Save makertronic/1421ebd09421b241abdba726e168450a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ############################################################################### | |
| # # | |
| # MOCHIMO - Tutoriel en ligne de commande Bash # | |
| # Auteur : Makertronic # | |
| # Web : https://www.makertronic-yt.com/ # | |
| # Date : 08/03/2025 # | |
| # Description : Minage du MCM # | |
| # # | |
| ############################################################################### | |
| # # | |
| # NE PAS DIFFUSER # | |
| # Copyright 2025 Makertronic. tous droits réservés # | |
| # # | |
| ############################################################################### | |
| ############################################################################### | |
| # # | |
| # Liens # | |
| # # | |
| ############################################################################### | |
| - Site officiel : https://mochimo.org/ | |
| - Wallet : https://chromewebstore.google.com/detail/mochimo-wallet/fkogefgjocnflhankmffnibdofdiiiho | |
| - Exchange : https://vindax.com/exchange-advanced.html?symbol=MCM_BTC | |
| - Discord pool : https://discord.gg/hcjZUVCnh7 | |
| - Pool : https://mochimodash.ddns.net/d/beeckp9iv0b9cd/mochipool?orgId=1&from=now-5m&to=now&timezone=browser&var-filter_wallet=$__all&var-Last_blk=697871&refresh=5m | |
| Tokenomics | |
| - Offre max 79 000 0000 MCM | |
| - Pas de ICO | |
| - 3/8 des coins déjà minés | |
| - Block time 84 secondes | |
| - Block rewards: (apparemment) 12.9 coins | |
| ############################################################################### | |
| # # | |
| # Installation du miner Linux/WSL # | |
| # # | |
| ############################################################################### | |
| # Installer CUDA et git | |
| sudo apt update | |
| sudo apt install -y g++ libstdc++-12-dev nvidia-cuda-toolkit git make | |
| # compiler le miner | |
| git clone https://github.com/mochimodev/mochimo.git | |
| make -C mochimo/ miner | |
| ############################################################################### | |
| # # | |
| # Installation du miner # | |
| # # | |
| ############################################################################### | |
| cd mochimo/bin/ | |
| wget https://mochimodash.ddns.net/download/Mochipool | |
| chmod +x Mochipool | |
| ############################################################################### | |
| # # | |
| # Lancer le miner # | |
| # # | |
| ############################################################################### | |
| #Le mineur se trouve dans le repertoire mochimo/bin/ | |
| # Syntaxe : | |
| ./Mochipool -u votre_pseudo_discord -r nom_de_votre_rig -w votre_wallet | |
| # Par exemple : | |
| ./Mochipool -u makertronic -r worker001 -w 25byw63Bu4gF4eVjrc2hktKo3hicn6o | |
| # ou le lancer dans un screen : | |
| screen ./Mochipool -u makertronic -r worker001 -w 25byw63Bu4gF4eVjrc2hktKo3hicn6o | |
| ############################################################################### | |
| # # | |
| # OC # | |
| # # | |
| ############################################################################### | |
| 3060ti ~0.75MH per 94W | |
| nvtool --setmem 5001 --setcoreoffset 150 --setcore 1550 | |
| 3070, 3070ti, 3080 (laptop gpu, must apply to others too) ~1.10MH per 90W | |
| nvtool --setmem 5001 --setcoreoffset 220 --setcore 1850 | |
| 4070ti ~1.80MH per 100W | |
| nvtool --setmem 5001 --setcoreoffset 290 --setcore 2400 | |
| 4080 (laptop gpu, must apply to others too) ~1.85MH per 85W | |
| nvtool --setmem 5001 --setcoreoffset 290 --setcore 2400 | |
| 4090 3.89MH pour 210w | |
| nvtool --setcoreoffset 300 --setclocks 2400 --setmem 5001 --setpl 350 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment