All Projects → seanjameshan → Blockchain

seanjameshan / Blockchain

📖Code for Blockchain Demo

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Blockchain

Awesome Substrate
A curated list of awesome projects and resources related to the Substrate blockchain development framework.
Stars: ✭ 228 (-68.2%)
Mutual labels:  blockchain, cryptography
Goandblockchainstudy
go and blockchain study note,欢迎各位志同道合的朋友一起完善,让更多的go或者区块链开发者能够有一份不错的学习资料
Stars: ✭ 400 (-44.21%)
Mutual labels:  blockchain, cryptography
Awesome Blockchain Rust
Collect libraries and packages about blockchain/cryptography in Rust
Stars: ✭ 251 (-64.99%)
Mutual labels:  blockchain, cryptography
Gun
An open source cybersecurity protocol for syncing decentralized graph data.
Stars: ✭ 15,172 (+2016.04%)
Mutual labels:  blockchain, cryptography
Firo
The privacy-focused cryptocurrency
Stars: ✭ 528 (-26.36%)
Mutual labels:  blockchain, cryptography
Blockchain Crypto Mpc
Protecting cryptographic signing keys and seed secrets with Multi-Party Computation.
Stars: ✭ 193 (-73.08%)
Mutual labels:  blockchain, cryptography
Rippled
Decentralized cryptocurrency blockchain daemon implementing the XRP Ledger in C++
Stars: ✭ 4,029 (+461.92%)
Mutual labels:  blockchain, cryptography
Library
Collection of papers in the field of distributed systems, game theory, cryptography, cryptoeconomics, zero knowledge
Stars: ✭ 100 (-86.05%)
Mutual labels:  blockchain, cryptography
Iotex Core
Official implementation of IoTeX blockchain protocol in Go.
Stars: ✭ 505 (-29.57%)
Mutual labels:  blockchain, cryptography
Tendermint
⟁ Tendermint Core (BFT Consensus) in Go
Stars: ✭ 4,491 (+526.36%)
Mutual labels:  blockchain, cryptography
Cryptokernel
A SDK for implementing blockchain-based digital currencies
Stars: ✭ 146 (-79.64%)
Mutual labels:  blockchain, cryptography
Monero
Monero: the secure, private, untraceable cryptocurrency
Stars: ✭ 6,503 (+806.97%)
Mutual labels:  blockchain, cryptography
Multi Party Schnorr
Rust implementation of multi-party Schnorr signatures over elliptic curves.
Stars: ✭ 115 (-83.96%)
Mutual labels:  blockchain, cryptography
Iavl
Merkleized IAVL+ Tree implementation in Go
Stars: ✭ 197 (-72.52%)
Mutual labels:  blockchain, cryptography
Brightid
Reference mobile app for BrightID
Stars: ✭ 101 (-85.91%)
Mutual labels:  blockchain, cryptography
Multi Party Ecdsa
Rust implementation of {t,n}-threshold ECDSA (elliptic curve digital signature algorithm).
Stars: ✭ 339 (-52.72%)
Mutual labels:  blockchain, cryptography
Lightning Rfc
Lightning Network Specifications
Stars: ✭ 1,224 (+70.71%)
Mutual labels:  blockchain, cryptography
Tokenscript
TokenScript schema, specs and paper
Stars: ✭ 89 (-87.59%)
Mutual labels:  blockchain, cryptography
Decentralized Internet
A SDK/library for decentralized web and distributing computing projects
Stars: ✭ 406 (-43.38%)
Mutual labels:  blockchain, cryptography
Lnd
Lightning Network Daemon ⚡️
Stars: ✭ 5,623 (+684.24%)
Mutual labels:  blockchain, cryptography



Blockchaindemo.io

Code for learning the blockchain data structure


📦 Installation

To install this application, you'll need Node.js 7+ (which comes with npm) installed on your computer. From your command line:

Source

You'll need Git to run the project from source. From your command line:

# Clone this repository
$ git clone https://github.com/seanseany/blockchain

# Go into the repository
$ cd blockchain

# Install dependencies
$ npm install

# Run the app
$ npm start

ℹ️ FAQ

When or why I would use this?

You should use this if you want to build a bitcoin wallet, payment processor, or bitcoin merchant portal in javascript. You might also be interested in why decentralized networks or p2p applications are useful, or what advantages they have; this project seems like a good way to learn about that.

What is the block chain actually for?

The blockchain is for authorizing payments of a cryptocurrency between two peers without the need for a centralized 3rd party approving of the transaction. There are other uses of the blockchain which are more in line with the second point, digital signatures, but they are secondary to the main purpose of peer to peer transfer of value. Bitcoin is blockchain's killer app.

Why the hell should I care about the blockchain?

Blockchain facilitates trade over a network. Imagine a metal as scarce as gold with a magical property of "can be transported over a communications channel". This has implications with respect to individual rights, the world economy, and the way we monetize and transfer value at a level higher than bartering directly for goods.

Lately people are distancing themselves from the proof-of-work concept and are using blockchain to describe only the mechanism of signing a transaction as verification of sending an amount. Change "sending an amount" to almost anything else - authorizing a change in a ruleset, casting a vote for a politician, verifying a point of IoT data is authentic. Now add in the concept of a peer-to-peer network to this and you've eliminated a middleman that once existed, thereby improving the efficiency and reducing cost. In these cases, "blockchain" refers to the structuring of a program or database in such a way that it has no central point of failure while still providing all of the features expected. For example, augur and gnosis are decentralized prediction markets. Ethereum has implemented smart contracts which enable decentralized release of funds based on a gambling outcome.

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].