Author

Topic: 🤖[ANN][BIS]Bismuth 2.0 - Beyond DeFi - page 132. (Read 156111 times)

legendary
Activity: 1288
Merit: 1002
How can i mine with GPU on pool?

it seems there is no GPU miner yet

Thanks


If you take a look a few pages back, there is someone claiming to have GPU miner but has not made it public and a lot of people have complained about this and asked dev to relaunch but dev has refused so far.
hero member
Activity: 594
Merit: 500
How can i mine with GPU on pool?

it seems there is no GPU miner yet

Thanks
Thanks.Why cant i open the latest version of wallet?
hero member
Activity: 527
Merit: 501
How can i mine with GPU on pool?

it seems there is no GPU miner yet

Thanks
sr. member
Activity: 742
Merit: 251
slack

hclivess
@everyone Cryptopia just confirmed they will accept $BIS #Bismuth, maybe even without an RPC server, with default Bismuth methods
hero member
Activity: 594
Merit: 500
How can i mine with GPU on pool?
newbie
Activity: 40
Merit: 0
http://prntscr.com/fvhjcj
the day passed - nothing has changed, tell me what am I doing wrong ?
Oh gods , I saw your address Smiley in the DEV POOL
newbie
Activity: 40
Merit: 0
http://prntscr.com/fvhjcj
the day passed - nothing has changed, tell me what am I doing wrong ?
legendary
Activity: 1932
Merit: 1273
How to know whether I have set up mining ? miner something somewhere sends, but I don't see my addresshttps://bismuth.acc-pool.pw/miners.php

maybe this help:
https://bismuth.acc-pool.pw/miners.php?miner="your address"
newbie
Activity: 40
Merit: 0
How to know whether I have set up mining ? miner something somewhere sends, but I don't see my addresshttps://bismuth.acc-pool.pw/miners.php
newbie
Activity: 19
Merit: 0
this is a great project, I'm looking forward to this project

yes,bismuth is a great coin
legendary
Activity: 1932
Merit: 1273
this is a great project, I'm looking forward to this project
legendary
Activity: 2114
Merit: 1090
=== NODE IS OK! ==
Thanks for the amazing guides, post your addresses, guys
 I made payouts for the first two blocks + 500 BIS reward for early testing, split among all participants
full member
Activity: 188
Merit: 100
Updated guide for how to CPU mine Bismuth on the acc-pool.

Miner stats link "https://bismuth.acc-pool.pw/miners.php?"

Ubuntu 16.04 Bismuth Mining Guide

1. Install server.

2. You can mine as root or create a new user.

3. Dependencies

   * sudo apt-get install python-twisted
   * sudo apt-get install python-pip
   * sudo apt-get install python-pip --fix-missing
   * sudo apt-get install python-socks
   * sudo apt-get install unzip

4. Download miner zip file

   * wget "https://www.dropbox.com/s/7kihptpklkik2hb/Miner.zip?dl=0"

5. Unzip Miner file

   * unzip Miner.zip?dl=0

6. CD into miner file

   * cd Miner

7. Create text file to use for launching miner

   * touch startminer.bash

8. Edit startminer.bash for your address, worker name and threads

   * nano startminer.bash

startminer.bash default text example to put in startminer.bash file

./miner user fd3b75f8bc6d1c76f5cf9b080fead0ea627cfb1c80de057d335e805a rig1 4    
    ^     ^                                     $                                                                 &  %
  (^=do not change)  ($=your Bismuth address) (&=your rig name) (%=number of threads. 1 thread per thread supported by your CPU ex. 4 core 8 thread CPU set to Cool

9. chmod files to be executable

   * chmod +x startminer.bash
   * chmod +x miner

9 1/2. (Optional for VPS) If on a hosted VPS and you want the miner to keep running after closing the SSH session run this.

   * tmux ( If not installed run * sudo apt-get install tmux )

Then run.

   * ./startminer.bash

Then press ctrl + b at the same time and then press d. You can then close the SSH session and the miner will keep running.

On reconnect to reopen to terminal window with the miner running use this command.

   * tmux attach
  

10. start miner using the startminer.bash file (If you used tmux for vps then no need to do this command again. Ignore 9 1/2 if installing to mine on a local machine)

   * ./startminer.bash

11. Link for node and wallet https://github.com/hclivess/Bismuth/releases/

If this file helped you please consider a donation of bismuth to my address fd3b75f8bc6d1c76f5cf9b080fead0ea627cfb1c80de057d335e805a

Donate BTC to 1PD4VwvqzGsuUxq3E3SVGKAsCW9vpkoELm

Donate RISE to 10610987743669520729R

Thanks!
sr. member
Activity: 364
Merit: 264
Both of the pools are working now. FYI some info for non-slackers

Dev pool

config.txt settings (note new pool address as of 7/11/2017):

Quote
mining_ip=94.113.207.67
mining_pool=1
pool_address=340c195f768be515488a6efedb958e135150b2ef3e53573a7017ac7d

Web link is: http://94.113.207.67:9080
Miner to use is: https://github.com/maccaspacca/stuff

Commands:

Install Python 3.5

Code:
apt install python3-pip python-twisted
(or equivalent on your platform)

Install all python dependencies:
Code:
pip3 install pillow pyqrcode pypng pyinstaller bottle pycrypto simple-crypt win_inet_pton PySocks

Get bismuth:
Code:
git clone https://github.com/hclivess/Bismuth.git

Grab miner and put all files in optiminer/* into Bismuth directory
https://github.com/maccaspacca/stuff/tree/master/optiminer

Get a ledger.db file and put into static/:
https://drive.google.com/file/d/0B3krI6WqvUWhd2VQNjlzZl8wbEk/edit

Make changes to config.txt as above

Run a node:
(in Bismuth directory)
Code:
python3 node.py

Run miner:
Code:
python3 optipool.py 50

As an alternative, a windows compiled .exe is available for testing here:
https://github.com/maccaspacca/stuff/releases/tag/v0.1


Acc-pool

Instructions are here (credits aetsen):

Quote
Ubuntu 16.04 Bismuth Mining Guide
1. Install server.
2. You can mine as root or create a new user.
3. Dependencies
   * sudo apt-get install python-twisted
   * sudo apt-get install python-pip
   * sudo apt-get install python-pip --fix-missing
   * sudo apt-get install python-socks
   * sudo apt-get install unzip
4. Download miner zip file
    * wget "https://www.dropbox.com/s/7kihptpklkik2hb/Miner.zip?dl=0"
5. Unzip Miner file
    * unzip Miner.zip?dl=0
6. CD into miner file
    * cd Miner
7. Create text file to use for launching miner
    * touch startminer.bash
8. Edit startminer.bash for your address, worker name and threads
startminer.bash default text
./miner user fd3b75f8bc6d1c76f5cf9b080fead0ea627cfb1c80de057d335e805a rig1 4    
    ^     ^                           $                                 &  %
  (^=do not change)  ($=your Bismuth address) (&=your rig name) (%=number of threads. 1 thread per thread supported by your CPU ex. 4 core 8 thread CPU set to Cool
9. chmod files to be executable
    * chmod +x startminer.bash
    * chmod +x miner
10. start miner using the startminer.bash file
    * ./startminer.bash
11. Link for node and wallet https://github.com/hclivess/Bismuth/releases/tag/3.673
If this file helped you please consider a donation of bismuth to my address fd3b75f8bc6d1c76f5cf9b080fead0ea627cfb1c80de057d335e805a

Web link is: https://bismuth.acc-pool.pw/miners.php
Miner to use is as above (optipool does not work)

---

Both pools are paying out now. Throwing some hashpower on both.
legendary
Activity: 957
Merit: 1006
in slack
hero member
Activity: 1162
Merit: 568
Where can I find an instruction for using the pool?
full member
Activity: 235
Merit: 230
does the pool work?I have waited for this for a long time..
legendary
Activity: 2114
Merit: 1090
=== NODE IS OK! ==
My pool mined 2 blocks so far (4edadac9093d9326ee4b17f869b14f1a2534f96f9c5d7b48dc9acaed)
I will be adding some extra dev funds for the rewards, just a few more blocks, have to do it manually thus far

also, there is one other pool ran by euroline
https://cryptobismuth.slack.com/messages/C63NNSC5S/search/ip/

his custom code

actually the first payout will be based on the following shares:



4edadac9093d9326ee4b17f869b14f1a2534f96f9c5d7b48dc9acaed    4
259cff5d5c13912ce4bff8e8c3ce59bab4e7ae6a33305d80d94f16d6    683
5376cc50afb1af7a59d1739de134ce0e7024bed757f45fa33a5b1167    324
92563981cc1e70d160c176edf368ea4bbc1d8d5ba63aceee99ef6ebd    557
bd78cec264135952ff318cdacb12ad309688fbec1045c6c9c2073060    291
4ff8bc5a641a20539f6d4215092dcda87ef1df1ee0771b067d2f234c    567
5bc1ff50b8e4df08f939e1fa83f7c5864ba88f2292ffe633fc4835c2    269
410c3c7051c69765bd07f29df56ef9e3984667c3c17dd6dd9e056209    5026
9f81ad189307824f016c806bdc11f98cf382653d9f07f3639820e8f5    594
7d5c2999f9a2e44c23e7b2b73b4c0edae308e9d39482bf44da481edc    211
86cbc69e9f8522c58f5c97fd13e7a5634ea6012207984c54bf83fc7d    433
a5603440dea956dd5d832b8c50e4d3df0d1faeb571406959a6a60ff6    119
hero member
Activity: 594
Merit: 500
It seems that difficute to launch on exchange as new code.
newbie
Activity: 19
Merit: 0
Interesting concept, will watch this.

bismuch is very good,I think,that is right
Jump to: