For Windows:
- Download and install NodeJS: nodejs official web site
- Download and unwrap miner: GitHub - TrueCarry/JettonGramGpuMiner
- Create file in a folder config.txt with your seed phrase(better create a new one): SEED=word1 word2…
- Change PoW Giver in the start_mrdn.bat (edit file in text redactor and change value to the preferred one : 100/1000/10000)
- Runstart_mrdn.bat
For Linux / Mac OS:
- Install NodeJS - node js official web site
- Download and unwrap miner: GitHub - TrueCarry/JettonGramGpuMiner
- 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; - Run script from terminal with “sh start_mrdn.sh”