Skip to content

LittleCoin is a experimental browser-based cryptocurrency

Notifications You must be signed in to change notification settings

jeffbarg/Littlecoin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LittleCoin

Netlify Status

LittleCoin is an in-browser cryptocurrency built on React, Redux, WebCrypto, and WebSockets/EasyRTC.

Overview

This is not meant for real use, and should only be viewed as an educational project.

All operations (mining, sending and receiving coins) happen in browser. The only server component to this project is an instance of an EasyRTC server to orchestrate peer-to-peer connections. The latest version of this project is also kindly hosted on Netlify at https://littlecoin.io/. Right now, this version supports only running a full node on a main network. Future work will allow for light clients and seperate test networks for demonstration purposes.

The mining reward per block is 25 coins, and the difficulty for each block is 12 bits (three "0"s in the hexidecimal representation of the hash)

Quick Start

This project was bootstrapped with create-react-app. In order to run it locally:

  1. Download the project.
  2. Run npm install to download dependencies
  3. Run npm run start and visit http://localhost:3000/

You can add an address and start mining coins. Try opening two different browsers (could be on different devices!) and connecting to the same network "test". The blockchains should sync up in both browsers.

Development Roadmap

  • Visualize a blockchain using bootstrap components
  • Mine coins in the background, receive coins, and send coins (transactions are broadcast to all nodes, but are not executed until mined into a block)
  • Sync on a main network with all other nodes
  • Migrate from EasyRTC to a better WebRTC solution that allows full P2P connections
  • Investigate use of Merkle trees to allow for "light" client (remove need to download full blockchain)
  • Vary block difficulty to normalize mining time
  • Improve UI / UX to make the project more usable
  • Separate network "rooms" to allow test networks and a main network
  • Add unit test suite

FAQ

Is this actually useful?

Probably not. This project was inspired by Anders Brownworth's very helpful blockchain demo, and I wanted to take the concept a little further (add the ability to actually make transactions and sync with a P2P network). In theory, this is all that's required to make a fully-functional cryptocurrency.

The source code should hopefully be readable enough to follow along and learn about blockchains, but it likely has several bugs and is not guaranteed to be secure in any way.

How can I learn from this project?

The best way to learn about this project is to read the original Bitcoin paper, and try to understand how each part is implemented in the LittleCoin source code.

Some aspects of the paper ("light" clients, merkle tree transaction verification, etc...) are not yet implemented yet.

Contributing

JavaScript Style Guide

Releases

No releases published

Packages

No packages published

Languages