Bitcoin Forum
June 22, 2024, 02:05:20 AM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 »
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [MYR] Myriad - Mining for all - SHA★Scrypt★Qubit★Skein★Groestl on: March 12, 2014, 09:34:52 PM
Hi everybody!

At http://nr1.co.in:20889 we set up the first (I believe) Scrypt P2Pool for Myriadcoin (fee is 0.1%).

EDIT: I don't need to remind you all that in a P2Pool the payouts are managed by the network itself, do I? Wink

Also, please find attached the edits for the forrestv's P2Pool (https://github.com/forrestv/p2pool).
We want to share this with everybody so that people can create additional nodes and enlarge the P2Pool!

file 1: p2pool/p2pool/bitcoin/networks.py
Code:
myriadcoin=math.Object(
P2P_PREFIX='af4576ee'.decode('hex'),
P2P_PORT=10888,
ADDRESS_VERSION=50,
RPC_PORT=10889,
RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
'myriadcoinaddress' in (yield bitcoind.rpc_help()) and
not (yield bitcoind.rpc_getinfo())['testnet']
)),
SUBSIDY_FUNC=lambda height: 1000*100000000 >> (height + 1)//967680,
POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
BLOCK_PERIOD=150,
SYMBOL='MYR',
CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'myriadcoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/myriadcoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.myriadcoin'), 'myriadcoin.conf'),
BLOCK_EXPLORER_URL_PREFIX='http://myr.theblockexplorer.com:2750/block/',
ADDRESS_EXPLORER_URL_PREFIX='http://myr.theblockexplorer.com:2750/address/',
TX_EXPLORER_URL_PREFIX='http://myr.theblockexplorer.com:2750/tx/',
SANE_TARGET_RANGE = (2**256//1000000000 - 1, 2**256//1000 - 1),
DUMB_SCRYPT_DIFF = 2**16,
DUST_THRESHOLD=0.03e8,
),


file 2: p2pool/p2pool/networks.py
Code:
myriadcoin=math.Object(
PARENT=networks.nets['myriadcoin'],
SHARE_PERIOD=50,
CHAIN_LENGTH=24*60*60//10,
REAL_CHAIN_LENGTH=24*60*60//10,
TARGET_LOOKBEHIND=200,
SPREAD=36,
IDENTIFIER='6d7972696164636f'.decode('hex'),
PREFIX='706f6f6c6d797269'.decode('hex'),
P2P_PORT=20888,
MIN_TARGET=0,
MAX_TARGET=2**256//2**20 - 1,
PERSIST=True,
WORKER_PORT=20889,
BOOTSTRAP_ADDRS='nr1.co.in'.split(' '), # Add your pool here ex. BOOTSTRAP_ADDRS='nr1.co.in your.pool.address one.more.pool'.split(' '),
ANNOUNCE_CHANNEL='#p2pool-ltc',
VERSION_CHECK=lambda v: True,
VERSION_WARNING=lambda v: 'Upgrade Myriadcoin to >=0.8.99.4!' if v < 89904 else None,
),
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SHA-256][21coin] ULTRA RARE 21 COIN - NOW IN CRYPTORUSH.IN - 3 EXCHANGES! on: February 28, 2014, 09:14:49 AM
Thanks Proteu5! Smiley
But this is how http://nr1.co.in rolls! Smiley Once we get a pool to work, we share the knowledge!
We only just started, but we'll try to get a Git repository up and running soon, until then sharing the code on the forum for each specific coin will do.
Also please, any improvements and/or suggestions are also welcome!
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][SHA-256][21coin] ULTRA RARE 21 COIN - NOW IN CRYPTORUSH.IN - 3 EXCHANGES! on: February 27, 2014, 12:14:21 PM
Hi all!
I wanted to give the community the settings to add P2Pool nodes for 21coin.
You can download and install Rav3nPL's p2pool-rav from GitHub: https://github.com/Rav3nPL/p2pool-rav
Just add the following code sections at the end of each networks.py file.

In p2pool-rav/p2pool/bitcoin/networks.py add:

Code:
    twentyone=math.Object(
        P2P_PREFIX='21212121'.decode('hex'),
        P2P_PORT=21213,
        ADDRESS_VERSION=3,
        RPC_PORT=21212,
        RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
            '21coinaddress' in (yield bitcoind.rpc_help()) and
            not (yield bitcoind.rpc_getinfo())['testnet']
        )),
        SUBSIDY_FUNC=lambda height: 0.00000001*100000000 if height < 1500 else 0.0021*100000000 if height == 212 else 0.0021*100000000 if height == 2122 else 0.0021*100000000 if height == 21212 else 0.0021*100000000 if height == 212121 else 0.0021*100000000 if height == 2121212 else 0.000021*100000000,
        POW_FUNC=data.hash256,
        BLOCK_PERIOD=126, # s
        SYMBOL='21',
        CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], '21coin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/21coin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.21coin'), '21coin.conf'),
        BLOCK_EXPLORER_URL_PREFIX='http://bitalchemy.net/21coin/',
        ADDRESS_EXPLORER_URL_PREFIX='http://bitalchemy.net/21coin/',
        TX_EXPLORER_URL_PREFIX='http://bitalchemy.net/21coin/',
        SANE_TARGET_RANGE=(2**256//2**32//1000 - 1, 2**256//2**32 - 1),
        DUMB_SCRYPT_DIFF=1,
        DUST_THRESHOLD=0.001e8,
    ),

And in p2pool-rav/p2pool/networks.py add:

Code:
    twentyone=math.Object(
        PARENT=networks.nets['twentyone'],
        SHARE_PERIOD=25, # seconds
        CHAIN_LENGTH=24*60*60//10, # shares
        REAL_CHAIN_LENGTH=24*60*60//10, # shares
        TARGET_LOOKBEHIND=200, # shares
        SPREAD=10, # blocks
        IDENTIFIER='1212121212121212'.decode('hex'), ## If this value is changed the P2Pool won't sync with other nodes
        PREFIX='2121212121212121'.decode('hex'), ## If this value is changed the P2Pool won't sync with other nodes
        P2P_PORT=21022, ## If this value is changed the P2Pool won't sync with other nodes
        MIN_TARGET=0,
        MAX_TARGET=2**256//2**32 - 1,
        PERSIST=False,
        WORKER_PORT=21021, ## IMPORTANT: Don't forget to open this port on your Firewall!
        ## Add your pool in the line below, e.g.:
        ## BOOTSTRAP_ADDRS='nr1.co.in yourpool.com '.split(' '),
        ## or should you not have a domain name use your IP address, e.g.:
        ## BOOTSTRAP_ADDRS='nr1.co.in 123.156.123.232 '.split(' '),
        BOOTSTRAP_ADDRS='nr1.co.in'.split(' '),
        ANNOUNCE_CHANNEL='#p2pool',
        VERSION_CHECK=lambda v: True,
    ),

Please don't hesitate to ask if you need some support.
4  Alternate cryptocurrencies / Mining (Altcoins) / Re: P2Pool Detailed Settings for Altcoins on: February 21, 2014, 02:37:45 AM
Please deeppurple72, let's keep this conversation on github. You made your point and I understand it and I accept it.
Of course you are welcome any time to join and contribute in documenting more in detail the internals of the P2Pool configuration.
If not now in several months, or whenever it will not be an obstacle to your goals/plans.

5  Alternate cryptocurrencies / Mining (Altcoins) / Re: P2Pool Detailed Settings for Altcoins on: February 21, 2014, 02:16:39 AM
Hi CartmanSPC,

first of all thanks for all the work you put in organizing this information about P2Pool. Reading it put me up with most of the knowledge I have of configuring new P2Pools for altcoins.
I guess you read the disappointing answer of deeppurple72 on Github (if not go and check it https://github.com/forrestv/p2pool/issues/157#issuecomment-35691652).

If you don't mind I'd like to help/contribute to the work you have started, and join forces to figure out how to make as many interesting cryptos as possible with p2pool.
And then redistribute the code + the documentation for the good of the community as a whole.

If you think it's too much work or you are not interested I will understand. But then I'll try to carry on on my own and of course give you all the credit you deserve!
Ciao!
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][LEAF] LEAFCOIN - ETA NEXT BLOCKHALVE 2014/02/18 T 07:41:19 on: February 14, 2014, 02:45:02 PM
Hi everybody! A new LEAF P2Pool is in town!!
http://nr1.co.in:9166

Based in the Netherlands, with only 0.1% Fee
7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Unobtanium: Updated 0.9.2 Build Available NOW + Faucet Fixed! on: February 06, 2014, 02:01:27 PM
Hi!

Is there anybody who would like to be a betatester for my new [Un] P2Pool?

Connection parameters

Features

More about P2Pool technology: https://en.bitcoin.it/wiki/P2Pool


8  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Melange [SPICE] - The Spice Must Flow! on: February 06, 2014, 10:44:18 AM
Thanks Mogrith!

I've got the miner up and running!

The output looks good!
Code:
Nr1 06/02/2014 11:39:53, checking for stratum...
Nr1 06/02/2014 11:39:54, Loaded existing compiled kernel: e119e709c22dbee36dc82e2e08430def.elf
Nr1 06/02/2014 11:39:54, Worksize: 192
Nr1 06/02/2014 11:39:54, using JSON-RPC (no stratum header)
Nr1 06/02/2014 11:39:54, Calling with tgt 0e7d4100 00000000
Nr1 06/02/2014 11:40:04, 0:1:GeForce 320M 0[0.652 MH/s (~0 MH/s)] [Rej: 0/0 (0.00%)]
Nr1 06/02/2014 11:40:14, 0:1:GeForce 320M 0[0.667 MH/s (~0 MH/s)] [Rej: 0/0 (0.00%)]
Nr1 06/02/2014 11:40:24, 0:1:GeForce 320M 0[0.684 MH/s (~0 MH/s)] [Rej: 0/0 (0.00%)]
9  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DOGE] Dogecoin - very currency many coin - v1.5 Released! on: February 05, 2014, 11:56:35 PM
Welcome to Nr1 DOGE P2Pool!


Much address: http://doge.nr1.co.in:22550

Very user: <your own much receive address>

Very password: pls_whatever

e.g. cgminer -o http://doge.nr1.co.in:22550 -u <your own much receive address> -p *pls_whatever*


Much fun! Pls don't mind **very fee 0.6%** (much 0.5% to very authors of P2Pool + much 0.1% to very pool)

Very enjoy!! :3

10  Alternate cryptocurrencies / Mining (Altcoins) / [ANN][DOGE][POOL] Nr1 P2Pool on: February 05, 2014, 11:40:58 PM
Pool Information
  • 0.6% p2pool node fees (0.5% to the authors of P2Pool + 0.1% to the pool)
  • Direct payouts to your wallet without being hold by any insecure pool wallet
  • Dynamic worker tracker frontend - just enter your address and watch the stats

How do you connect?
This is the address of the pool: http://doge.nr1.co.in:22550
This is a P2Pool, no registration is required!
The username is your doge address, the password is whatever string of characters. E.g.:

cgminer -o http://doge.nr1.co.in:22550 -u <your doge address> -p 123

Have fun!! :3
11  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Melange [SPICE] - The Spice Must Flow! on: February 05, 2014, 06:33:58 PM
Now I've got a synced wallet on my Linux console.
Next step: I'd like to start mining.

Can anybody confirm me this is the right command in Linux?

./spiced setgenerate true <number or threads>

As far as I understood it might take a while for me to see a block.
If I query getmininginfo I read:

{
    "blocks" : 10828,
    "currentblocksize" : 1000,
    "currentblocktx" : 0,
    "difficulty" : 32.29897560,
    "errors" : "",
    "generate" : true,
    "genproclimit" : 1,
    "hashespersec" : 107285,
    "pooledtx" : 0,
    "testnet" : false
}


Thanks!
12  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Melange [SPICE] - The Spice Must Flow! on: February 05, 2014, 06:28:04 PM
Thanks Mogrith! Cheesy
I've got two nodes up!
13  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Melange [SPICE] - The Spice Must Flow! on: February 05, 2014, 05:40:27 PM
Is the coin still alive? I successfully compiled the wallet on Linux. I can run spiced, but it finds no peers, even with the addnode lists from this thread in the conf.
Any ideas?
14  Economy / Exchanges / Re: MtGox withdrawal delays [Gathering] on: November 28, 2013, 04:46:39 PM
You know, technical problems happen, things can go wrong, but that they say they have a 24/7/365 support and have not bothered to give a single answer in 50+ hours is ridiculous!
15  Economy / Exchanges / Re: MtGox withdrawal delays [Gathering] on: November 28, 2013, 03:12:11 PM
49 hours later and still no sign of my BTC withdrawal... Sad
(nor answer to any of the support tickets I opened...)
16  Economy / Exchanges / Re: MtGox withdrawal delays [Gathering] on: November 28, 2013, 12:47:48 AM
Hi Sturle, thanks for your reply. This is the first time something like this happens to me, I never had problems with MtGox before.
I understand there is nothing I can do, except checking now and then http://skanner.net/MtGox/mtgox_tx.php

When the present transaction will be canceled, it will disappear from http://skanner.net/MtGox/mtgox_tx.php I assume, is that correct?
The new transaction will also broadcast to the blockchain with a different tx number I assume. But what if that still doesn't go right? Then in that case I can't follow it anymore, can I?

Such a bad timing! Also, I don't get why the http://skanner.net/MtGox/mtgox_tx.php reports an amount of more than 12 BTC, my withdrawal was only about 1.2 BTC... I guess I'm a real noob when it comes to transactions gone wrong!
17  Economy / Exchanges / Re: MtGox withdrawal delays [Gathering] on: November 27, 2013, 11:50:02 PM
My withdrawal has been stuck for almost 33 hours now!!
http://skanner.net/MtGox/mtgox_tx.php?searchme=8c94a0166007d882b8d64504a823cffd7763d9a505cb0066ce9e73925693027c&Submit=Search

Is there absolutely anything one can do besides waiting?!
No answer from support yet either... Actually they haven't even assigned my ticket a support operator yet... Sad
18  Economy / Exchanges / Re: MtGox withdrawal delays [Gathering] on: November 27, 2013, 03:11:47 PM
Yes sturle I could find it.
The tx ID is 8c94a0166007d882b8d64504a823cffd7763d9a505cb0066ce9e73925693027c
It says the outpoin is already spent... What happens then next? I have two tickets open with their support but no answer yet... Sad
19  Economy / Exchanges / Re: MtGox withdrawal delays [Gathering] on: November 27, 2013, 12:34:53 PM
I have withdrawn from MtGox 1.2BTC 22,5 hours ago and the transaction still hasn't been broadcasted to the blockchain... Has anybody else been having the same problem?
20  Economy / Trading Discussion / Re: goxtool bot: portfolio rebalancing on: November 26, 2013, 10:25:58 AM
Hi again! Thanks for your reply.
After a couple of days of mining (and rescuing that little I managed to rescue from the BTC I had invested in mcxNOW fees) I added more balance to my Gox balance.

While I have distance still set to 11, I have now 1.08 BTC + 135 USD in Gox and 6 BTC + 6000 USD as cold balance.
The orders the script placed are now 0.35 for Selling BTC and 0.43 for Buying BTC.

And, yes, I unbalanced the cold wallet on purpose as I would like always to end up with a little more BTC than dollars.

I'll keep you posted if this time it works. Hopefully the price is gonna soon hit one of the triggers.

Thanks for your effort in creating goxtools, and if/when I make it work I'll be sure to send a donation your way with the first earnings!
Pages: [1] 2 3 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!