Search content
Sort by

Showing 12 of 12 results by asdvxgxasjab
Post
Topic
Board Mining (Altcoins)
Re: cruzbit: A simple decentralized peer-to-peer ledger implementation
by
asdvxgxasjab
on 10/08/2019, 16:30:14 UTC
The answer @jstnryan gives is fairly complete. I'd only add that cruzbit exists because for a long time I thought about what an even more simple and easy to use (and more modern!) bitcoin would look like. For example, I don't think the UTXO design is necessary and it adds more complexity than value. Similarly, given the vast majority of transactions are simple standard scripts which effectively transfer value from one public key to another, the scripting system seemed a bit silly. So I got rid of both of those things. And like has been said, I made all protocol messages and primitives JSON for ease of use. I'm not trying to innovate with flashy new bells and whistles. It's an attempt to refine an already amazing idea. I don't know if I succeeded in the eyes of others but I'm happy with the result. Thanks for even taking the time to read about cruzbit!
Post
Topic
Board Announcements (Altcoins)
Re: cruzbit: A simple decentralized peer-to-peer ledger implementation
by
asdvxgxasjab
on 10/08/2019, 16:18:58 UTC
This project didn't even bother to precompile a wallet for windows.
not worth my time

Currently the project doesn't distribute any binaries. It is really simple to create your own and much safer!
Post
Topic
Board Mining (Altcoins)
Re: cruzbit: A simple decentralized peer-to-peer ledger implementation
by
asdvxgxasjab
on 31/07/2019, 22:55:17 UTC
This update is to announce that OpenCL mining support is now available!

Please see the project README for instructions to enable it in your build.

Project repository: https://github.com/cruzbit/cruzbit

We're still solo mineable for the time being. Thanks!
Post
Topic
Board Mining (Altcoins)
Re: cruzbit: A simple decentralized peer-to-peer ledger implementation
by
asdvxgxasjab
on 28/07/2019, 00:15:50 UTC
Just wanted to update this thread to let everyone know that cruzbit is currently being traded on the qTrade exchange: https://qtrade.io/market/CRUZ_BTC

Also the estimated current network-wide hashrate is ~100 GH/s. Still solo mineable!
Post
Topic
Board Announcements (Altcoins)
Re: cruzbit: A simple decentralized peer-to-peer ledger implementation
by
asdvxgxasjab
on 21/07/2019, 18:57:03 UTC
Bumping the thread to announce that the qTrade exchange has enabled cruzbit trading!

Link: https://qtrade.io/market/CRUZ_BTC

Also, the cruzbit client now has built-in mining support for Nvidia GPUs!

Link to instructions: https://github.com/cruzbit/cruzbit/blob/master/cuda/BUILDING.md

Thanks for your interest!
Post
Topic
Board Mining (Altcoins)
Re: cruzbit: A simple decentralized peer-to-peer ledger implementation
by
asdvxgxasjab
on 21/07/2019, 18:32:35 UTC
Bumping the thread to announce that the cruzbit client now has built-in mining support for Nvidia GPUs!

Link to instructions: https://github.com/cruzbit/cruzbit/blob/master/cuda/BUILDING.md

Thanks for your interest!
Post
Topic
Board Announcements (Altcoins)
Re: cruzbit: A simple decentralized peer-to-peer ledger implementation
by
asdvxgxasjab
on 12/07/2019, 19:42:32 UTC
Hello! How do I get the mining software to mine this? I'm really interested. Thanks

Hey!

To start mining, follow the steps here: https://github.com/cruzbit/cruzbit#getting-started-mining

If you're running Linux, someone created a nice cheat-sheet for building the binaries: https://gist.github.com/setanimals/f562ed7dd1c69af3fbe960c7b9502615
Post
Topic
Board Announcements (Altcoins)
Topic OP
cruzbit: A simple decentralized peer-to-peer ledger implementation
by
asdvxgxasjab
on 12/07/2019, 17:58:22 UTC
Hello everyone,

I'm a long time bitcoin fan/user. For years I thought about rewriting bitcoin to be as simple as possible. There is a fair amount of complexity to the canonical bitcoin implementation that didn't strike me as strictly necessary. It makes understanding and working with the protocol difficult. I had some time recently, so I finally decided to implement what I thought was the simplest version of bitcoin that could exist. cruzbit is what I ended up with.

Project: https://github.com/cruzbit/cruzbit

More details: https://medium.com/@asdvxgxasjab/cruzbit-a-simple-decentralized-peer-to-peer-ledger-2944495b6129

In addition to simplicity, I wanted everything I used to be standard. I wanted an average developer to be able to run cruzbit and immediately start working with the protocol and talking to their client.

Highlights:

    Newer crypto: Ed25519 and SHA3
    Simplified transaction format: No inputs/outputs. No scripts.
    No UTXO: Account-model, but as far as I can tell, a novel simpler approach to it. No serial per-account nonce.
    No fixed block size limit: A variation of BIP 101 is implemented.
    Reference implementation is in Go. Completely new code base.
    Web/dev-friendly peer protocol: secure WebSockets and JSON for all protocol messages and primitives.


No premining or any of that funny business. The memo field of the coinbase transaction of the genesis block is timestamped with the bitcoin blockchain's tip block hash at the time of its creation. It's being CPU mined at the moment.

Any/all feedback is much appreciated. Would love to have some new miners join us. Take it easy!
Post
Topic
Board Mining (Altcoins)
Re: cruzbit: A simple decentralized peer-to-peer ledger implementation
by
asdvxgxasjab
on 06/07/2019, 18:32:53 UTC
Haha awesome! Smiley Thanks so much for your patience. And welcome to the cruzbit network!
Post
Topic
Board Mining (Altcoins)
Re: cruzbit: A simple decentralized peer-to-peer ledger implementation
by
asdvxgxasjab
on 06/07/2019, 04:14:41 UTC
Hmm strange and sorry again. I'll have to give it a try with that version on ARM. So far I've tested Windows, Linux (amd64), and MacOS only.

If you omit/unset GO111MODULE it should install, it just won't respect the module versions but at the moment that should be fine.

Thanks so much though!
Post
Topic
Board Mining (Altcoins)
Re: cruzbit: A simple decentralized peer-to-peer ledger implementation
by
asdvxgxasjab
on 06/07/2019, 01:53:50 UTC
I'm sorry about that!

If you're still up for giving it one last shot, this might work:

Quote
GO111MODULE=on go install github.com/cruzbit/cruzbit/wallet
Quote
GO111MODULE=on go install github.com/cruzbit/cruzbit/client

It also requires Go version 1.11+
Post
Topic
Board Mining (Altcoins)
Topic OP
cruzbit: A simple decentralized peer-to-peer ledger implementation
by
asdvxgxasjab
on 05/07/2019, 16:36:05 UTC
Hello everyone,

I'm a long time bitcoin fan/user. For years I thought about rewriting bitcoin to be as simple as possible. There is a fair amount of complexity to the canonical bitcoin implementation that didn't strike me as strictly necessary. It makes understanding and working with the protocol difficult. I had some time recently, so I finally decided to implement what I thought was the simplest version of bitcoin that could exist. cruzbit is what I ended up with.

Project: https://github.com/cruzbit/cruzbit

More details: https://medium.com/@asdvxgxasjab/cruzbit-a-simple-decentralized-peer-to-peer-ledger-2944495b6129

In addition to simplicity, I wanted everything I used to be standard. I wanted an average developer to be able to run cruzbit and immediately start working with the protocol and talking to their client.

Highlights:

  • Newer crypto: Ed25519 and SHA3
  • Simplified transaction format: No inputs/outputs. No scripts.
  • No UTXO: Account-model, but as far as I can tell, a novel simpler approach to it. No serial per-account nonce.
  • No fixed block size limit: A variation of BIP 101 is implemented.
  • Reference implementation is in Go. Completely new code base.
  • Web/dev-friendly peer protocol: secure WebSockets and JSON for all protocol messages and primitives.

It was born almost 2 weeks ago. No premining or any of that funny business. The memo field of the coinbase transaction of the genesis block is timestamped with the bitcoin blockchain's tip block hash at the time of its creation. It's being CPU mined at the moment.

Any/all feedback is much appreciated. Would love to have some new miners join us. Take it easy!