Search content
Sort by

Showing 20 of 219 results by Bones972
Post
Topic
(Unknown Title)
by
Bones972
on 06/05/2020, 20:30:57 UTC
Actual price - 0,12$
Post
Topic
(Unknown Title)
by
Bones972
on 06/05/2020, 18:11:02 UTC
About miner
KawPowMiner is an ProgPoW GPU mining worker: with KawPowMiner you can mine Ravencoin, which relies on an ProgPoW-based Proof of Work thus including Ethereum ProgPoW and others. This is the actively maintained version of kawpowminer.

Features
-First KawPow miner software for miners.
-OpenCL mining
-Nvidia CUDA mining
-Realistic benchmarking against arbitrary epoch/DAG/blocknumber
-On-GPU DAG generation (no more DAG files on disk)
-Stratum mining without proxy
-OpenCL devices picking
-Farm failover (getwork + stratum)
-Ethereum-based ProgPoW implementations supported only, doesn't support previous ethash version or Bitcoin-based forks.

Download
Windows: https://github.com/RavenCommunity/kawpowminer/releases/download/1.2.2/kawpowminer-windows-1.2.2.zip
Ubuntu16: https://github.com/RavenCommunity/kawpowminer/releases/download/1.2.2/kawpowminer-ubuntu16-1.2.2.zip
Ubuntu18: https://github.com/RavenCommunity/kawpowminer/releases/download/1.2.2/kawpowminer-ubuntu18-1.2.2.zip

Source: https://github.com/RavenCommunity/kawpowminer

Usage
The kawpowminer is a command line program. This means you launch it either from a Windows command prompt or Linux console, or create shortcuts to predefined command lines using a Linux Bash script or Windows batch/cmd file. For a full list of available command, please run:
Code:
kawpowminer --help

Examples connecting to pools
Connecting to MinerMore Testnet:

Code:
./kawpowminer -P stratum+tcp://<wallet>.worker@rvnt.minermore.com:4505
or
Code:
kawpowminer.exe -P stratum+tcp://<wallet>.worker@rvnt.minermore.com:4505

Build from source
Ubuntu

After cloning this repository into kawpowminer, it can be built with commands like:
Code:
cd kawpowminer
git submodule update --init --recursive
mkdir build
cd build
cmake .. -DETHASHCUDA=ON
make -sj $(nproc)

Windows

Prerequisites:
1. Install Visual Studios (2019) (with the additional installation package "C++ Cmake Tools for Windows)
2. Install latest perl to C:\Perl (https://www.perl.org/get.html) Follow the steps outlined and the default perl installtion should work

Building via Visual Studios Command Line:
Open "Developer Command Prompt for VS 2019"

1. Open StartMenu and search for "Developer Command Prompt for VS 2019"
2. Follow these steps:
Code:
cd C:\Users\USER_NAME\PATH_TO_KAWPOW\kawpowminer
mkdir build
cd build
cmake .. -DETHASHCUDA=ON
devenv kawpowminer.sln /build

Building via Visual Studios GUI (This build doesn't seem to work for some 20XX Nvidia cards)

1. Open Visual Studios
2. Open CMakeLists.txt file with File->Open->CMake
3. Wait for intelligence to build the cache (this can take some time)
4. Build the project (CTRL+SHIFT+B) or find the build command in the menu

ProgPoW can be tuned using the following parameters. The proposed settings have been tuned for a range of existing, commodity GPUs:
Code:
PROGPOW_PERIOD
: Number of blocks before changing the random program
Code:
PROGPOW_LANES
: The number of parallel lanes that coordinate to calculate a single hash instance
Code:
PROGPOW_REGS
: The register file usage size
Code:
PROGPOW_DAG_LOADS
: Number of uint32 loads from the DAG per lane
Code:
PROGPOW_CACHE_BYTES
: The size of the cache
Code:
PROGPOW_CNT_DAG
: The number of DAG accesses, defined as the outer loop of the algorithm (64 is the same as Ethash)
Code:
PROGPOW_CNT_CACHE
: The number of cache accesses per loop
Code:
PROGPOW_CNT_MATH
: The number of math operations per loop
The value of these parameters has been tweaked between version 0.9.2 (live on the Gangnam testnet) and 0.9.3 (proposed for Ethereum adoption).

License
https://github.com/RavenCommunity/kawpowminer/blob/master/LICENSE

FAQ

Why is my hashrate with Nvidia cards on Windows 10 so low?
The new WDDM 2.x driver on Windows 10 uses a different way of addressing the GPU. This is good for a lot of things, but not for ETH mining.

-For Kepler GPUs: I actually don't know. Please let me know what works best for good old Kepler.
-For Maxwell 1 GPUs: Unfortunately the issue is a bit more serious on the GTX750Ti, already causing suboptimal performance on Win7 and Linux. Apparently about 4MH/s can still be reached on Linux, which, depending on ETH price, could still be profitable, considering the relatively low power draw.
-For Maxwell 2 GPUs: There is a way of mining ETH at Win7/8/Linux speeds on Win10, by downgrading the GPU driver to a Win7 one (350.12 recommended) and using a build that was created using CUDA 6.5.
-For Pascal GPUs: You have to use the latest WDDM 2.1 compatible drivers in combination with Windows 10 Anniversary edition in order to get the full potential of your Pascal GPU.

Why is a GTX 1080 slower than a GTX 1070?
Because of the GDDR5X memory, which can't be fully utilized for ETH mining (yet).

Are AMD cards also affected by slowdowns with increasing DAG size?
Only GCN 1.0 GPUs (78x0, 79x0, 270, 280), but in a different way. You'll see that on each new epoch (30K blocks), the hashrate will go down a little bit.

Can I still mine ETH with my 2GB GPU?
Not really, your VRAM must be above the DAG size (Currently about 2.15 GB.) to get best performance. Without it severe hash loss will occur.

What are the optimal launch parameters?
The default parameters are fine in most scenario's (CUDA). For OpenCL it varies a bit more. Just play around with the numbers and use powers of 2. GPU's like powers of 2.

What does the --cuda-parallel-hash flag do?
These improvements were optimised for GTX 1060 GPUs which saw a large increase in hashrate, GTX 1070 and GTX 1080/Ti GPUs saw some, but less, improvement. The default value is 4 (which does not need to be set with the flag) and in most cases this will provide the best performance.

Can I CPU Mine?
No, use geth, the go program made for ethereum by ethereum.

CUDA GPU order changes sometimes. What can I do?
There is an environment var CUDA_DEVICE_ORDER which tells the Nvidia CUDA driver how to enumerates the graphic cards. The following values are valid:

Code:
FASTEST_FIRST (Default)
- causes CUDA to guess which device is fastest using a simple heuristic.
Code:
PCI_BUS_ID
- orders devices by PCI bus ID in ascending order.
To prevent some unwanted changes in the order of your CUDA devices you might set the environment variable to PCI_BUS_ID. This can be done with one of the 2 ways:

Linux:

  Adapt the
Code:
/etc/environment
file and add a line
Code:
CUDA_DEVICE_ORDER=PCI_BUS_ID
  Adapt your start script launching kawpowminer and add a line export
Code:
CUDA_DEVICE_ORDER=PCI_BUS_ID

Windows:

  Adapt your environment using the control panel (just search setting environment windows control panel using your favorite search engine)
  Adapt your start (.bat) file launching kawpowminer and add a line set
Code:
CUDA_DEVICE_ORDER=PCI_BUS_ID
or setx
Code:
CUDA_DEVICE_ORDER PCI_BUS_ID
.

nvrtc64_102_0.dll not found...
Code:
Error: The code execution cannot be processed because nvrtc64_102_0.dll was not found
or
Code:
error while loading shared libraries: libnvrtc.so.10.2: cannot open shared object file: No such file or directory
You have to upgrade your Nvidia drivers. Install cuda 10.2.

Why windows defender delete exe file?
The exe of a miner is recognized by antiviruses as a virus, for normal operation add the folder with the miner to the antivirus exceptions.
Post
Topic
Board Альтернативные криптовалюты
[ANN] EtherCore - децентрализованная платформа (ProgPOW/Mineable)
by
Bones972
on 05/05/2020, 20:52:59 UTC
О проекте
EtherCore является децентрализованной платформой приложений и интеллектуальных контрактов, в которой размещаются различные приложения, которые можно использовать в реальном мире. EtherCore предлагает высоко-распределенную, отказоустойчивую и критически важную сетевую основу для вашего бизнес-цепочки. EtherCore состоит из ProgPoW, программного консенсусного алгоритма проверки работоспособности и Proof-of-Authority для решения проблемы трилеммы для публичной платформы блокчейна. Используя безопасные, стабильные и масштабируемые согласованные правила, пользователи и разработчики могут пользоваться децентрализованным Интернетом без каких-либо ограничений пропускной способности сети. Сеть EtherCore может масштабироваться от тысяч до миллионов транзакций в секунду.

Особенности

EtherCore безопасен

Алгоритм согласования Mainnet EtherCore основан на ProgPoW, программном алгоритме согласования работ, который
считается наиболее устойчивым к ASIC алгоритмом, дружественным к GPU. Сильная децентрализация, поддерживаемая низовыми разработчиками графических процессоров,
что делает EtherCore безопасной и необратимой платформой.

EtherCore - это быстро

EtherCore - это быстрая платформа блокчейна, для основного компьютера останется 14-секундное время подтверждения транзакции, а боковая цепь сможет
предоставьте среднее время подтверждения в 1 секунду, которое можно рассматривать как решение блокчейна в реальном времени. Динамическая емкость блока
как для основной сети, так и для боковой цепи, что обеспечивает достаточную пропускную способность сети для разработчиков и пользователей DApp по требованию.
EtherCore использует более быстрые решения для хранения данных в реальном времени, Sidechain сможет играть роль кеша для основной сети
поскольку он может обрабатывать более чем в 1000 раз большую емкость, чем оригинальный блокчейн Ethereum.

EtherCore стабильна

EtherCore разработан таким образом, чтобы быть устойчивым к любым видам сторонних помех, особенно для борьбы с 51% атакой или отрицанием
развертывание сервисных транзакций для незаконного использования сети или любых транзакций DApp. Любая приверженность к основной сети будет
обеспечивается вечно с помощью алгоритма ProgPoW, и боковая цепь сможет обрабатывать любые обновления, необходимые для конкретных
вид децентрализованных приложений от емкости сети до обновления контракта в реальном времени.

Кошельки
Windows: https://github.com/ethercore/desktop-wallet/releases/download/v0.10.1/EtherCore.Wallet-0.10.1-win.zip
Linux: https://github.com/ethercore/desktop-wallet/releases/download/v0.10.1/EtherCore-Wallet-linux64-0-10-1.zip
MAC: https://github.com/ethercore/desktop-wallet/releases/download/v0.10.1/EtherCore.Wallet-0.10.1-mac.zip

Source: https://github.com/ethercore/go-ethercore/releases
Web wallet: https://wallet.ethercore.io/
Parity: https://github.com/paritytech/parity-ethereum/releases
Myetherwallet: https://www.myetherwallet.com/
Trezor: https://trezor.io/
Google play: https://play.google.com/store/apps/details?id=com.ethercoreorg.ethercore.wallet
App store: скоро

Ноды для кошелька
EtherCore
Windows: https://github.com/ethercore/go-ethercore/releases/download/v1.10.0/ethercore-geth-win64-v1.10.0.zip
Linux: https://github.com/ethercore/go-ethercore/releases/download/v1.10.0/ethercore-geth-linux-v1.10.0.tar.gz
Mac: https://github.com/ethercore/go-ethercore/releases/download/v1.10.0/ethercore-geth-osx-v1.10.0.tar.gz

Parity: https://github.com/paritytech/parity-ethereum/releases

Тестнет портал
https://testnet.ethercore.io/

Техническая документация
https://docs.ethercore.io/

Официальный майнер
EtherCoreMiner: https://github.com/ethercore/ethcoreminer/releases/tag/v1.0.0

Эксплорер
https://explorer.ethercore.io/

Майнинг пулы
https://pool.ethercore.io/
https://ere.crazypool.org/

Статистика майнинга
https://stats.ethercore.io/
https://miningpoolstats.stream/ethercore

Соц медиа
Twitter: https://twitter.com/ethercore
Discord: https://discord.gg/3fmKXj
Телеграмм: https://t.me/ethercore
Медиум: https://medium.com/ethercore

Что пишут о проекте
https://www.marketwatch.com/press-release/ethercore-launches-public-testnet-subnetwork-a-progpow-algorithm-powered-by-ethereum-blockchain-2020-02-13
https://classifieds.usatoday.com/press/ethercore-launches-public-testnet-subnetwork-a-progpow-algorithm-powered-by-ethereum-blockchain
https://apnews.com/ACCESSWIRE/7b6799352fd2d48a5ea136c86d6808c1
https://www.yahoo.com/news/launch-ethercore-smart-contract-platform-014500682.html
https://finance.yahoo.com/news/launch-ethercore-smart-contract-platform-014500682.html
http://markets.ask.com/ask/news/read/39480044
http://finance.dailyherald.com/dailyherald/news/read/39480044

Наши консультанты
Roger Wattenhofer: https://www.linkedin.com/in/roger-wattenhofer-4466731/
Kristy-Leigh Minehan: https://www.linkedin.com/in/ohgodagirl/

Вебсайт
https://www.ethercore.io/
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] HandShake - experimental peer-to-peer root naming system (Mineable coin)
by
Bones972
on 05/05/2020, 20:14:55 UTC
Private Internet Access users can now resolve internet names with the Handshake Naming System (HNS)

How to resolve internet names with the Handshake Naming System: https://www.privateinternetaccess.com/blog/private-internet-access-users-can-now-resolve-internet-names-with-the-handshake-naming-system-hns/
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] HandShake - experimental peer-to-peer root naming system (Mineable coin)
by
Bones972
on 04/05/2020, 18:14:00 UTC
Actual price - 0,13$
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] HandShake - experimental peer-to-peer root naming system (Mineable coin)
by
Bones972
on 02/05/2020, 19:59:47 UTC
Follow the project, more info coming soon
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] HandShake - experimental peer-to-peer root naming system (Mineable coin)
by
Bones972
on 01/05/2020, 07:48:17 UTC
Actual price - 0,13$
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] HandShake - experimental peer-to-peer root naming system (Mineable coin)
by
Bones972
on 28/04/2020, 20:27:06 UTC
Actual price - 0,12$
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] HandShake - experimental peer-to-peer root naming system (Mineable coin)
by
Bones972
on 27/04/2020, 18:35:20 UTC
Actual price - 0,11$
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] HandShake - experimental peer-to-peer root naming system (Mineable coin)
by
Bones972
on 21/04/2020, 19:21:20 UTC
New information about project coming soon
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] HandShake - experimental peer-to-peer root naming system (Mineable coin)
by
Bones972
on 19/04/2020, 21:40:27 UTC
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] HandShake - experimental peer-to-peer root naming system (Mineable coin)
by
Bones972
on 19/04/2020, 12:29:23 UTC
Actual price - 0,12$
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] HandShake - experimental peer-to-peer root naming system (Mineable coin)
by
Bones972
on 16/04/2020, 13:30:49 UTC
Actual price - 0,12$
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [HNS] HandShake - peer-to-peer naming system [POW/New Algo/Exchanges]
by
Bones972
on 15/04/2020, 15:36:33 UTC
Actual price 0,11$
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [HNS] HandShake - peer-to-peer naming system [POW/New Algo/Exchanges]
by
Bones972
on 15/04/2020, 03:24:36 UTC
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [HNS] HandShake - peer-to-peer naming system [POW/New Algo/Exchanges]
by
Bones972
on 14/04/2020, 19:48:42 UTC
Actual price - 0,12$
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [HNS] HandShake - peer-to-peer naming system [POW/New Algo/Exchanges]
by
Bones972
on 14/04/2020, 08:29:33 UTC
You can find out information about the roadmap from the developers in a telegram: https://t.me/handshake_hns
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [HNS] HandShake - peer-to-peer naming system [POW/New Algo/Exchanges]
by
Bones972
on 13/04/2020, 20:22:25 UTC
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [HNS] HandShake - peer-to-peer naming system [POW/New Algo/Exchanges]
by
Bones972
on 13/04/2020, 13:47:15 UTC
Actual price - 0,12$
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [HNS] HandShake - peer-to-peer naming system [POW/New Algo/Exchanges]
by
Bones972
on 12/04/2020, 19:25:14 UTC