Pages:
Author

Topic: [ANN] Lyrabar - A rare bar with Lyra2REv2 algorithm, 0.9.1 is out! [CPU/GPU PoW] - page 23. (Read 67654 times)

newbie
Activity: 31
Merit: 0
My test p2pool successfully found a block yesterday, only just noticed so i can confirm that it will work just fine and will pay out.

EDIT: it found 2 blocks yesterday, that is awesome Cheesy
full member
Activity: 232
Merit: 100
Yeah this u can say fair distribution  Wink
No need for big rig or rent expensive hashes..

Right. I watched the rich list, the coin is very nicely distributed. I'm hoping we will have true holders.
full member
Activity: 180
Merit: 101
Yeah this u can say fair distribution  Wink
No need for big rig or rent expensive hashes..
legendary
Activity: 1193
Merit: 1000
Peaky Blinder
A lot happens on twitter. We have to spread the word. It's long term minning without rentals, so fair for everyone. Kiss
POM
sr. member
Activity: 547
Merit: 254
I'll be watching this very closely  Cool
excited!
newbie
Activity: 31
Merit: 0
Well I took it upon myself to try and build p2ppool for Lyrabar, it works and seems to be setup/mining correctly. Not sure if the Lyrabar devs are building their own or would be interested in the networks.py files?

http://i.imgur.com/ZwrG1UW.png

I'm not really a coder or anything, i just know how to follow instructions on how to change stuff to make it work Smiley

Dev's can PM me if you want the files...

Hi!

I also have working networks.py that i don't use, was about to release p2pool at the first but chose then NOMP. maybe we should commit them in one production version so the p2pools find each other with the right identifiers.
I'll post here my version.

Yes, i'd rather use your official identifiers going forward rather than my own. Only reason I did a P2Pool was because it can be beneficial for the coin to spread the hashrate and it's pretty easy to setup.
full member
Activity: 180
Merit: 101
member
Activity: 118
Merit: 10
The precious bar
Well I took it upon myself to try and build p2ppool for Lyrabar, it works and seems to be setup/mining correctly. Not sure if the Lyrabar devs are building their own or would be interested in the networks.py files?

http://i.imgur.com/ZwrG1UW.png

I'm not really a coder or anything, i just know how to follow instructions on how to change stuff to make it work Smiley

Dev's can PM me if you want the files...

Hi!

I also have working networks.py that i don't use, was about to release p2pool at the first but chose then NOMP. maybe we should commit them in one production version so the p2pools find each other with the right identifiers.
I'll post here my version.
newbie
Activity: 31
Merit: 0
It will need checking since this was my first time modifying p2ppool to work with this:

p2pool/networks.py
Code:
	lyrabar=math.Object( # --> main net
        PARENT=networks.nets['lyrabar'],
        SHARE_PERIOD=15, # seconds
        CHAIN_LENGTH=24*60*60//10, # shares
        REAL_CHAIN_LENGTH=24*60*60//10, # shares
        TARGET_LOOKBEHIND=200, # shares
        SPREAD=12, # blocks
        IDENTIFIER='a07a81c827cab983'.decode('hex'),
        PREFIX='7c3814a6bcdcf784'.decode('hex'),
        P2P_PORT=4046,
        MIN_TARGET=4,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=False,
        WORKER_PORT=4047,
        BOOTSTRAP_ADDRS='95.215.46.10 95.215.46.87'.split(' '),
        ANNOUNCE_CHANNEL='#p2pool-lyb',
        VERSION_CHECK=lambda v: True,
    ),

p2pool/bitcoin/networks.py
Code:
	lyrabar=math.Object(
        P2P_PREFIX='4d4d4d4d'.decode('hex'),
        P2P_PORT=4046,
        ADDRESS_VERSION=48,
        RPC_PORT=4047,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'lyrabaraddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 5*1971000 >> (height + 1)//210240,
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('lyra2re_hash').getPoWHash(data)),
        BLOCK_PERIOD=150, # s
        SYMBOL='LYB',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'Lyrabar') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/Lyrabar/') if platform.system() == 'Darwin' else os.path.expanduser('~/.lyrabar'), 'lyrabar.conf'),
        BLOCK_EXPLORER_URL_PREFIX='http://bitexp.net/block.php?coin=Lyrabar&hash=',
        ADDRESS_EXPLORER_URL_PREFIX='http://bitexp.net/address.php?coin=Lyrabar&address=',
        TX_EXPLORER_URL_PREFIX='http://bitexp.net/tx.php?coin=Lyrabar&tx=',
        SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//100 - 1),
        DUMB_SCRYPT_DIFF=128,
        DUST_THRESHOLD=0.03e8,
    ),

I'm all for one for having a go with stuff like this, obviously not 100% sure if all those are accurate right now, which is why i need a dev to check them.

EDIT: Forgot to add the explorer addresses...

P2Pool - http://178.62.42.146:4047/static/
Payments confirmed working from finding 2 blocks on this P2Pool, free free to use (Fee is 0.25%)

EDIT: It had the wrong number of total coins for the subsidy_func, i have updated.

EDIT 2: Updated host
full member
Activity: 180
Merit: 101
Well I took it upon myself to try and build p2ppool for Lyrabar, it works and seems to be setup/mining correctly. Not sure if the Lyrabar devs are building their own or would be interested in the networks.py files?

http://i.imgur.com/ZwrG1UW.png

I'm not really a coder or anything, i just know how to follow instructions on how to change stuff to make it work Smiley

Dev's can PM me if you want the files...

Nice! Woud you like to share that?
legendary
Activity: 1722
Merit: 1000
Admin of CoinMiners Pools
Hello guys


I just fixed the problem with fake share and banned the miner who was submiting fake shares , now everything is ok you can spred some hash to coinminers pool Smiley

Thanks ocminer for the help
newbie
Activity: 31
Merit: 0
Well I took it upon myself to try and build p2ppool for Lyrabar, it works and seems to be setup/mining correctly. Not sure if the Lyrabar devs are building their own or would be interested in the networks.py files?

http://i.imgur.com/ZwrG1UW.png

I'm not really a coder or anything, i just know how to follow instructions on how to change stuff to make it work Smiley

Dev's can PM me if you want the files...
full member
Activity: 180
Merit: 101
We are at Bter.com voting list:
bter.com/voting
legendary
Activity: 2688
Merit: 1240
Ah I think I got the fakehash vulneraibility fixed on Suprnova finally.


How did you do it ? i was just searching about this .

PM
legendary
Activity: 1722
Merit: 1000
Admin of CoinMiners Pools
Ah I think I got the fakehash vulneraibility fixed on Suprnova finally.


How did you do it ? i was just searching about this .
legendary
Activity: 1193
Merit: 1000
Peaky Blinder
Ah I think I got the fakehash vulneraibility fixed on Suprnova finally.


Yeap it seems ok now
legendary
Activity: 2688
Merit: 1240
Ah I think I got the fakehash vulneraibility fixed on Suprnova finally.
legendary
Activity: 1193
Merit: 1000
Peaky Blinder
Few questions:

What's the net hash rate, because this on suprnova shows a fake?
Does dev work on something?
Is here anyone, who wants to be socalled PR dev?

What we need to exchange is coordinated twitter requests towards C-cex or Poloniex (Poloniex likes innovate coins).

1. Everyone can check this through their in-wallet debug console or by sending a call through the daemon.

Linux daemon

./lyrabard getnetworkhashps
157725972

Qt wallet:

getnetworkhashps
157725972


And it answers by hashes per second, in this case it's ~157MHs


2. I'm working on the Mac wallet, the official blockchain explorer, then, the rest of the team is working on a site everyone should get involved to, but later on this.

3. There is PR devs at the official IRC channel, ##lyrabar, so if there's people who wants to contribute, feel free to join the channel and discuss about anything.

4. Till today we have contacted all the most decent exchanges, but still anyone can feel free to vote up this coin or suggest adding of this coin on any exchange.


Thank you for response.
member
Activity: 118
Merit: 10
The precious bar
Few questions:

What's the net hash rate, because this on suprnova shows a fake?
Does dev work on something?
Is here anyone, who wants to be socalled PR dev?

What we need to exchange is coordinated twitter requests towards C-cex or Poloniex (Poloniex likes innovate coins).

1. Everyone can check this through their in-wallet debug console or by sending a call through the daemon.

Linux daemon

./lyrabard getnetworkhashps
157725972

Qt wallet:

getnetworkhashps
157725972


And it answers by hashes per second, in this case it's ~157MHs


2. I'm working on the Mac wallet, the official blockchain explorer, then, the rest of the team is working on a site everyone should get involved to, but later on this.

3. There is PR devs at the official IRC channel, ##lyrabar, so if there's people who wants to contribute, feel free to join the channel and discuss about anything.

4. Till today we have contacted all the most decent exchanges, but still anyone can feel free to vote up this coin or suggest adding of this coin on any exchange.
legendary
Activity: 2688
Merit: 1240
stats calculations are off, no idea what the correct diff1 for this strange algo is

EDIT: Had some fake share hashers on the pool too, banned them for now !

As I told you two days ago, the diff1 is the same as Quark.

0x000000ffff000000000000000000000000000000000000000000000000000000




Got that implemented - not working
Pages:
Jump to: