Mining $MRDN on GPU

Mining $MRDN on GPU


🇷🇺 RU · Telegram


Windows:

1) Install NodeJS: https://nodejs.org/dist/v20.11.0/node-v20.11.0-x64.msi

2) Download and extract the miner: https://github.com/TrueCarry/JettonGramGpuMiner

3) Create file in a folder config.txt with your seed phrase (better create a new one):
SEED=word1 word2…

4) Set the PoW Giver in the file start_mrdn.bat (edit the file in a text editor and change the --givers value). Only Extra Small Givers are left, so set it to 100:

node send_meridian.js --api tonapi --givers 100

5) Run start_mrdn.bat


Linux / Mac OS:

1) Download and extract the miner: https://github.com/TrueCarry/JettonGramGpuMiner

2) Create file in a folder config.txt with your seed phrase (better create a new one):
SEED=word1 word2…

3) Create file start_mrdn.sh and fill it with:

#!/bin/bash
npm install

while true; do
node send_meridian.js --api tonapi --bin ./pow-miner-opencl-macos --givers 100 
sleep 1; 
done;

4) Open a terminal and navigate to the directory with the miner using the command: 
cd /path/to/miner/directory

Replace with your path to the miner. To avoid typing the path manually, you can drag the folder directly into the terminal

5) Start the miner with a command: sh start_mrdn.sh


AMD:

Add --bin amd to start_mrdn.bat:

node send_meridian.js --api tonapi --givers 100 --bin amd

Report Page