All Projects → cruzbit → Cruzbit

cruzbit / Cruzbit

Licence: mit
A simple decentralized peer-to-peer ledger implementation

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Projects that are alternatives of or similar to Cruzbit

Feathercoin
Stars: ✭ 126 (+6.78%)
Mutual labels:  cryptocurrency, p2p, cryptography
Bitcoin
Bitcoin Core integration/staging tree
Stars: ✭ 60,211 (+50926.27%)
Mutual labels:  cryptocurrency, p2p, cryptography
Particl Desktop
The GUI application for Particl Markeplace and PART coin wallet. A decentralized peer to peer marketplace –free, secure, private, untraceable.
Stars: ✭ 131 (+11.02%)
Mutual labels:  cryptocurrency, p2p, decentralized
Gun
An open source cybersecurity protocol for syncing decentralized graph data.
Stars: ✭ 15,172 (+12757.63%)
Mutual labels:  p2p, cryptography, decentralized
Lbry Sdk
The LBRY SDK for building decentralized, censorship resistant, monetized, digital content apps.
Stars: ✭ 7,169 (+5975.42%)
Mutual labels:  cryptocurrency, p2p, decentralized
Unstoppable Wallet Android
A secure and decentralized Bitcoin and other cryptocurrency wallet for Android phones. Supports Bitcoin, Ethereum, EOS, Binance Chain, Bitcoin Cash, DASH, ...
Stars: ✭ 165 (+39.83%)
Mutual labels:  cryptocurrency, p2p, decentralized
Unstoppable Wallet Ios
A secure and decentralized Bitcoin and other cryptocurrency wallet for iPhone. Supports Bitcoin, Ethereum, EOS, Binance Chain, Bitcoin Cash, DASH, ...
Stars: ✭ 180 (+52.54%)
Mutual labels:  cryptocurrency, p2p, decentralized
Decentralized Internet
A SDK/library for decentralized web and distributing computing projects
Stars: ✭ 406 (+244.07%)
Mutual labels:  p2p, cryptography, decentralized
Monero
Monero: the secure, private, untraceable cryptocurrency
Stars: ✭ 6,503 (+5411.02%)
Mutual labels:  cryptocurrency, p2p, cryptography
Firo
The privacy-focused cryptocurrency
Stars: ✭ 528 (+347.46%)
Mutual labels:  cryptocurrency, p2p, cryptography
Qtum
Qtum Core Wallet
Stars: ✭ 1,080 (+815.25%)
Mutual labels:  cryptocurrency, p2p, cryptography
Ipchain
IPChain Core Wallet
Stars: ✭ 26 (-77.97%)
Mutual labels:  cryptocurrency, p2p, cryptography
Conceal Core
Conceal Core - Daemon & Wallets (CLI)
Stars: ✭ 72 (-38.98%)
Mutual labels:  cryptocurrency, p2p, decentralized
Orion
[Moved to Gitlab] Easy to Use, Inter Planetary File System (IPFS) desktop client
Stars: ✭ 115 (-2.54%)
Mutual labels:  p2p, decentralized
Lightning Rfc
Lightning Network Specifications
Stars: ✭ 1,224 (+937.29%)
Mutual labels:  cryptocurrency, cryptography
Js Dag Service
Library for storing and replicating hash-linked data over the IPFS network.
Stars: ✭ 81 (-31.36%)
Mutual labels:  p2p, decentralized
Bitcoin Cryptography Library
Nayuki's implementation of cryptographic primitives used in Bitcoin.
Stars: ✭ 81 (-31.36%)
Mutual labels:  cryptocurrency, cryptography
Waves Api
Waves API library for Node.js and browser
Stars: ✭ 78 (-33.9%)
Mutual labels:  cryptocurrency, cryptography
Cabal Client
interface for writing peer-to-peer distributed chat clients
Stars: ✭ 81 (-31.36%)
Mutual labels:  p2p, decentralized
Onionr
Private Decentralized Communication Network 🎭 🧅
Stars: ✭ 84 (-28.81%)
Mutual labels:  p2p, decentralized

cruzbit

A simple decentralized peer-to-peer ledger implementation

Build Status

cruzbit is very similar to bitcoin with the following notable differences:

  • Newer crypto - The Ed25519 signature system is used for signing transactions. This system has a number of nice properties to protect users from security risks present with naive usage of ECDSA. The 256-bit version of the SHA-3 hashing algorithm is used for all hashing operations in the application, including the proof-of-work function but excluding hashing performed internally by the signature system. It's reported to be blazing fast when implemented in hardware. NaCl Secretbox is used to encrypt wallet private keys (not part of the protocol.)
  • Simplified transaction format - No inputs and outputs. Just public key sender and receiver with a time, amount, explicit fee, memo field, pseudo-random nonce, series and signature. The series is incremented network-wide roughly once a week based on block height to allow for pruning transaction history. Also included are 2 optional fields for specifying maturity and expiration, both at a given block height.
  • No UTXO set - This is a consequence of the second point. It considerably simplifies ledger construction and management as well as requires a wallet to know only about its public key balances and the current block height. It also allows the ledger to map more directly to the well-understood concept of a double-entry bookkeeping system. In cruzbit, the sum of all public key balances must equal the issuance at the current block height. This isn't the first ledger to get rid of the UTXO set model but I think we do it in a uniquely simple way.
  • No scripting - This is another consequence of the second point. Signatures are simply signatures and not tiny scripts. It's a bit simpler and arguably safer. It does limit functionality, e.g. there is no native notion of a multi-signature transaction, however, depending on your needs, you can come close to accomplishing that using mechanisms external to cruzbit.
  • No fixed block size limit - Since transactions in cruzbit are more-or-less fixed size we cap blocks by transaction count instead, with the initial limit being 10,000 transactions. This per-block transaction limit increases with "piecewise-linear-between-doublings growth." This means the limit doubles roughly every 2 years by block height and increases linearly between doublings up until a hard limit of 2,147,483,647. This was directly inspired by BIP 101. We use block height instead of time since another change in cruzbit is that all block headers contain the height (as well as the total cumulative chain work.)
  • Reference implementation is in Go - Perhaps more accessible than C++. Hopefully it makes blockchain programming a bit easier to understand and attracts a wider variety of developer interest.
  • Web-friendly peer protocol - Peer communication is via secure WebSockets. And the peer protocol and all primitives are structured in JSON. This should make working with the protocol easy for just about every modern development environment.

Why does cruzbit exist?

I noticed most people focusing on making more complex ledgers capable of executing "smart" contracts and/or crypto-magically obscuring transaction details and such. And I think those projects are pretty cool, but I'd always wanted to attempt to do the opposite and implement the simplest decentralized ledger I possibly could given lessons learned from bitcoin. I think that's what cruzbit is. Anything that I thought wasn't strictly necessary in bitcoin, or was otherwise weird, I got rid of. I wanted the design to be conceptually simple and extremely developer-friendly. I finally had some personal time on my hands so I decided, why not. And now cruzbit exists.

License

cruzbit is released under the terms of the MIT license. See LICENSE for more information or see https://opensource.org/licenses/MIT.

Warning

cruzbit is experimental alpha-quality software. There may be bugs.

Getting started mining

If you missed out on the opportunity to mine other cryptocurrencies you could give cruzbit a try!

  1. Install Go
  2. Install the wallet
  3. Run the wallet and issue a newkey command. Record the public key.
  4. Install the client
  5. Run the client using the public key from step 4. as the -pubkey argument.

Complete steps for installation of Go and the cruzbit binaries on Linux can be found here.

Steps to enable mining with CUDA for Nvidia GPUs can be found here.

Steps to enable mining with OpenCL (for all GPUs, including AMD) can be found here.

Like bitcoin, any blocks you mine will need to have an additional 100 blocks mined on top of them prior to the new cruzbits being applied to your balance. This is to mitigate a potentially poor user experience in the case of honest blockchain reorganizations.

Also note, instead of mining with a single public key, you can use the wallet to generate many keys and dump the public keys to a text file which the client will accept as a -keyfile argument. The wallet commands to do this are genkeys and dumpkeys.

Not interested in mining but want to play with cruzbit?

No problem! You can run the client with -numminers 0 so that it can function as your wallet peer.

Discussion

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].