Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Slimo - Let's get slimy together!
by
Aingmangel
on 09/12/2024, 11:52:32 UTC
How to Mine Your First Slimo Block

  • 1. Extract Files: Extract slimo-qt-windows.zip to your Downloads folder. 
  • 2. Create Config: Open Notepad, paste the wallet config below, and save as slimo.conf in %appdata%\Slimo:
Code:
rpcuser=rpc_slimo
rpcpassword=dR2oBQ3K1zYMZQtJFZeAerhWxaJ5Lqeq9J2
rpcbind=127.0.0.1
rpcallowip=127.0.0.1
listen=1
server=1
addnode=node3.walletbuilders.com
  • 3. Make Mining Script: Use Notepad to create mine.bat with the script below, saving it in the wallet folder:
    Code:
    @echo off
    set SCRIPT_PATH=%cd%
    cd %SCRIPT_PATH%
    echo Press [CTRL+C] to stop mining.
    :begin
     for /f %%i in ('slimo-cli.exe getnewaddress') do set WALLET_ADDRESS=%%i
     slimo-cli.exe generatetoaddress 1 %WALLET_ADDRESS%
    goto begin
    • 4. Start Mining: Launch your wallet and execute mine.bat to mine your first block!