Bitcoin Forum
April 25, 2024, 07:31:21 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 [23] 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 »
  Print  
Author Topic: [ANN] LuckyCoin LKY | Lucky Blocks | Fast | Fun | Fair  (Read 112470 times)
arlington
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250


View Profile
May 24, 2013, 11:10:03 PM
 #441

this one works.

Is the stratum pool works?
1714030281
Hero Member
*
Offline Offline

Posts: 1714030281

View Profile Personal Message (Offline)

Ignore
1714030281
Reply with quote  #2

1714030281
Report to moderator
1714030281
Hero Member
*
Offline Offline

Posts: 1714030281

View Profile Personal Message (Offline)

Ignore
1714030281
Reply with quote  #2

1714030281
Report to moderator
"With e-currency based on cryptographic proof, without the need to trust a third party middleman, money can be secure and transactions effortless." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
aetos
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
May 24, 2013, 11:10:38 PM
 #442

I've added a new p2pool.

Here are the parameters:

cgminer --scrypt -o next.afraid.org:8116 -u yourLKYaddress -p . --queue 0 -s 1

statistics available here: http://next.afraid.org:8116. This pool use a PPLNS payout scheme, and is stratum enabled.

3% fee.

----
This one is up, and fully reliable.


Joined up
not responding


I've added a second node connected to the main one (next.afraid.org:8116), available at least for the next 24h. More bandwith with:

second node:     pool.afraid.org:8116


collapse
Full Member
***
Offline Offline

Activity: 206
Merit: 102


step forward


View Profile
May 24, 2013, 11:11:03 PM
 #443

Wowww network power near to 1Gshit/s!!!



Quote
      //int rand = generateMTRandom(seed, 100000);
      int rand = 50005;

Elacoin-ELC,Betacoin-BET,Neutroncoin-NTRN,Americancoin-AMC,Stronghands-SHND,Craftcoin-CRC,DOGE,BCH,BTC,...,Bitcoin,...(and a lot more)
Linux updated wallets (source code) for: ELC, BET, AMC, NKT, SLING, CRC,...
[if (blocknumber > 115000) maxblocksize=largerlimit]   [I don't think the threshold should ever be 0.  We should always allow at least some free transactions.]
niteryder
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
May 24, 2013, 11:12:09 PM
 #444

This pool should be working better now.  You guys hammered the piss out of it.

http://lky.allpoolz.com
Bitmong
Newbie
*
Offline Offline

Activity: 29
Merit: 0


View Profile
May 24, 2013, 11:12:53 PM
 #445

Help, found 5 blocks soloing, never received a single coin.  Now that I'm on p2p, the're rolling in.

What happened to the 5 found blocks?  I run cgminer on remote rigs to connect to my wallet on a local PC.

They were orphaned, most likely due to the latency between cgminer and your wallet. You should run wallet and miner on the same computer or at least same LAN when blocks are found in a rapid pace.
Boxman90
Hero Member
*****
Offline Offline

Activity: 518
Merit: 500


View Profile
May 24, 2013, 11:13:00 PM
 #446

Well, got linux working.. Shit now actually works, found 3 blocks 0 orphans. Good.

LTC: LKKy4eDWyVtSrQAJy7Qmmz61RaFY91D9yC   BTC: 18fzdnCkuUNthCD8hM36UBGopFa9ij78gG
WOPR
Full Member
***
Offline Offline

Activity: 223
Merit: 100


Birb.co Bounty and Airdrop Manager


View Profile
May 24, 2013, 11:14:10 PM
 #447

P2POOL SETUP FOR LUCKYCOIN

p2pool/networks.py

Code:
    luckycoin=math.Object(
        PARENT=networks.nets['luckycoin'],
        SHARE_PERIOD=30,
        CHAIN_LENGTH=24*60*60//30,
        REAL_CHAIN_LENGTH=24*60*60//30,
        TARGET_LOOKBEHIND=200,
        SPREAD=15,
        IDENTIFIER='6c75636b79212121'.decode('hex'),
        PREFIX='1a60193ab8b9617f'.decode('hex'),
        P2P_PORT=48911,
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=False,
        WORKER_PORT=19335,
        BOOTSTRAP_ADDRS='207.12.89.101 66.172.10.55'.split(' '),
        ANNOUNCE_CHANNEL='#p2pool-alt',
        VERSION_CHECK=lambda v: True,
    ),

p2pool/bitcoin/networks.py

Code:
    luckycoin=math.Object(
        P2P_PREFIX='fbc0b6db'.decode('hex'),
        P2P_PORT=9917,
        ADDRESS_VERSION=47,
        RPC_PORT=9918,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'luckycoinaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 88*100000000 >> (height + 1)//1036800,
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
        BLOCK_PERIOD=60,
        SYMBOL='LKY',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'Luckycoin') if platform.system() == 'Windows' else os.path.expanduser('~/Li$
        BLOCK_EXPLORER_URL_PREFIX='http://d.evco.in/abe/block/',
        ADDRESS_EXPLORER_URL_PREFIX='http://d.evco.in/abe/address/',
        SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
        DUMB_SCRYPT_DIFF=2**16,
    ),

Boxman90
Hero Member
*****
Offline Offline

Activity: 518
Merit: 500


View Profile
May 24, 2013, 11:14:40 PM
 #448

Also just noticed -- his example conf file clearly gives away that he owns a mining farm. The rpcallowip=10.1.1.* means he's got multiple machines hashing to his wallet.

LTC: LKKy4eDWyVtSrQAJy7Qmmz61RaFY91D9yC   BTC: 18fzdnCkuUNthCD8hM36UBGopFa9ij78gG
blastbob
Hero Member
*****
Offline Offline

Activity: 602
Merit: 500



View Profile
May 24, 2013, 11:15:16 PM
 #449

P2POOL SETUP FOR LUCKYCOIN

p2pool/networks.py

Code:
    luckycoin=math.Object(
        PARENT=networks.nets['luckycoin'],
        SHARE_PERIOD=30,
        CHAIN_LENGTH=24*60*60//30,
        REAL_CHAIN_LENGTH=24*60*60//30,
        TARGET_LOOKBEHIND=200,
        SPREAD=15,
        IDENTIFIER='6c75636b79212121'.decode('hex'),
        PREFIX='1a60193ab8b9617f'.decode('hex'),
        P2P_PORT=48911,
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**20 - 1,
        PERSIST=False,
        WORKER_PORT=19335,
        BOOTSTRAP_ADDRS='207.12.89.101 66.172.10.55'.split(' '),
        ANNOUNCE_CHANNEL='#p2pool-alt',
        VERSION_CHECK=lambda v: True,
    ),

p2pool/bitcoin/networks.py

Code:
    luckycoin=math.Object(
        P2P_PREFIX='fbc0b6db'.decode('hex'),
        P2P_PORT=9917,
        ADDRESS_VERSION=47,
        RPC_PORT=9918,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            'luckycoinaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 88*100000000 >> (height + 1)//1036800,
        POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
        BLOCK_PERIOD=60,
        SYMBOL='LKY',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'Luckycoin') if platform.system() == 'Windows' else os.path.expanduser('~/Li$
        BLOCK_EXPLORER_URL_PREFIX='http://d.evco.in/abe/block/',
        ADDRESS_EXPLORER_URL_PREFIX='http://d.evco.in/abe/address/',
        SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
        DUMB_SCRYPT_DIFF=2**16,
    ),


Good work, i still think devs should post this from start Smiley

Bitrated user: blastbob.
sweeppicking
Member
**
Offline Offline

Activity: 83
Merit: 10



View Profile
May 24, 2013, 11:15:35 PM
 #450

4 rigs = 4500khs, nothing over here....
96redformula
Full Member
***
Offline Offline

Activity: 224
Merit: 100


View Profile
May 24, 2013, 11:15:41 PM
 #451

If anybody wants to donate something to my poor miner wallet it would be appreciated.

L5yisTVyEaGnCCVBGjh8Df7G74irajqjut
aetos
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
May 24, 2013, 11:16:13 PM
 #452

Next Network Block   1,109    (Current: 1,108)
Time Since Last Block   0 Hours 3 Minutes
1,091   106 left   leecher   2013-05-24 06:12:07 PM

ho w cann they be 1 minute blocks?
santapedofil
Full Member
***
Offline Offline

Activity: 201
Merit: 105


View Profile
May 24, 2013, 11:16:35 PM
 #453

I'm giving up this coin. So boring



LBDQ3j6WqHFZAWMgTdHnEvfspGBukE8UyW

dont be pussy, share some shit Cheesy
Invest0r
Member
**
Offline Offline

Activity: 112
Merit: 10



View Profile
May 24, 2013, 11:16:56 PM
 #454

Ok, im back to mining BitBars.

Speculating..
tyrion70
Legendary
*
Offline Offline

Activity: 934
Merit: 1000



View Profile
May 24, 2013, 11:17:18 PM
 #455

Hi All,

We've just added a new P2Pool!

http://lky.p2pool.nl:8200

Connect with your LuckyCoin Wallet address and any password

You can find the statistics on:

http://lky.p2pool.nl/stats/

And offcourse, what's a P2Pool without a working Block Explorer:

http://lky.p2pool.nl/

Enjoy and have fun!

kimosan
Hero Member
*****
Offline Offline

Activity: 644
Merit: 501


View Profile
May 24, 2013, 11:17:26 PM
 #456

P2Pool for LuckyCoin (LKY)


http://p2p.sytes.net:19335/static/

Guideline to set optimal difficulty for your hash power:

Hash Rate (KH/s)             Difficulty
             1                  +0.00000116
             5                  +0.00000582
            10                  +0.00001164
            50                  +0.00005821
            100                +0.00011641
            250                +0.00029103
            500                +0.00058207
            750                +0.00087310
            1000               +0.00116414
            1600               +0.001862624

Example: if you have 50 KH/s, then add +0.00005821 to your address:
  
Code:
cgminer --scrypt -s 5 -o p2p.sytes.net:19335 -u LKY_ADDRESS+0.00005821 -p x

CPUminer example:
Code:
minerd --algo scrypt -s 5 -o p2p.sytes.net:19335 -u LKY_ADDRESS+0.00005821 -p x


Stratum and getwork supported.
Pool fee is 1%


Works good.
faraway
Sr. Member
****
Offline Offline

Activity: 339
Merit: 250


View Profile
May 24, 2013, 11:17:41 PM
 #457

I've added a new p2pool.

Here are the parameters:

cgminer --scrypt -o next.afraid.org:8116 -u yourLKYaddress -p . --queue 0 -s 1

statistics available here: http://next.afraid.org:8116. This pool use a PPLNS payout scheme, and is stratum enabled.

3% fee.

----
This one is up, and fully reliable.


Joined up
not responding


I've added a second node connected to the main one (next.afraid.org:8116), available at least for the next 24h. More bandwith with:

second node:     pool.afraid.org:8116



Now the load is OK for both servers. And the coins are there.
96redformula
Full Member
***
Offline Offline

Activity: 224
Merit: 100


View Profile
May 24, 2013, 11:18:16 PM
 #458

P2Pool for LuckyCoin (LKY)


http://p2p.sytes.net:19335/static/

Guideline to set optimal difficulty for your hash power:

Hash Rate (KH/s)             Difficulty
             1                  +0.00000116
             5                  +0.00000582
            10                  +0.00001164
            50                  +0.00005821
            100                +0.00011641
            250                +0.00029103
            500                +0.00058207
            750                +0.00087310
            1000               +0.00116414
            1600               +0.001862624

Example: if you have 50 KH/s, then add +0.00005821 to your address:
  
Code:
cgminer --scrypt -s 5 -o p2p.sytes.net:19335 -u LKY_ADDRESS+0.00005821 -p x

CPUminer example:
Code:
minerd --algo scrypt -s 5 -o p2p.sytes.net:19335 -u LKY_ADDRESS+0.00005821 -p x


Stratum and getwork supported.
Pool fee is 1%


Works good.

Yeah, keep it going guys.
oddwh
Hero Member
*****
Offline Offline

Activity: 854
Merit: 1002



View Profile
May 24, 2013, 11:18:34 PM
 #459

P2Pool for LuckyCoin (LKY)


http://p2p.sytes.net:19335/static/

Guideline to set optimal difficulty for your hash power:

Hash Rate (KH/s)             Difficulty
             1                  +0.00000116
             5                  +0.00000582
            10                  +0.00001164
            50                  +0.00005821
            100                +0.00011641
            250                +0.00029103
            500                +0.00058207
            750                +0.00087310
            1000               +0.00116414
            1600               +0.001862624

Example: if you have 50 KH/s, then add +0.00005821 to your address:
  
Code:
cgminer --scrypt -s 5 -o p2p.sytes.net:19335 -u LKY_ADDRESS+0.00005821 -p x

CPUminer example:
Code:
minerd --algo scrypt -s 5 -o p2p.sytes.net:19335 -u LKY_ADDRESS+0.00005821 -p x


Stratum and getwork supported.
Pool fee is 1%


Works good.

Same. Thanks a lot for the pool, i'm not able too mine ! I have 21 LKY and I'm happy of that xD

            ▄▄▄▄▄▄▄▄▄
        ▄▄███▀▀▀▀▀▀▀███▄▄
     ▄██▀▀             ▀▀██▄
    ██▀                   ▀██
   █▌                       ▐█
  █▌                         ▐█
 ▐█            ▄▄▄            █▌
 ██         ▄██▀▀▀██▄         ██
 ▄         ▐█▌     ▐█▌         ▄
███        █▌       ▐█        ███
 ▀   █▄    ▐█▌     ▐█▌    ▄█   ▀
   █▄  █▄   ▀██▄▄▄██▀   ▄█  ▄█
    ▀█   █▄    ▀▀▀    ▄█   █▀
      █▄   █▄       ▄█   ▄█
       ██    █  ▄  █    ██
         █▄    ███    ▄█
          ██    ▀    ██
            █▄  █  ▄█
             ██ █ ██
                ▄
               ███
                ▀

         ▄▄▄▄▄▄▄▄
      ▄████████████▄
    ▄████████████████▄
   ████████████████████
  ██████████████████████
 ████████████████████████
▐████████████████████████▌
▐████████████████████████▌▀▀▀   ▀▀▀
▐████████████████████████▌
 ████████████████████████
  ██████████████████████
   ██▀████████████▀██
    ▀██▀▀██████▀▀██▀
      ▀████████████▀
         ▀▀▀▀▀▀▀▀

▄▄▄▄▄▄▄▄        
▄████████████▄     
▄████████████████▄   
████████████████████  
██████████████████████ 
 ████████████████████████
▐████████████████████████▌
▄▄▄   ▄▄▄▐████████████████████████▌
▐████████████████████████▌
████████████████████████
██████████████████████ 
████████████████████  
▀████████████████▀   
▀████████████▀     
▀▀▀▀▀▀▀▀        
arlington
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250


View Profile
May 24, 2013, 11:21:41 PM
 #460

the stratum pool constantly stuck?? what the heck
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 [23] 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!