Pages:
Author

Topic: [ANN][SRC] Securecoin | A Fast and Secure Version of Bitcoin | 2013 - page 39. (Read 195438 times)

newbie
Activity: 14
Merit: 0
Anyone setup an explorer yet?

It will come after a working wallet, the website and something else i guess..
full member
Activity: 178
Merit: 100
hero member
Activity: 826
Merit: 1001
@Bit_John
Anyone setup an explorer yet?
newbie
Activity: 14
Merit: 0
"The most secure coin"

Lots of miners can't even download the blockchain to help secure the coin. lol

Its intentional and part of the so called "fair launch" added ALL the addnodes and wallet wont connect, the UPnP options is disabled in the windows QT client.
Worst launch this week, had expected more of Baritus but the aim of this fail-launch was obviously instamining..


go back to your looser coin kid, you may think we're all stupid people here, get a life kid

Dude go suck a goat or something, i like the coin i just dont like that its launched as semi-broken, do you?
If they can launch stuff like butterflycoin, androids tokens and any random recent release with a working wallet why could not Baritus launch Securecoin with a working one actually being able to sync?
rpg
hero member
Activity: 728
Merit: 500
"The most secure coin"

Lots of miners can't even download the blockchain to help secure the coin. lol

Its intentional and part of the so called "fair launch" added ALL the addnodes and wallet wont connect, the UPnP options is disabled in the windows QT client.
Worst launch this week, had expected more of Baritus but the aim of this fail-launch was obviously instamining..


go back to your looser coin kid, you may think we're all stupid people here, get a life kid
sr. member
Activity: 252
Merit: 250
I made some updates on frontend of http://src.coinmine.pl which should reflect correct values of hasrates, etc.

So far pool is running very stable!

feeleep
whats the share diff on your pool? im sometimes going 7+ mins without a share (and missing rounds) with 550kh

Hi - I lowered diff 2x now but lets see how it works during the night (it shows as equivalent to litecoin diff = 2 Smiley)
much better now thanks Smiley getting 1 or 2 shares a min
newbie
Activity: 14
Merit: 0
"The most secure coin"

Lots of miners can't even download the blockchain to help secure the coin. lol

Its intentional and part of the so called "fair launch" added ALL the addnodes and wallet wont connect, the UPnP options is disabled in the windows QT client.
Worst launch this week, had expected more of Baritus but the aim of this fail-launch was obviously instamining..
legendary
Activity: 1064
Merit: 1002
legendary
Activity: 1197
Merit: 1000
I made some updates on frontend of http://src.coinmine.pl which should reflect correct values of hasrates, etc.

So far pool is running very stable!

feeleep
whats the share diff on your pool? im sometimes going 7+ mins without a share (and missing rounds) with 550kh

Hi - I lowered diff 2x now but lets see how it works during the night (it shows as equivalent to litecoin diff = 2 Smiley)
sr. member
Activity: 392
Merit: 250
I setup a p2pool (2%) for securecoin.  

Please join and provide any feedback! Grin

Quick tutorial:
1. Get minerd64_sse4.exe here https://docs.google.com/file/d/0BxKqW4aMUczmaTVfWjZEdnpqLVk/edit?usp=sharing

2. Run this at cmd prompt but put in your Securecoin wallet address!

Code:
minerd64_sse4.exe -a quark -t 8 -o http://www.japool.com:17339 --userpass=YourSecurecoinWalletAddress:AnyPassword

*Change this "-t 8" to the number of cores you have I have 8.  If you have 4 cores change it to "-t 4" if you have 2 cores change it to "-t 2"
member
Activity: 113
Merit: 10
Currently testing a p2pool node for SRC here : http://pool.bounceme.net:44397
You can join but it might needs some more tuning ...

I confirm that pool is working fine but local/graph hashrate are not good.
Payouts are OK so no problem for you to mine there if you want.
sr. member
Activity: 322
Merit: 250
Supersonic
Is there a block explorer up yet?

Basically i wanna query getdifficulty and getblockcount ... without accessing a real wallet.

Sign up at a pool like http://src.coinmine.pl/, then grab your API key.
Then just query http://src.coinmine.pl/index.php?page=api&action=getpoolstatus&api_key=KEY

Yeah realized that... 5 seconds after posting...

In case anyone wants to do api calculations programatically....  heres some python code... this script updates my spreadsheet at ( https://docs.google.com/spreadsheet/ccc?key=0AsoEvtUcZSjWdDJzd3Riek9Mb2RwUVhubUdrdEthclE#gid=0 )

Code:
import httplib2, json
from datetime import datetime

h = httplib2.Http()


r, c = h.request("http://176.221.46.81/chain/Quarkcoin/q/getdifficulty")
qrkdiff = float(c)
print qrkdiff

r,c = h.request("http://pubapi.cryptsy.com/api.php?method=marketdata")
data = json.loads(c)["return"]["markets"]
srcprice = data["SRC"]["lasttradeprice"]
qrkprice = data["QRK"]["lasttradeprice"]
print srcprice, qrkprice

r,c = h.request("http://176.221.46.81/chain/Quarkcoin/q/getblockcount")
qrkheight = int(c)
print qrkheight
qrkreward = 2048 >> (qrkheight + 1)//60480
print qrkreward

r, c = h.request("http://data.mtgox.com/api/1/BTCUSD/ticker")
btcusd =  float(json.loads(c)["return"]["last"]["value"])

r, c = h.request("http://src.coinmine.pl/index.php?page=api&action=getpoolstatus&api_key=xxxxxxxxxxxxxxxxxxxxxxxxxxxx")
data = json.loads(c)
srcdiff = data["getpoolstatus"]["networkdiff"]
srcheight = data["getpoolstatus"]["nextnetworkblock"]
#srcreward = dont know how....
print srcdiff
full member
Activity: 168
Merit: 100
Is there a block explorer up yet?

Basically i wanna query getdifficulty and getblockcount ... without accessing a real wallet.

Sign up at a pool like http://src.coinmine.pl/, then grab your API key.
Then just query http://src.coinmine.pl/index.php?page=api&action=getpoolstatus&api_key=KEY
sr. member
Activity: 476
Merit: 250
It seems everything is going well. Both the price and the mining power are positive.

Yes, the price was dropping quite fast earlier this afternoon, but has picked up nicely.
I even managed to make a (very small) profit picking up some 'cheap' and waiting for the rally Smiley
sr. member
Activity: 322
Merit: 250
Supersonic
Is there a block explorer up yet?

Basically i wanna query getdifficulty and getblockcount ... without accessing a real wallet.
legendary
Activity: 966
Merit: 1052
It seems everything is going well. Both the price and the mining power are positive.
sr. member
Activity: 252
Merit: 250
I made some updates on frontend of http://src.coinmine.pl which should reflect correct values of hasrates, etc.

So far pool is running very stable!

feeleep
whats the share diff on your pool? im sometimes going 7+ mins without a share (and missing rounds) with 550kh
sr. member
Activity: 392
Merit: 250
Currently testing a p2pool node for SRC here : http://pool.bounceme.net:44397
You can join but it might needs some more tuning ...

akabane,

Ok i think I'm getting there slowly Wink

Did you use the p2pool source from https://github.com/Neisklar/p2pool-quarkcoin/branches ?

I get this error: "exceptions.ImportError: No module named quark_hash"

2013-08-30 13:24:45.423000 > Error handling message: (see RECV line)
2013-08-30 13:24:45.423000 > Traceback (most recent call last):
2013-08-30 13:24:45.423000 >   File "C:\Python27\lib\site-packages\twisted\internet\tcp.py", line 215, in doRead
2013-08-30 13:24:45.423000 >     return self._dataReceived(data)
2013-08-30 13:24:45.423000 >   File "C:\Python27\lib\site-packages\twisted\internet\tcp.py", line 221, in _dataReceived
2013-08-30 13:24:45.423000 >     rval = self.protocol.dataReceived(data)
2013-08-30 13:24:45.423000 >   File "C:\files\p2pool\secure1\p2pool-quarkcoin-master\p2pool\util\p2protocol.py", line 27, in dataReceived
2013-08-30 13:24:45.423000 >     self.dataReceived2(data)
2013-08-30 13:24:45.423000 >   File "C:\files\p2pool\secure1\p2pool-quarkcoin-master\p2pool\util\datachunker.py", line 40, in _DataChunker
2013-08-30 13:24:45.423000 >     wants = receiver.send(buf.get(wants))
2013-08-30 13:24:45.423000 > --- ---
2013-08-30 13:24:45.423000 >   File "C:\files\p2pool\secure1\p2pool-quarkcoin-master\p2pool\util\p2protocol.py", line 57, in dataReceiver
2013-08-30 13:24:45.423000 >     self.packetReceived(command, type_.unpack(payload, self.ignore_trailing_payload))
2013-08-30 13:24:45.423000 >   File "C:\files\p2pool\secure1\p2pool-quarkcoin-master\p2pool\util\p2protocol.py", line 71, in packetReceived
2013-08-30 13:24:45.423000 >     handler(**payload2)
2013-08-30 13:24:45.423000 >   File "C:\files\p2pool\secure1\p2pool-quarkcoin-master\p2pool\bitcoin\p2p.py", line 130, in handle_headers
2013-08-30 13:24:45.423000 >     header_hash = self.net.BLOCKHASH_FUNC(bitcoin_data.block_header_type.pack(header))
2013-08-30 13:24:45.423000 >   File "C:\files\p2pool\secure1\p2pool-quarkcoin-master\p2pool\bitcoin\networks.py", line 20, in
2013-08-30 13:24:45.423000 >     BLOCKHASH_FUNC=lambda data: pack.IntType(256).unpack(__import__('quark_hash').getPoWHash(data)),
2013-08-30 13:24:45.423000 > exceptions.ImportError: No module named quark_hash
2013-08-30 13:24:50.330000 > Error while requesting best block header:
2013-08-30 13:24:50.330000 > Traceback (most recent call last):
2013-08-30 13:24:50.330000 > Failure: twisted.internet.defer.TimeoutError: in ReplyMatcher
hero member
Activity: 822
Merit: 1002
p2p is working well. 1.67259 worth of payouts in about 20 minutes. Seems to be working fine though still not too many people using it. I'm going to start bringing more hash here.
Working fine for me, payouts received Smiley
Very good work !!!
full member
Activity: 168
Merit: 100
I made some updates on frontend of http://src.coinmine.pl which should reflect correct values of hasrates, etc.
Hashrate looks good. SRC/day and BTC/day are still wrong.
Est. Avg. Time per Round, Est. Shares this Round and Time Since Last Block all look good.


Currently using MinerD64_AVX.exe on Feeleeps pool I always display o Kh's and 0 shares, even though my miner is reporting otherwise. Im sure the user and password are correct and whatnot...

Is that hashrate as listed on the sidebar or as listed on the worker page?
The worker page is per-round, so it's not 100% accurate.
Pages:
Jump to: