Pages:
Author

Topic: [ANN][UPDATE! FORK][Exchange] HyperCoin- Windows, OSX & *Nix GUI Client Included - page 5. (Read 34945 times)

hero member
Activity: 770
Merit: 500
I have 4 active connections and the wallet is still out of sync. send me 1 HYC to HQDFXUUCDmXBNQy5YE8NJvjCVZZGumpm7L to see if i get it from you?

Status: 0/unconfirmed, broadcast through 3 nodes
Date: 6/11/2013 13:36
To: HHZdGDCLnzWdvAx42UnLgb47kjNdkSSdHQ
Debit: -1.00 HYC
Net amount: -1.00 HYC
Transaction ID: 78c3052919ec7e8098eeb20d37f27a48e147bf2e69c61c0847e3c094d076426b
member
Activity: 84
Merit: 10
like this? C:\Users\5110\Documents\Hypercoin\hypercoin-qt.exe -addnode=82.211.31.244 -addnode=84.200.17.243

Yup Smiley Let me know if it works  Grin
hero member
Activity: 770
Merit: 500
like this? C:\Users\5110\Documents\Hypercoin\hypercoin-qt.exe -addnode=82.211.31.244 -addnode=84.200.17.243
member
Activity: 84
Merit: 10
Why would the ports have to be forwarded if it worked without forwarding ports before? No other wallet I use needs to have ports forwarded.

No idea. But i've always had to forward the ports on my wallet in orderr to get max connections. You can also add this node if you would like.  -addnode=84.200.17.243
hero member
Activity: 770
Merit: 500
Why would the ports have to be forwarded if it worked without forwarding ports before? No other wallet I use needs to have ports forwarded.
member
Activity: 84
Merit: 10
My wallet is hosed with 10,990 HYCs stuck inside. I can't send a HYC or receive any HYC. I have a pending confirmation that has been pending since 6/10/2013 13:48 and I have 2 active connections to the HYC network. Wallet out of sync always all the time even after it scans the blocks with connections.

Status: 1/unconfirmed
Date: 6/10/2013 13:48
From: unknown
To: HSfWMx1Z1maujJYMFEexdd1XhC9tDymuvU (own address, label: hypercoinpool.com)
Credit: 65.28277929 HYC
Net amount: +65.28277929 HYC
Transaction ID: 589cca8f723d15425af61a040f40d50507108fec41718b723d8959f34d599274

I tried sending a payment of 2 HYC to my address I have on Cryptsy, no dice man.

Status: 0/unconfirmed
Date: 6/11/2013 12:06
To: cryptsy HCjoWAvs4WgeQr2UVPpZqAzeecrLeFEqqB
Debit: -2.00 HYC
Net amount: -2.00 HYC
Transaction ID: f9d32813c973d9d10932f39a83d2ee5ebd3f7e7215d01843ebdd33c9d37a395b



Thats odd I have 54 connections on my wallet? Did you forward the ports? Thats what I had to do with my wallets in order to get all the connections. Try that and reboot your wallet.
hero member
Activity: 770
Merit: 500
My wallet is hosed with 10,990 HYCs stuck inside. I can't send a HYC or receive any HYC. I have a pending confirmation that has been pending since 6/10/2013 13:48 and I have 2 active connections to the HYC network. Wallet out of sync always all the time even after it scans the blocks with connections.

Status: 1/unconfirmed
Date: 6/10/2013 13:48
From: unknown
To: HSfWMx1Z1maujJYMFEexdd1XhC9tDymuvU (own address, label: hypercoinpool.com)
Credit: 65.28277929 HYC
Net amount: +65.28277929 HYC
Transaction ID: 589cca8f723d15425af61a040f40d50507108fec41718b723d8959f34d599274

I tried sending a payment of 2 HYC to my address I have on Cryptsy, no dice man.

Status: 0/unconfirmed
Date: 6/11/2013 12:06
To: cryptsy HCjoWAvs4WgeQr2UVPpZqAzeecrLeFEqqB
Debit: -2.00 HYC
Net amount: -2.00 HYC
Transaction ID: f9d32813c973d9d10932f39a83d2ee5ebd3f7e7215d01843ebdd33c9d37a395b

sr. member
Activity: 448
Merit: 250
Hope so.  If the demand is there, I will re-enable mining at mine.   Website remains up.
member
Activity: 84
Merit: 10
My p2pool node is up again. Sorry for the downtime, a lightning killed my router  Angry

However, there are no connections with other p2pool nodes, seems like nobody is hosting.

Awesome. The diff change is soon and the profitibality will skyrocket, Im sure many will use it.
sr. member
Activity: 476
Merit: 250
My p2pool node is up again. Sorry for the downtime, a lightning killed my router  Angry

However, there are no connections with other p2pool nodes, seems like nobody is hosting.
sr. member
Activity: 476
Merit: 250
Since nobody has posted p2pool code before, I propose my version.

Original source: https://github.com/hakabane/p2pool-altcoins, credit to akabane https://bitcointalksearch.org/user/akabane-109664
Public node: http://78.27.191.182:8344/ (no fee except default 1% to original p2pool authors)
Modifications for HYC:

Code:
diff --git a/p2pool/bitcoin/helper.py b/p2pool/bitcoin/helper.py
index adab25e..aa4899b 100644
--- a/p2pool/bitcoin/helper.py
+++ b/p2pool/bitcoin/helper.py
@@ -70,7 +70,7 @@ def submit_block_p2p(block, factory, net):
 @defer.inlineCallbacks
 def submit_block_rpc(block, ignore_failure, bitcoind, bitcoind_work, net):
     if bitcoind_work.value['use_getblocktemplate']:
-        if 'lite' in net.NAME or 'feather' in net.NAME or 'chn' in net.NAME or 'franko' in net.NAME or 'digital' in net.NAME:
+        if 'lite' in net.NAME or 'feather' in net.NAME or 'chn' in net.NAME or 'franko' in net.NAME or 'digital' in net.NAME or 'hyper' in net.NAME:
             result = yield bitcoind.rpc_getblocktemplate(dict(mode='submit', data=bitcoin_data.block_type.pack(block).encode('hex')))
             success = result is None
         else:
diff --git a/p2pool/bitcoin/networks.py b/p2pool/bitcoin/networks.py
index 7dd26f4..682a920 100644
--- a/p2pool/bitcoin/networks.py
+++ b/p2pool/bitcoin/networks.py
@@ -104,6 +104,28 @@ nets = dict(
         SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
         DUMB_SCRYPT_DIFF=2**16,
     ),
+
+    hypercoin=math.Object(
+        P2P_PREFIX='fcd9b7dd'.decode('hex'),
+ P2P_PORT=17453,
+ ADDRESS_VERSION=40,
+ RPC_PORT=7452,
+ RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
+            'hypercoin address' in (yield bitcoind.rpc_help()) and
+            not (yield bitcoind.rpc_getinfo())['testnet']
+ )),
+ SUBSIDY_FUNC=lambda height: 25*100000000,
+ POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
+ BLOCK_PERIOD=40,
+ SYMBOL='HYC',
+ CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'Hypercoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/Hypercoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.hypercoin'), 'hypercoin.conf'),
+ BLOCK_EXPLORER_URL_PREFIX='http://example.com/',
+ ADDRESS_EXPLORER_URL_PREFIX='http://example.com/',
+ SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
+ DUMB_SCRYPT_DIFF=2**16,
+    ),
+
+        
     litecoin_testnet=math.Object(
         P2P_PREFIX='fcc1b7dc'.decode('hex'),
         P2P_PORT=19333,
diff --git a/p2pool/networks.py b/p2pool/networks.py
index 8f60436..f3f8f3f 100644
--- a/p2pool/networks.py
+++ b/p2pool/networks.py
@@ -63,6 +63,26 @@ nets = dict(
         ANNOUNCE_CHANNEL='#p2pool-alt',
         VERSION_CHECK=lambda v: True,
     ),
+
+    hypercoin=math.Object(
+        PARENT=networks.nets['hypercoin'],
+ SHARE_PERIOD=10, # seconds
+ CHAIN_LENGTH=24*60*60//10, # shares
+ REAL_CHAIN_LENGTH=24*60*60//10, # shares
+ TARGET_LOOKBEHIND=200, # shares
+ SPREAD=45, # blocks
+ IDENTIFIER='9147c5bfc6923429'.decode('hex'),
+ PREFIX='9408c1a03cf629f9'.decode('hex'),
+ P2P_PORT=41731,
+ MIN_TARGET=0,
+ MAX_TARGET=2**256//2**20 - 1,
+ PERSIST=False,
+ WORKER_PORT=9327,
+ BOOTSTRAP_ADDRS='78.27.191.182'.split(' '),
+ ANNOUNCE_CHANNEL='#p2pool-alt',
+ VERSION_CHECK=lambda v: True,
+     ),
+
     litecoin_testnet=math.Object(
         PARENT=networks.nets['litecoin_testnet'],
         SHARE_PERIOD=3, # seconds


Ive got everything set up besides this part of the code. Im not sure where this code goes as there are +'s on this code. Could you edit the nessessary files for thsi code and send it to me via mega.co.nz or pastebin? I have the main networks.py edited I just need the bitcoin folders networks.py and the helper.py edited. Thanks!

Get it here https://docs.google.com/file/d/0B1HSZgOrasfqczdFLW5zMXlENms/edit?usp=sharing
To have working p2pool network (not just a set of single nodes), everyone must use the same networks.py!
member
Activity: 84
Merit: 10
Since nobody has posted p2pool code before, I propose my version.

Original source: https://github.com/hakabane/p2pool-altcoins, credit to akabane https://bitcointalksearch.org/user/akabane-109664
Public node: http://78.27.191.182:8344/ (no fee except default 1% to original p2pool authors)
Modifications for HYC:

Code:
diff --git a/p2pool/bitcoin/helper.py b/p2pool/bitcoin/helper.py
index adab25e..aa4899b 100644
--- a/p2pool/bitcoin/helper.py
+++ b/p2pool/bitcoin/helper.py
@@ -70,7 +70,7 @@ def submit_block_p2p(block, factory, net):
 @defer.inlineCallbacks
 def submit_block_rpc(block, ignore_failure, bitcoind, bitcoind_work, net):
     if bitcoind_work.value['use_getblocktemplate']:
-        if 'lite' in net.NAME or 'feather' in net.NAME or 'chn' in net.NAME or 'franko' in net.NAME or 'digital' in net.NAME:
+        if 'lite' in net.NAME or 'feather' in net.NAME or 'chn' in net.NAME or 'franko' in net.NAME or 'digital' in net.NAME or 'hyper' in net.NAME:
             result = yield bitcoind.rpc_getblocktemplate(dict(mode='submit', data=bitcoin_data.block_type.pack(block).encode('hex')))
             success = result is None
         else:
diff --git a/p2pool/bitcoin/networks.py b/p2pool/bitcoin/networks.py
index 7dd26f4..682a920 100644
--- a/p2pool/bitcoin/networks.py
+++ b/p2pool/bitcoin/networks.py
@@ -104,6 +104,28 @@ nets = dict(
         SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
         DUMB_SCRYPT_DIFF=2**16,
     ),
+
+    hypercoin=math.Object(
+        P2P_PREFIX='fcd9b7dd'.decode('hex'),
+ P2P_PORT=17453,
+ ADDRESS_VERSION=40,
+ RPC_PORT=7452,
+ RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
+            'hypercoin address' in (yield bitcoind.rpc_help()) and
+            not (yield bitcoind.rpc_getinfo())['testnet']
+ )),
+ SUBSIDY_FUNC=lambda height: 25*100000000,
+ POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
+ BLOCK_PERIOD=40,
+ SYMBOL='HYC',
+ CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'Hypercoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/Hypercoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.hypercoin'), 'hypercoin.conf'),
+ BLOCK_EXPLORER_URL_PREFIX='http://example.com/',
+ ADDRESS_EXPLORER_URL_PREFIX='http://example.com/',
+ SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
+ DUMB_SCRYPT_DIFF=2**16,
+    ),
+
+        
     litecoin_testnet=math.Object(
         P2P_PREFIX='fcc1b7dc'.decode('hex'),
         P2P_PORT=19333,
diff --git a/p2pool/networks.py b/p2pool/networks.py
index 8f60436..f3f8f3f 100644
--- a/p2pool/networks.py
+++ b/p2pool/networks.py
@@ -63,6 +63,26 @@ nets = dict(
         ANNOUNCE_CHANNEL='#p2pool-alt',
         VERSION_CHECK=lambda v: True,
     ),
+
+    hypercoin=math.Object(
+        PARENT=networks.nets['hypercoin'],
+ SHARE_PERIOD=10, # seconds
+ CHAIN_LENGTH=24*60*60//10, # shares
+ REAL_CHAIN_LENGTH=24*60*60//10, # shares
+ TARGET_LOOKBEHIND=200, # shares
+ SPREAD=45, # blocks
+ IDENTIFIER='9147c5bfc6923429'.decode('hex'),
+ PREFIX='9408c1a03cf629f9'.decode('hex'),
+ P2P_PORT=41731,
+ MIN_TARGET=0,
+ MAX_TARGET=2**256//2**20 - 1,
+ PERSIST=False,
+ WORKER_PORT=9327,
+ BOOTSTRAP_ADDRS='78.27.191.182'.split(' '),
+ ANNOUNCE_CHANNEL='#p2pool-alt',
+ VERSION_CHECK=lambda v: True,
+     ),
+
     litecoin_testnet=math.Object(
         PARENT=networks.nets['litecoin_testnet'],
         SHARE_PERIOD=3, # seconds


Ive got everything set up besides this part of the code. Im not sure where this code goes as there are +'s on this code. Could you edit the nessessary files for thsi code and send it to me via mega.co.nz or pastebin? I have the main networks.py edited I just need the bitcoin folders networks.py and the helper.py edited. Thanks!
hero member
Activity: 518
Merit: 500
Bitrated user: ahmedbodi.
pools back up zach, had to go get a new hard drive for the new stratum server
sr. member
Activity: 476
Merit: 250
Since nobody has posted p2pool code before, I propose my version.

Original source: https://github.com/hakabane/p2pool-altcoins, credit to akabane https://bitcointalksearch.org/user/akabane-109664
Public node: http://78.27.191.182:8344/ (no fee except default 1% to original p2pool authors)
Modifications for HYC:

Code:
diff --git a/p2pool/bitcoin/helper.py b/p2pool/bitcoin/helper.py
index adab25e..aa4899b 100644
--- a/p2pool/bitcoin/helper.py
+++ b/p2pool/bitcoin/helper.py
@@ -70,7 +70,7 @@ def submit_block_p2p(block, factory, net):
 @defer.inlineCallbacks
 def submit_block_rpc(block, ignore_failure, bitcoind, bitcoind_work, net):
     if bitcoind_work.value['use_getblocktemplate']:
-        if 'lite' in net.NAME or 'feather' in net.NAME or 'chn' in net.NAME or 'franko' in net.NAME or 'digital' in net.NAME:
+        if 'lite' in net.NAME or 'feather' in net.NAME or 'chn' in net.NAME or 'franko' in net.NAME or 'digital' in net.NAME or 'hyper' in net.NAME:
             result = yield bitcoind.rpc_getblocktemplate(dict(mode='submit', data=bitcoin_data.block_type.pack(block).encode('hex')))
             success = result is None
         else:
diff --git a/p2pool/bitcoin/networks.py b/p2pool/bitcoin/networks.py
index 7dd26f4..682a920 100644
--- a/p2pool/bitcoin/networks.py
+++ b/p2pool/bitcoin/networks.py
@@ -104,6 +104,28 @@ nets = dict(
         SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
         DUMB_SCRYPT_DIFF=2**16,
     ),
+
+    hypercoin=math.Object(
+        P2P_PREFIX='fcd9b7dd'.decode('hex'),
+ P2P_PORT=17453,
+ ADDRESS_VERSION=40,
+ RPC_PORT=7452,
+ RPC_CHECK=defer.inlineCallbacks(lambda bitcoind: defer.returnValue(
+            'hypercoin address' in (yield bitcoind.rpc_help()) and
+            not (yield bitcoind.rpc_getinfo())['testnet']
+ )),
+ SUBSIDY_FUNC=lambda height: 25*100000000,
+ POW_FUNC=lambda data: pack.IntType(256).unpack(__import__('ltc_scrypt').getPoWHash(data)),
+ BLOCK_PERIOD=40,
+ SYMBOL='HYC',
+ CONF_FILE_FUNC=lambda: os.path.join(os.path.join(os.environ['APPDATA'], 'Hypercoin') if platform.system() == 'Windows' else os.path.expanduser('~/Library/Application Support/Hypercoin/') if platform.system() == 'Darwin' else os.path.expanduser('~/.hypercoin'), 'hypercoin.conf'),
+ BLOCK_EXPLORER_URL_PREFIX='http://example.com/',
+ ADDRESS_EXPLORER_URL_PREFIX='http://example.com/',
+ SANE_TARGET_RANGE=(2**256//1000000000 - 1, 2**256//1000 - 1),
+ DUMB_SCRYPT_DIFF=2**16,
+    ),
+
+        
     litecoin_testnet=math.Object(
         P2P_PREFIX='fcc1b7dc'.decode('hex'),
         P2P_PORT=19333,
diff --git a/p2pool/networks.py b/p2pool/networks.py
index 8f60436..f3f8f3f 100644
--- a/p2pool/networks.py
+++ b/p2pool/networks.py
@@ -63,6 +63,26 @@ nets = dict(
         ANNOUNCE_CHANNEL='#p2pool-alt',
         VERSION_CHECK=lambda v: True,
     ),
+
+    hypercoin=math.Object(
+        PARENT=networks.nets['hypercoin'],
+ SHARE_PERIOD=10, # seconds
+ CHAIN_LENGTH=24*60*60//10, # shares
+ REAL_CHAIN_LENGTH=24*60*60//10, # shares
+ TARGET_LOOKBEHIND=200, # shares
+ SPREAD=45, # blocks
+ IDENTIFIER='9147c5bfc6923429'.decode('hex'),
+ PREFIX='9408c1a03cf629f9'.decode('hex'),
+ P2P_PORT=41731,
+ MIN_TARGET=0,
+ MAX_TARGET=2**256//2**20 - 1,
+ PERSIST=False,
+ WORKER_PORT=9327,
+ BOOTSTRAP_ADDRS='78.27.191.182'.split(' '),
+ ANNOUNCE_CHANNEL='#p2pool-alt',
+ VERSION_CHECK=lambda v: True,
+     ),
+
     litecoin_testnet=math.Object(
         PARENT=networks.nets['litecoin_testnet'],
         SHARE_PERIOD=3, # seconds

hero member
Activity: 746
Merit: 502
Looking for advertising deal
I am trying to solo mine this coin
Is there any command for wallet to show hashrate from cgminer.
cgminer seem to be connected, but I can not find a block for longer than an hour.
what could be the case?
sr. member
Activity: 448
Merit: 250
It works now  Smiley
http://hyc.scryptmining.com
automatic payments - doesn't works or me!

ah thanks, was just about to post that its already been sent Smiley

There should be no further delays in payments in terms of auto payouts.   There were a number of blocks causing a logjam that I will be processing manually later tonight when I get a minute.  But anyt new blocks as of 45min or so ago should be paying out perfectly fine, and any old balances can/should be able to auto-payout any time you'd like.

To people who have pm'd me and not got a response yet, sorry, I've been busy trying to address the problems.  I hope I have resolved your issues in the process.  If not, please feel free to re-send.  I will eventually get all of you a reply either way.

Thanks again for people's patience and mining support @ the pool.  Once the manual stuff is cleaned up and things are again confirmed smooth, I'll be doing a bunch of giveaways and other things with the pool to show my appreciation.
full member
Activity: 154
Merit: 100
full member
Activity: 154
Merit: 100
newbie
Activity: 46
Merit: 0
no option to register

and how to register?

Click Sign In, then Sign Up
hero member
Activity: 742
Merit: 500
nearmiss
automatic payments - works
thank you

http://hyc.scryptmining.com now works normally?

UPD: to many stale share and rejected


Hey bud theres a new anti-ddos pool at http://hyc.epools.org/ . Great so far!

no option to register

and how to register?
Pages:
Jump to: