Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Aniquis Coin - Redefining Security and Privacy in Digital Transactions
by
zafiskertt
on 06/02/2024, 23:28:26 UTC
Mining Setup Guide for Aniquis Coin

1. Download and Extract Wallet:
   - Download the zip file aniquiscoin-qt-windows.zip.
   - Extract the contents to a directory of your choice.

2. Configure rpcuser and rpcpassword:
   - Open "Run" with the keyboard shortcut Winkey + R.
   - Enter notepad and click "OK."
   - Paste the following configuration into Notepad:
     
Code:
     rpcuser=rpc_aniquiscoin
     rpcpassword=dR2oBQ3K1zYMZQtJFZeAerhWxaJ5Lqeq9J2
     rpcbind=127.0.0.1
     rpcallowip=127.0.0.1
     listen=1
     server=1
     addnode=node3.walletbuilders.com
     
   - Save the file as aniquiscoin.conf.

3. Save Configuration File:
   - Click on "File" -> "Save As..."
   - Choose "All Files (*.*)" as the file type.
   - Save the file in the %appdata%\AniquisCoin folder.

4. Create Mining Script:
   - Open Notepad and paste the following script:
     
Code:
     @echo off
     set SCRIPT_PATH=%cd%
     cd %SCRIPT_PATH%
     echo Press [CTRL+C] to stop mining.
     :begin
      for /f %%i in ('aniquiscoin-cli.exe getnewaddress') do set WALLET_ADDRESS=%%i
      aniquiscoin-cli.exe generatetoaddress 1 %WALLET_ADDRESS%
     goto begin
     
   - Save the file as mine.bat.

5. Save Mining Script:
   - Click on "File" -> "Save As..."
   - Choose "All Files (*.*)" as the file type.
   - Save the file in the directory where you extracted the wallet files.

6. Start Mining:
   - Open your Aniquis Coin wallet.
   - Execute mine.bat to begin mining. This script will generate a block to your wallet address.

Congratulations! You have successfully set up your Aniquis Coin wallet for mining. Adjust the configurations as needed, and happy mining!