Bitcoin Forum
June 16, 2024, 05:20:55 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 [5] 6 »
81  Alternate cryptocurrencies / Mining (Altcoins) / Re: [XPM]unofficial jhPrimeminer thread on: August 04, 2013, 02:44:24 AM
is there any way to "prefer" 7 chain and up instead of tiny 6 chain values?
82  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [XPM] [ANN] Primecoin High Performance on: August 03, 2013, 10:48:06 PM
I'm getting those numbers

Quote
2013-08-03 22:46:44 primemeter  19911666 prime/h 353606585 test/h 1440 5-chains/h 2.923962 chain/d

getmininginfo shows

Quote
{
"blocks" : 95925,
"chainspermin" : 27,
"chainsperday" : 2.91638892,
"currentblocksize" : 1000,
"currentblocktx" : 0,
"difficulty" : 9.24577916,
"errors" : "",
"generate" : true,
"genproclimit" : -1,
"roundsievepercentage" : 70,
"primespersec" : 5541,
"pooledtx" : 0,
"sievepercentage" : 10,
"sievesize" : 1000000,
"testnet" : false
}

something is off. I'm using a 32 core instance and 60GB of RAM. How does it look like when a block was found?
83  Alternate cryptocurrencies / Mining (Altcoins) / Re: [XPM]unofficial jhPrimeminer thread on: August 03, 2013, 09:33:34 PM
what is the best configuration for 64GB of RAM and 32 cores?

I'm using -s 2000000 -d 15 but it doesn't seem to be finding more shares than usual (at 88k PPS)
84  Alternate cryptocurrencies / Altcoin Discussion / Re: hypernova.pw "disappeared" with coins on: July 31, 2013, 05:14:17 PM
http://hypernova.pw seem to have been hacked, the difficulty dropped to ~18, and everyone started getting tons of shares each second, ended up with hundreds of coins in the accounts, but now is way down to 0.0000000000 LTC. They didn't even bother to use a backup or anything like that, just decided to zero everything. Pretty pissed right now.

do they have an official thread where this is being discussed?



no, i'm just suppossing, nothing official. for the global pool difficulty to have changed like that, something went terrible wrong (from 800ish to 18)

I would guess he upgraded litecoin and did not have the blockchain ready.. which means low diff reported to the pool.
So are you saying your account showed a ton of coins and maybe some people make withdraws draining the pool's wallet to nothing?


yes, I didn't attempt to withdraw any coins because I knew something was wrong, I didn't own that many coins, that's for sure.
85  Alternate cryptocurrencies / Altcoin Discussion / Re: hypernova.pw "disappeared" with coins on: July 31, 2013, 05:09:57 PM
http://hypernova.pw seem to have been hacked, the difficulty dropped to ~18, and everyone started getting tons of shares each second, ended up with hundreds of coins in the accounts, but now is way down to 0.0000000000 LTC. They didn't even bother to use a backup or anything like that, just decided to zero everything. Pretty pissed right now.

do they have an official thread where this is being discussed?



no, i'm just suppossing, nothing official. for the global pool difficulty to have changed like that, something went terrible wrong (from 800ish to 18), after my miner lost connection, I went to the site to see if it was online, then I saw it.

EDIT: see the last "created block"

#    Miner    Age    Shares    Confirmations    Details
398,334    ?    54 minutes    0    Confirmed    See details > points to http://explorer.litecoin.net/tx/zefzfeeffe

in https://hypernova.pw/statistics/
86  Alternate cryptocurrencies / Altcoin Discussion / hypernova.pw "disappeared" with coins on: July 31, 2013, 04:49:44 PM
http://hypernova.pw seem to have been hacked, the difficulty dropped to ~18, and everyone started getting tons of shares each second, ended up with hundreds of coins in the accounts, but now is way down to 0.0000000000 LTC. They didn't even bother to use a backup or anything like that, just decided to zero everything. Pretty pissed right now.
87  Bitcoin / Project Development / Re: [WIP] My opensource Node.js Stratum server and client + RPC interface on: July 31, 2013, 02:34:05 AM
Improved the docs a bit. The main server part is completly functional. Only missing the automated tests!

https://github.com/pocesar/node-stratum
88  Alternate cryptocurrencies / Altcoin Discussion / Re: [Javascript / Node.js] Detect cryptocoin by address (Bitcoin, Litecoin, etc) on: July 29, 2013, 03:36:16 PM
Some cryptocoins have addresses that are the same as Bitcoin's.

yup, that's why I added the 'conflict' member of the result of the function, so you might resolve the conflicts by yourself (either by querying a block explorer or the daemon directly)
89  Alternate cryptocurrencies / Altcoin Discussion / [Javascript / Node.js] Detect cryptocoin by address (Bitcoin, Litecoin, etc) on: July 29, 2013, 02:07:58 PM
Quote
Detects which cryptcoin is the given cryptocoin address (starts with some coins listed in CoinWarz.com that have working block explorers)

This isn't by any means accurate, it's a quick & dirty check, you have to resolve any conflicts by yourself.

The addresses are checked using base58Check native module (currently doesn't work on Windows, so it's shim'ed)

https://github.com/pocesar/node-detect-cryptocoin

supports out-of-box:

  • Bitcoin
  • Noirbits
  • Terracoin
  • Krugercoin
  • Bottlecaps
  • Fastcoin
  • Digital Coin
  • BBQCoin
  • Bitbar
  • Novacoin
  • Litecoin
  • Worldcoin
  • Feathercoin
  • Franko
  • Mincoin
  • Stablecoin
  • Megacoin
  • PPCoin
  • Hypercoin
  • Freicoin
  • Alphacoin
  • Namecoin
  • Ixcoin
  • Devcoin
  • Primecoin

Feedback and bugs leave in this thread or open an issue on github!
90  Bitcoin / Project Development / Re: [WIP] My opensource Node.js Stratum server and client + RPC interface on: July 29, 2013, 01:06:21 PM
done, finished my hacky detect cryption library (using base58-native) for node.js Smiley

https://github.com/pocesar/node-detect-cryptocoin
91  Bitcoin / Project Development / Re: [WIP] My opensource Node.js Stratum server and client + RPC interface on: July 28, 2013, 04:27:51 PM
I've learned a lot from reading the bitcoinjs-server source, but couldn't make it work on Windows, unfortunately.

Hopefully node-libcoin will be a full replacement for bitcoinjs-server... Smiley



nice! the more light weight, the merrier. should focusing in making it modular and independent, but that work well together.

I've created a pull request for the gyp binding to build base58 on windows.
92  Bitcoin / Project Development / Re: [WIP] My opensource Node.js Stratum server and client + RPC interface on: July 28, 2013, 01:50:24 PM
hey jgarzik, I'm already following you on github Wink

thanks for the links, they are pretty important, mainly for the base58 that I didn't find in npm earlier! I'm at the moment finishing a hash address detector, simple quick and dirty way to detect which addresses belong.

I've learned a lot from reading the bitcoinjs-server source, but couldn't make it work on Windows, unfortunately.
93  Bitcoin / Project Development / Re: [WIP] My opensource Node.js Stratum server and client on: July 26, 2013, 09:22:16 PM
Thank you! Been waiting for this for a while. 1 BTC tip sent!

thanks man, really appreciate it. I should finish the coind part by this weekend I think (along with forking the process with the proper command line parameters).
after that, I will focus on testing every part of the server, using mocha and sinon (for mocks and stubs), and then try converting some python code for the stratum mine pool from slush to see how well it performs and add a benchmark to it as well. AFAIK, node is pretty good at handling connections, so I'm confident it will handle a large amount of data and connections per 'cluster'
94  Alternate cryptocurrencies / Announcements (Altcoins) / Re: *Updated* Bottlecaps NEW v1.3 [CAP]| No Premine | 0.25 Start Diff |Proof Stake on: July 26, 2013, 04:24:19 PM
Gotta love the Fallout game reference Grin
95  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] [PPC] Official PPCoin Faucet on: July 26, 2013, 04:12:05 PM
Thanks, it seems to be working, but the faucet is always regenerating now, is it expected?
96  Bitcoin / Project Development / [WIP] My opensource Node.js Stratum server and client + RPC interface on: July 26, 2013, 02:20:35 PM
It's built from scratch using dependency injection, D.R.Y. paradigm, event emitters and deferred/promises.

https://github.com/pocesar/node-stratum

  • Defer and promise based code instead of callbacks (avoid callback hell)
  • Simple but powerful API for managing both server and client
  • Build-in support for spawn coins daemons (bitcoind, litecoind, etc) process and accept RPC calls
  • Easy for you to add your own procedures do the RPC server (using expose)
  • No need to worry about .conf files for the daemons, everything is passed through command line the best way possible (but you may override arguments)
  • Optimized code reuse with class methods and dependency injection
  • All classes based on EventEmitter by default (through the Base class)
  • The client part make it easy, along with an RPC server, to setup your own farming pool for coins
  • You can create a proxy from it using the Client interface, mix up Stratum with your own RPC definition and commands
  • It's up to you to choose the logging module (like winston)

It's currently on active development, only missing the bitcoind control from the code, and then creation of the automated mocha tests, and should be ready to go. Preliminar tests showed it to be working well (with cpuminer and bfgminer, for example)
97  Bitcoin / Mining software (miners) / Re: GPU Mining on the browser using WebCL? on: July 25, 2013, 06:23:38 AM

oh nice, thanks for sharing Smiley
98  Bitcoin / Mining software (miners) / GPU Mining on the browser using WebCL? on: July 24, 2013, 05:17:46 PM
I just stumbled across this: http://webcl.nokiaresearch.com/

This enables OpenCL usage inside the browser (along with asm.js for faster math operations, Firefox only). Although it's experimental, wouldn't it be possible to create a miner directly inside the pool page?
99  Economy / Gambling / Re: Peerbet.org - Play without house edge! [BONUS FOR TRANSLATORS] on: July 23, 2013, 04:33:03 PM
Part of the problem I have with this site is that users create their own lottos, but also buy around 90% of the tickets or so, giving that player a huge advantage. This makes it incredibly hard to profit/win off of unless you create your own lotto and buy the majority of tickets. So it's rare to find equally fair bets. Maybe have an option for that? Or, perhaps each user can only buy up to 50% of their own lotto tickets?
I think it would spark more interest and up the profits going in and out. Smiley

say you create a game with 10 tickets, and you buy 9, leaving 1 for others to buy, at 0.005 BTC each, they lose only 0.005 and you MIGHT lose 0.045 BTC, since you still give 10% chance for them. High risk for you and low profit for you, high profit chance for the other user at a small price, it's pretty simple.
100  Economy / Gambling / Re: Peerbet.org - Play without house edge! [BONUS FOR TRANSLATORS] on: July 23, 2013, 01:17:00 PM
I'm kinda addicted to this site, and losing everything after a long winning streak, every time, it's a bad sign of my addiction...
Pages: « 1 2 3 4 [5] 6 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!