Author

Topic: BTCD is no more - page 431. (Read 1328490 times)

legendary
Activity: 1237
Merit: 1010
July 26, 2014, 07:34:51 AM
hey guys, I have lowered the payout threshhold to 0.5 BTCD on BTCDPool.com - next payout cycle will include everyone over 0.5 BTCD

great news! i hope see my payout very soon!!  Grin

I've mined there for a day which should result in well over 0.5BTCD, yet still no automated payout. He also isn't replying to message or in the threads. Will stay away for now until he responses and clears things up.
legendary
Activity: 1176
Merit: 1134
July 26, 2014, 04:33:09 AM
hey that same library issue is happening again, should i just build it off the github repo ?


Code:

$ ./exchange_data
dyld: Library not loaded: /Users/jimbolaptop/libwebsockets/lib/lib/libwebsockets.dylib
  Referenced from: /Users/MacPro/./exchange_data
  Reason: image not found
Trace/BPT trap: 5
If you have a build environment, then yes

for pNXTd you need to invoke it with "exchanges" as a command line parameter to put it into exchange data gathering mode
legendary
Activity: 1176
Merit: 1134
July 26, 2014, 03:55:54 AM
hey that same library issue is happening again, should i just build it off the github repo ?


Code:

$ ./exchange_data
dyld: Library not loaded: /Users/jimbolaptop/libwebsockets/lib/lib/libwebsockets.dylib
  Referenced from: /Users/MacPro/./exchange_data
  Reason: image not found
Trace/BPT trap: 5
If you have a build environment, then yes
sr. member
Activity: 336
Merit: 250
July 26, 2014, 03:54:00 AM
hey that same library issue is happening again, should i just build it off the github repo ?


Code:

$ ./exchange_data
dyld: Library not loaded: /Users/jimbolaptop/libwebsockets/lib/lib/libwebsockets.dylib
  Referenced from: /Users/MacPro/./exchange_data
  Reason: image not found
Trace/BPT trap: 5
legendary
Activity: 1176
Merit: 1134
July 26, 2014, 03:52:06 AM
Updated Announcements on OP!

Mac Testers wanted: https://bitcointalksearch.org/topic/m.8032283

hey ill test, wanna take a break from fixing the scss for the site, going to test it out with the nxt interface next which i will also have to make a scss style sheet for to make future deployment and color changes super easy.
It would be good if you are able to run this and have it gather data, then when I get display working you can see how it looks within new GUI
sr. member
Activity: 336
Merit: 250
July 26, 2014, 03:40:35 AM
Updated Announcements on OP!

Mac Testers wanted: https://bitcointalksearch.org/topic/m.8032283

hey ill test, wanna take a break from fixing the scss for the site, going to test it out with the nxt interface next which i will also have to make a scss style sheet for to make future deployment and color changes super easy.
sr. member
Activity: 441
Merit: 500
July 26, 2014, 03:37:26 AM
Updated Announcements on OP!

Mac Testers wanted: https://bitcointalksearch.org/topic/m.8032283
sr. member
Activity: 378
Merit: 250
July 26, 2014, 03:28:09 AM
Well, the debugging of the exchange data gathering went faster than expected. It just sort of worked after a few minor issues.

http://209.126.70.170/exchange_data has a Mac only version that will create an exchanges subdirectory and start gathering data for the pairs in the MGW.conf file, that also needs to be in the same directory as you run the exchange_data program.

You will need around 12 hours of data to be able to see good charts, so if you have a Mac, hopefully you can start gathering the data while I finish the display stuff.

Here is a sample MGW.conf file between the "###" lines
###
{
"MAINNET":1, "ORIGBLOCK":"16232361214057123821",
"active":["DOGE"],
"coins":[
{"name":"BTC","conf":"/home/root/.bitcoin/bitcoin.conf","asset":"4551058913252105307","txfee":0.0001,"NXTfee_equiv":0.0001,"rpc":"127.0.0.1:8332","blockheight":300797,"forkblockheight":308539,"minconfirms":3,"estblocktime":600},
{"name":"LTC","conf":"/home/root/.litecoin/litecoin.conf","asset":"2881764795164526882","txfee":0.001,"NXTfee_equiv":0.01,"rpc":"127.0.0.1:9332","blockheight":564980,"forkblockheight":594965,"minconfirms":5,"estblocktime":150},
{"name":"DRK","conf":"/home/root/.darkcoin/darkcoin.conf","asset":"17353118525598940144","txfee":0.01,"NXTfee_equiv":0.01,"rpc":"127.0.0.1:9998","blockheight":49594,"forkblockheight":0,"minconfirms":7,"estblocktime":150},
{"name":"BTCD","useaddmultisig":1,"nohexout":1,"conf":"/home/root/.BitcoinDark/BitcoinDark.conf","asset":"11060861818140490423","txfee":0.0001,"NXTfee_equiv":0.1,"rpc":"127.0.0.1:14632","blockheight":16000,"forkblockheight":0,"minconfirms":3,"estblocktime":60},
{"name":"DOGE","conf":"/home/root/.Dogecoin/dogecoin.conf","asset":"11749590149008849562","txfee":1.0,"NXTfee_equiv":200.0,"rpc":"127.0.0.1:22555","blockheight":250000,"forkblockheight":0,"minconfirms":3,"estblocktime":60}
],
"timezone":"-3",
"bittrex":[["BTCD","BTC"]],"cryptsy":[["BTCD","BTC"],["NXT","BTC"]],"poloniex":[["BTCD","BTC"],["NXT","BTC"]],"bter":[["NXT","BTC"]],"mintpal":[["LTC","BTC"]],"NXT":[["BTC","NXT"]]
}
###
You really only need the last part where the exchanges are listed. For "NXT" as the exchange, only coins specified in the "coins" field will work and the second part needs to be "NXT". For all the other exchanges, you should be able to put in any coin that they trade, though you probable need to put it in the right order to match how they are trading it.

Supported exchanges: "NXT", "bittrex", "cryptsy", "poloniex","bter" and "mintpal"

The time displayed will adjust by the "timezone" specified hours and should take into account daylight savings for USA peoples

The program loads the orderbooks of the specified pairs, no more frequently than once per second to an exchange and additionally no more frequently than once per ten seconds for a specific pair. This should get most all of the price changes without getting you blacklisted by the exchanges for abusing their API. Each time the top of the orderbook changes, it prints out the details and also adds an entry to a binary file.

Tomorrow, I will process this file and start getting some simple charts displayed to verify proper data and then finally I can code some tradebot logic, hopefully on Sunday

James

P.S. Please post any bugs that you find, it is really strange that it just worked the first time for all the exchanges, especially since they all have different syntax, especially mintpal and NXT

dude do you ever sleep ....?    Cheesy
legendary
Activity: 1176
Merit: 1134
July 26, 2014, 03:22:50 AM
Well, the debugging of the exchange data gathering went faster than expected. It just sort of worked after a few minor issues.

http://209.126.70.170/exchange_data has a Mac only version that will create an exchanges subdirectory and start gathering data for the pairs in the MGW.conf file which needs to be in your home directory.

You will need around 12 hours of data to be able to see good charts, so if you have a Mac, hopefully you can start gathering the data while I finish the display stuff.

Here is a sample MGW.conf file between the "###" lines
###
{
"MAINNET":1, "ORIGBLOCK":"16232361214057123821",
"active":["DOGE"],
"coins":[
{"name":"BTC","conf":"/home/root/.bitcoin/bitcoin.conf","asset":"4551058913252105307","txfee":0.0001,"NXTfee_equiv":0.0001,"rpc":"127.0.0.1:8332","blockheight":300797,"forkblockheight":308539,"minconfirms":3,"estblocktime":600},
{"name":"LTC","conf":"/home/root/.litecoin/litecoin.conf","asset":"2881764795164526882","txfee":0.001,"NXTfee_equiv":0.01,"rpc":"127.0.0.1:9332","blockheight":564980,"forkblockheight":594965,"minconfirms":5,"estblocktime":150},
{"name":"DRK","conf":"/home/root/.darkcoin/darkcoin.conf","asset":"17353118525598940144","txfee":0.01,"NXTfee_equiv":0.01,"rpc":"127.0.0.1:9998","blockheight":49594,"forkblockheight":0,"minconfirms":7,"estblocktime":150},
{"name":"BTCD","useaddmultisig":1,"nohexout":1,"conf":"/home/root/.BitcoinDark/BitcoinDark.conf","asset":"11060861818140490423","txfee":0.0001,"NXTfee_equiv":0.1,"rpc":"127.0.0.1:14632","blockheight":16000,"forkblockheight":0,"minconfirms":3,"estblocktime":60},
{"name":"DOGE","conf":"/home/root/.Dogecoin/dogecoin.conf","asset":"11749590149008849562","txfee":1.0,"NXTfee_equiv":200.0,"rpc":"127.0.0.1:22555","blockheight":250000,"forkblockheight":0,"minconfirms":3,"estblocktime":60}
],
"timezone":"-3",
"bittrex":[["BTCD","BTC"]],"cryptsy":[["BTCD","BTC"],["NXT","BTC"]],"poloniex":[["BTCD","BTC"],["NXT","BTC"]],"bter":[["NXT","BTC"]],"mintpal":[["LTC","BTC"]],"NXT":[["BTC","NXT"]]
}
###
You really only need the last part where the exchanges are listed. For "NXT" as the exchange, only coins specified in the "coins" field will work and the second part needs to be "NXT". For all the other exchanges, you should be able to put in any coin that they trade, though you probable need to put it in the right order to match how they are trading it.

Supported exchanges: "NXT", "bittrex", "cryptsy", "poloniex","bter" and "mintpal"

The time displayed will adjust by the "timezone" specified hours and should take into account daylight savings for USA peoples

The program loads the orderbooks of the specified pairs, no more frequently than once per second to an exchange and additionally no more frequently than once per ten seconds for a specific pair. This should get most all of the price changes without getting you blacklisted by the exchanges for abusing their API. Each time the top of the orderbook changes, it prints out the details and also adds an entry to a binary file.

Tomorrow, I will process this file and start getting some simple charts displayed to verify proper data and then finally I can code some tradebot logic, hopefully on Sunday

James

P.S. Please post any bugs that you find, it is really strange that it just worked the first time for all the exchanges, especially since they all have different syntax, especially mintpal and NXT
sr. member
Activity: 441
Merit: 500
July 26, 2014, 02:25:42 AM
Updated OP!

A new website with a bounty system should be ready for launch soon (hopefully today), after which new developments should be occurring more frequently.

In the meantime, you can play a new game for BTCD here: btcd.dogeofwallstreet.com/
sr. member
Activity: 336
Merit: 250
July 26, 2014, 01:34:41 AM
400 scam cryptocurrencies and you ladies think this one is any different.  LOL  Maybe it is.  Why release a coin and then build it?  Why not code it and then release?  A little common sense goes a long way. 

What's with the bots trading on Cryptsy anyway?  Is that supporting the price while you code or is it price fixing while you stall?  Time will tell. 

Sorry if I'm a bit skeptical, been burned too many times to count to trust a faceless name especially a former Forex trader.  Oh wait I forgot Instantdex is going to be the next JP morgan, or something like that.  Where have i heard that one before? LOL  We'll see. 

I don't trust this coin is not another huge disaster waiting to happen.   I completely expect that this coin will collapse at any minute.  A lot of people may be getting ready to lose a lot of money if this turns out to be a scam.   Even if it's not a scam the price could crash at any minute due to incompetence.  Buyer beware.

Everyone remember when Obama tried to convince everyone he was like Jesus?  "...contrary to popular opinion I was not born in a manger..." yada yada  Well that turned out not to be true also. 


Bitcoindark is going above DRK.  It's going to be in the top ten on Coinmarketcap. etc. etc.  Empty promises. 



Just code the damn coin and release it like Satoshi did.  Save the empty promises for someone who gives a crap.




Okay everything you just posted is semantics, its common FUD anger from another developer. You literally only have three posts on the forum two of which are pro Cryptographic bullion posts so your opinion is clearly not needed. Do your homework actually investigate what is going instead of being angry that no one is taking cryptographic bullion seriously right now.
full member
Activity: 128
Merit: 100
July 26, 2014, 01:22:53 AM
400 scam cryptocurrencies and you ladies think this one is any different.  LOL  Maybe it is.  Why release a coin and then build it?  Why not code it and then release?  A little common sense goes a long way. 

What's with the bots trading on Cryptsy anyway?  Is that supporting the price while you code or is it price fixing while you stall?  Time will tell. 

Sorry if I'm a bit skeptical, been burned too many times to count to trust a faceless name especially a former Forex trader.  Oh wait I forgot Instantdex is going to be the next JP morgan, or something like that.  Where have i heard that one before? LOL  We'll see. 

I don't trust this coin is not another huge disaster waiting to happen.   I completely expect that this coin will collapse at any minute.  A lot of people may be getting ready to lose a lot of money if this turns out to be a scam.   Even if it's not a scam the price could crash at any minute due to incompetence.  Buyer beware.

Everyone remember when Obama tried to convince everyone he was like Jesus?  "...contrary to popular opinion I was not born in a manger..." yada yada  Well that turned out not to be true also. 


Bitcoindark is going above DRK.  It's going to be in the top ten on Coinmarketcap. etc. etc.  Empty promises. 



Just code the damn coin and release it like Satoshi did.  Save the empty promises for someone who gives a crap.


member
Activity: 72
Merit: 10
July 25, 2014, 11:23:57 PM
Not sure what this means from github:

jl777
463 commits / 305,782 ++ / 136,181 --

Strange, my code base is only around 45000 lines now, oh, this also includes the cryptonote source code
OK, so that makes sense a total line count shows ~140000 lines

I did just add about 10000 lines of code today, so it will take probably all weekend to get it properly ported

James

It makes me angry when I still hear sometimes that btcd has nothing new to offer or no innovation..

Maybe the new website and media exposure helps
member
Activity: 67
Merit: 10
July 25, 2014, 11:20:13 PM
Will there be any kind of denomination as the relative value of BTCD goes up?
I think ~2 Million coins total might be too few if it stays at $10M market cap.
Thanks
full member
Activity: 224
Merit: 100
goog
July 25, 2014, 10:37:50 PM
Beyond LTC
legendary
Activity: 3556
Merit: 1126
July 25, 2014, 09:20:22 PM

BitcoinDark by xpool - The Official BTCD Multipool

PROP reward system
BTCD Payouts
Scrypt & SHA256 & X11 Algo's
DDoS Protected
High Performance Backend
Simple setup and usage
1% Fee
To mine:

How does it work?

xpool offers 3 different sets of coins to mine. SHA256, Scrypt and X11. Each algorithm runs on a shift (see below). The confirmed coins are traded on the top 4 exchanges throughout the duration of the shift automatically to maximize the profits by exchanging them into BTCD and creating buy pressure in the BTCD markets! Once the shift ends, the shift is moved into "Confirming" status while all the coins are confirmed as successfully traded and exchanged, the BTCD payments are sent.

Current shifts run 24 hours, Monday - Friday and end at 7PM Eastern each day except Saturday & Sunday. The weekend shift ends on the Monday. Payments are then finialized and typically complete 2-3 hours after a shift ends.

The advantage of the pool is that you can utilize your any GPU, CPU and older ASIC equipment to earn you the more desired BitcoinDark.
Cheers and Happy Hashing!

PortAlgoExample
3500SHA256stratum+tcp://mine.btcd.xpool.ca:3500 -u -p ANYTHING
3600SCRYPTstratum+tcp://mine.btcd.xpool.ca:3600 -u -p ANYTHING
3700X11stratum+tcp://mine.btcd.xpool.ca:3700 -u -p ANYTHING

Donations welcome or tip me, crackers, on IRC!

Any issues, please report them here or feel free to PM me, as I can't always see every post.

Today's shift payments have finished. Over 327 BTCD sent out to miners on all 3 algos!

Keep up the mining support!

Cheers!
legendary
Activity: 3556
Merit: 1126
July 25, 2014, 09:18:19 PM
does somebody have an answer to why 50%+ of the mined coins I get are rejected?

seems strange. None of mine have.
legendary
Activity: 1176
Merit: 1134
July 25, 2014, 08:13:05 PM
Not sure what this means from github:

jl777
463 commits / 305,782 ++ / 136,181 --

Strange, my code base is only around 45000 lines now, oh, this also includes the cryptonote source code
OK, so that makes sense a total line count shows ~140000 lines

I did just add about 10000 lines of code today, so it will take probably all weekend to get it properly ported

James
member
Activity: 89
Merit: 10
July 25, 2014, 06:23:56 PM
sr. member
Activity: 441
Merit: 500
July 25, 2014, 05:03:56 PM
SPAM!! SPAM!! SPAM!!
 Grin Grin Grin Grin Grin Grin Grin Grin Grin
Spam leads to report, I hope everyone else do the same

Reported. 

Notice to all spammers, you will be reported immediately and I'm sure the Mods will not take kindly to your behavior.
Jump to: