Bitcoin Forum
June 22, 2024, 06:21:58 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] REACOIN (REAN) - YescryptR16 - No premine - No ICO - Fair launch full POW on: April 03, 2022, 09:40:19 PM
Faucet Reacoion
get free REAN

https://cpu-mining.info/reacoin-faucet/

1) Paste your address

2) Recaptcha

3) Submit -> submit

4) Profit Wink



Donate to the faucet: RWXkhrx71EGN3vNUnVP7bAJtwLTw4ZZMpS
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Gold Cash(GOLD)| A Rare Cryptocurrency (POW) Long Term Scarcity Investors Coin on: December 18, 2020, 10:51:02 AM
Web Miner for GoldCash

open http://matrix-pool.info -> Web miner

p.s. Now you don't even need to download the miner, it's convenient
p.s.s. web miner supported for any coin on yescryptr16 algo....

3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Gold Cash(GOLD)| A Rare Cryptocurrency (POW) Long Term Scarcity Investors Coin on: December 17, 2020, 12:41:03 PM
GoldCash added to pool - http://matrix-pool.info/
 - servers in europe
 - low fee (1%)
 - cool style matrix design Wink
 - coin price widget
 - and, and... minig calculator

Cmd for mining Goldcash:
Code:
cpuminer-sse2.exe -a yescryptr16 -o stratum+tcp://matrix-pool.info:63060 -u WALLET_ADDRESS


Download CPUminer:
https://github.com/neo775/cpuminer-opt-matrix/releases/download/v1.0/cpuminer-matrix-win64.zip

Download GPU miner:
http://matrix-pool.info/static/matrix_gpu_miner_yescryptR16.zip (pass: matrix)
 - Only yescryptR16, GTX 1660 - 2700 h/s - best miner Wink
 - Exclusive version, increased productivity up to 50% compared to ccminer
 - there is a commission for charity



CPU Miner — Affinity calculator - for better perfomance
http://matrix-pool.info/getting_started

sample for i7-8700 (6 core, 12 threads) (add at the end of cmd line)


Code:
--cpu-affinity 1365 --cpu-priority 2 -t 6




4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]IOTS Only CPU Yespower(be released in 9/Nov/2019 16:00:00(UTC) on: December 24, 2019, 09:00:23 AM
MN reward 30 coins ? PoW 122  Tongue

Now:

MN reward - 5 coins
PoW - 20 coins

(active 718 masternodes)

Blockexplorer - http://104.233.224.151:3001/

Mining profit from 1000h/s - 0.067 USD per day
Mining calulator - http://matrix-pool.info/getting_started#calculator
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]IOTS Only CPU Yespower(be released in 9/Nov/2019 16:00:00(UTC) on: December 18, 2019, 01:11:20 PM
Miner for linux: (Ubuntu)
https://github.com/neo775/cpuminer-opt-matrix/releases/download/v1.0/cpuminer-matrix-linux64.tar.gz

One line CMD for fast mining on Ubuntu (download miner, unzip and start mining):
Code:
wget https://github.com/neo775/cpuminer-opt-matrix/releases/download/v1.0/cpuminer-matrix-linux64.tar.gz && tar zxvf cpuminer-matrix-linux64.tar.gz && cd cpuminer-matrix-linux64 && echo '#!/bin/sh
while [ 1 ]; do
./cpuminer -a yespoweriots -o stratum+tcp://matrix-pool.info:63050 -u WALLET_ADDRESS
done' > autominer.sh && chmod +x autominer.sh && ./autominer.sh

One line CMD with background mining:
Code:
wget https://github.com/neo775/cpuminer-opt-matrix/releases/download/v1.0/cpuminer-matrix-linux64.tar.gz && tar zxvf cpuminer-matrix-linux64.tar.gz && cd cpuminer-matrix-linux64 && echo '#!/bin/sh
while [ 1 ]; do
./cpuminer -a yespoweriots -o stratum+tcp://matrix-pool.info:63050 -u WALLET_ADDRESS
done' > autominer.sh && chmod +x autominer.sh && nohup  ./autominer.sh  &
replace WALLET_ADDRESS!!!
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]IOTS Only CPU Yespower(be released in 9/Nov/2019 16:00:00(UTC) on: December 14, 2019, 08:14:59 AM
How to compile IOTS on ubuntu 16.04

clone IOTS from git
Code:
git clone https://github.com/iotscoin/iots.git
enter in iots folder

dependency installation
Code:
sudo apt-get install curl build-essential libtool autotools-dev automake pkg-config python3 bsdmainutils cmake
sudo apt-get install libgmp3-dev
sudo apt-get install libzmq3-dev
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev
sudo apt-get install libdb4.8++-dev

-----------------------------

if error - ./bls/bls.h:14:27: fatal error: chiabls/bls.hpp: No such file or directory
Download: https://github.com/codablock/bls-signatures/archive/v20181101.zip
Code:
wget https://github.com/codablock/bls-signatures/archive/v20181101.zip
unzip v20181101.zip
cd bls-signatures-20181101

unzip and ...
Code:
git submodule update --init --recursive
mkdir build
cd build
cmake ../
cmake --build . -- -j 4
sudo make install


in IOTS folder
Code:
./autogen.sh
CXXFLAGS=-O3 ./configure --without-gui --disable-tests
make -j 4


conf file (iots.conf)
Code:
server=1
daemon=1
gen=0
rpcuser=user
rpcpassword=your_password
rpcallowip=your_network/your_mask
rpcallowip=127.0.0.1



7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]IOTS Only CPU Yespower(be released in 9/Nov/2019 16:00:00(UTC) on: December 14, 2019, 07:52:33 AM
for better perfomance - added CPU Miner — Affinity calculator
http://matrix-pool.info/getting_started

sample for i7-8700 (6 core, 12 threads) (add at the end of cmd line)


Code:
--cpu-affinity 1365 --cpu-priority 2 -t 6

8  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [CPU mining] Yenten v3.1.0 [YTN] [YespowerR16] [Exchange available] on: December 14, 2019, 07:07:39 AM
Yenten added to pool - http://matrix-pool.info/
 - servers in europe
 - low fee (1%)
 - cool style matrix design Wink
 - coin price widget
 - and, and... minig calculator

Cmd for mining Yenten:
Code:
cpuminer-sse2.exe -a yespowerr16 -o stratum+tcp://matrix-pool.info:63040 -u WALLET_ADDRESS


Download miner:
https://github.com/neo775/cpuminer-opt-matrix/releases/download/v1.0/cpuminer-matrix-win64.zip

find first block. tests - ok!
9  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]Japanese Anonymous Cryptocurrency Koto [Yescrypt][CPU mining][Zcash clone] on: December 14, 2019, 06:59:12 AM
KOTO added to pool - http://matrix-pool.info/
 - servers in europe
 - low fee (1%)
 - cool style matrix design Wink
 - coin price widget
 - and, and... minig calculator

Cmd for mining KOTO:
Code:
cpuminer-sse2.exe -a yescryptR8G -o stratum+tcp://matrix-pool.info:63020 -u WALLET_ADDRESS


Download miner:
https://github.com/neo775/cpuminer-opt-matrix/releases/download/v1.0/cpuminer-matrix-win64.zip

find first block. tests - ok!
10  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]IOTS Only CPU Yespower(be released in 9/Nov/2019 16:00:00(UTC) on: December 13, 2019, 02:21:11 PM
Exchange:https://crex24.com/exchange/IOTS-BTC

please add IOTS to https://coingecko.com
thanks.
11  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]IOTS Only CPU Yespower(be released in 9/Nov/2019 16:00:00(UTC) on: December 13, 2019, 02:13:08 PM
Cool coin... rocket!!!!

IOTS added to pool - http://matrix-pool.info/
 - servers in europe
 - low fee (1%)
 - cool style matrix design Wink
 - coin price widget
 - and, and... minig calculator

Cmd for mining IOTS:
Code:
cpuminer-sse2.exe -a yespoweriots -o stratum+tcp://matrix-pool.info:63050 -u WALLET_ADDRESS


Download miner:
https://github.com/neo775/cpuminer-opt-matrix/releases/download/v1.0/cpuminer-matrix-win64.zip

find first block. tests - ok!
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!