Jump to content




Krist - Minable currency that works across servers (paste updated)


  • You cannot reply to this topic
1697 replies to this topic

#961 Creator

    Mad Dash Victor

  • Members
  • 2,168 posts
  • LocationYou will never find me, muhahahahahaha

Posted 04 January 2016 - 08:37 PM

View Postapemanzilla, on 04 January 2016 - 07:55 PM, said:

View PostTripy998, on 04 January 2016 - 04:17 PM, said:

View Postapemanzilla, on 04 January 2016 - 03:24 AM, said:

View PostTripy998, on 04 January 2016 - 03:18 AM, said:

View Postapemanzilla, on 04 January 2016 - 02:29 AM, said:

View PostTripy998, on 04 January 2016 - 01:51 AM, said:

Speaking of which, how long does it actually take to make Krist, and what is the thread count argument for in the miner.......?

It depends on your computer. Faster computer = more Krist pretty much.

The thread argument is how many threads to run. Each thread can only use one core of your CPU, so if you have a quad core CPU you want to use 4 threads. I have a six core CPU so I use six threads.

You can dig through the source code for KWallet here, but KSTealer (the brute-force program I wrote) is closed source.
I'm only interested in the wallet code so I can work on my own. Possibly an online one.

Also, brute force is hard to due on your parents computer. Ended up just giving up. XD
Also, I max out at around 0.0491MH.

Don't think I'll get anything anytime soon.....

Hmm, yeah... I max out at around 20 MH/s on my CPU, and I'm writing a GPU miner now...

I have a basic Java Krist API I've been working on as well here if you're interested.

Yeah, thanks. But then again, I'm using a laptop. Getting a desktop later with one of those miner usbs as well to do the mining.

If you mean a Bitcoin ASIC then you won't be able to use it with Krist. Right now you can only use a couple CPU miners people have written. Bitcoin miners won't work for Krist.

Why don't they work?

#962 Tiin57

    Java Lunatic

  • Members
  • 1,412 posts
  • LocationIndiana, United States

Posted 04 January 2016 - 08:54 PM

View PostCreator, on 04 January 2016 - 08:37 PM, said:

View Postapemanzilla, on 04 January 2016 - 07:55 PM, said:

View PostTripy998, on 04 January 2016 - 04:17 PM, said:

Yeah, thanks. But then again, I'm using a laptop. Getting a desktop later with one of those miner usbs as well to do the mining.

If you mean a Bitcoin ASIC then you won't be able to use it with Krist. Right now you can only use a couple CPU miners people have written. Bitcoin miners won't work for Krist.

Why don't they work?

Because... Bitcoin is not Krist. At all. The differences are vast, and though the concepts are somewhat similar, the goals of the two currencies are completely separate, and what works for one will definitely not work for the other. See https://en.wikipedia.../Bitcoin#Mining for more info on the purpose of Bitcoin miners.

#963 apemanzilla

  • Members
  • 1,421 posts

Posted 04 January 2016 - 10:04 PM

View PostCreator, on 04 January 2016 - 08:37 PM, said:

Why don't they work?

View PostTiin57, on 04 January 2016 - 08:54 PM, said:

Because... Bitcoin is not Krist. At all. The differences are vast, and though the concepts are somewhat similar, the goals of the two currencies are completely separate, and what works for one will definitely not work for the other. See https://en.wikipedia.../Bitcoin#Mining for more info on the purpose of Bitcoin miners.
What this guy said. Also, at the most basic level, Bitcoin mining uses sha256(sha256(input)) while Krist uses sha256(input). And since bitcoin ASICs are extremely optimized devices created for one singular purpose, mining bitcoins, they don't just give you a sha256 function to call...

#964 3d6

  • Members
  • 336 posts

Posted 04 January 2016 - 10:12 PM

I could have easily added support for bitcoin ASICs. If I had, two or three people would already have 99% of the money supply, I guarantee it. :P

#965 Creator

    Mad Dash Victor

  • Members
  • 2,168 posts
  • LocationYou will never find me, muhahahahahaha

Posted 04 January 2016 - 10:19 PM

View Post3d6, on 04 January 2016 - 10:12 PM, said:

I could have easily added support for bitcoin ASICs. If I had, two or three people would already have 99% of the money supply, I guarantee it. :P

Yeah, better don't add.It all boils down to the fact that some people have spent money on buying a miner, while others can't afford to since krist does not bring real money, unlike bitcoin.

#966 クデル

  • Members
  • 349 posts

Posted 05 January 2016 - 05:51 AM

View PostCreator, on 04 January 2016 - 10:19 PM, said:

View Post3d6, on 04 January 2016 - 10:12 PM, said:

I could have easily added support for bitcoin ASICs. If I had, two or three people would already have 99% of the money supply, I guarantee it. :P

Yeah, better don't add.It all boils down to the fact that some people have spent money on buying a miner, while others can't afford to since krist does not bring real money, unlike bitcoin.

They aren't to expensive? I was able to purchase a 1GH/s Block Eruptor for $10 USD.

#967 Lupus590

  • Members
  • 2,028 posts
  • LocationUK

Posted 05 January 2016 - 08:31 AM

People who can't have a dedicated miner PC but have a Linux (or other *nix) box may find this nice (see what I did there?)

Put your miner at a lowish priority and leave your pc on when you can, every other process will interrupt your miner but any time they have to wait for hardware (quite often for most programs) your miner will sneak a few goes on the CPU. Then your main process gets their hardware response and everything continues as normal. Just make sure to have good cooling, your CPU will (likely) be running more then it is now.

#968 apemanzilla

  • Members
  • 1,421 posts

Posted 05 January 2016 - 02:09 PM

Lupus, it's not quite that simple. It's not that other processes will interrupt it, instead other processes will take priority and be given more CPU time than the miner. So it will work, however, you will still experience slowdowns. Additionally, your CPU will be essentially locked at max load, and will be drawing a lot of power and generating a lot of heat.

A much better system would be one where a miner is constantly running as a daemon, but not actually mining except when the system is idle - eg, no user input for 5 minutes.

#969 apemanzilla

  • Members
  • 1,421 posts

Posted 08 January 2016 - 04:11 PM

Early testing of my OpenCL miner is going well. I'm getting 3+ MH/s on the integrated graphics of a crappy 1.6 GHz Intel Atom.

Edit: And we have reports of over 150 MH/s on a GTX 760 Ti ;)

Edited by apemanzilla, 08 January 2016 - 06:13 PM.


#970 apemanzilla

  • Members
  • 1,421 posts

Posted 09 January 2016 - 01:08 AM

Woo! Behold the first block ever solved by my OpenCL miner!

Posted Image

#971 3d6

  • Members
  • 336 posts

Posted 09 January 2016 - 05:09 AM

Difficulty now adjusts automatically! This will be important once the transition to GPU mining begins.

#972 Anavrins

  • Members
  • 775 posts

Posted 09 January 2016 - 06:25 AM

Welp, sucks that my GPU gave up this summer, I guess mining is done for me :P

#973 クデル

  • Members
  • 349 posts

Posted 09 January 2016 - 07:06 PM

View Post3d6, on 09 January 2016 - 05:09 AM, said:

Difficulty now adjusts automatically! This will be important once the transition to GPU mining begins.

It has and the database cant keep up, woohoo

#974 Tripy998

  • Members
  • 104 posts
  • LocationIn Front of Computer

Posted 11 January 2016 - 09:53 PM

View Post3d6, on 09 January 2016 - 05:09 AM, said:

Difficulty now adjusts automatically! This will be important once the transition to GPU mining begins.

I'm still not even making one Krist XD
By the way, have you considered adding a economical value to krist?

#975 Creator

    Mad Dash Victor

  • Members
  • 2,168 posts
  • LocationYou will never find me, muhahahahahaha

Posted 11 January 2016 - 10:22 PM

View PostTripy998, on 11 January 2016 - 09:53 PM, said:

View Post3d6, on 09 January 2016 - 05:09 AM, said:

Difficulty now adjusts automatically! This will be important once the transition to GPU mining begins.

I'm still not even making one Krist XD
By the way, have you considered adding a economical value to krist?

Yeah, one krist sells for 10^10^10 euros!

Actually, shouldn't it adjust itself based on demand?

#976 apemanzilla

  • Members
  • 1,421 posts

Posted 12 January 2016 - 04:20 AM

View PostCreator, on 11 January 2016 - 10:22 PM, said:

View PostTripy998, on 11 January 2016 - 09:53 PM, said:

View Post3d6, on 09 January 2016 - 05:09 AM, said:

Difficulty now adjusts automatically! This will be important once the transition to GPU mining begins.

I'm still not even making one Krist XD
By the way, have you considered adding a economical value to krist?

Yeah, one krist sells for 10^10^10 euros!

Actually, shouldn't it adjust itself based on demand?

There is no demand however.

#977 bigbrainiac10

  • Members
  • 41 posts

Posted 12 January 2016 - 09:04 AM

View Postapemanzilla, on 12 January 2016 - 04:20 AM, said:

View PostCreator, on 11 January 2016 - 10:22 PM, said:

View PostTripy998, on 11 January 2016 - 09:53 PM, said:

View Post3d6, on 09 January 2016 - 05:09 AM, said:

Difficulty now adjusts automatically! This will be important once the transition to GPU mining begins.

I'm still not even making one Krist XD
By the way, have you considered adding a economical value to krist?

Yeah, one krist sells for 10^10^10 euros!

Actually, shouldn't it adjust itself based on demand?

There is no demand however.

I would genuinely use the Krist I mine on servers and trade items for Krist. However, it seems that there aren't many people who accept Krist as payment...

For now I suppose I'll just horde until I come up with a use for it.

#978 Creator

    Mad Dash Victor

  • Members
  • 2,168 posts
  • LocationYou will never find me, muhahahahahaha

Posted 12 January 2016 - 12:17 PM

Also, the fact that someone owns the database means he can change it at his will. Not a good idea.

#979 ry00000

  • Members
  • 244 posts
  • LocationComputer, Base, SwitchCraft, Cube-earth, Blockiverse, Computer

Posted 12 January 2016 - 01:40 PM

Does someone have a miner for a Raspberry Pi?
I have an old Model B laying around and would like it to mine some Krist. Preferrably python, I don't wanna go through the troule of installing Java.

#980 apemanzilla

  • Members
  • 1,421 posts

Posted 12 January 2016 - 06:19 PM

View Postry00000, on 12 January 2016 - 01:40 PM, said:

Does someone have a miner for a Raspberry Pi?
I have an old Model B laying around and would like it to mine some Krist. Preferrably python, I don't wanna go through the troule of installing Java.

I tried it on a B+ a while ago and got less than 30 KH/s. You're not going to earn any Krist at all with it - especially since GPU miners are now getting several hundred million hashes per second.

Edited by apemanzilla, 12 January 2016 - 06:20 PM.






3 user(s) are reading this topic

0 members, 3 guests, 0 anonymous users