All Projects → 0xs34n → blockchain-cli

0xs34n / blockchain-cli

Licence: Apache-2.0 license
⛓️ A minimal blockchain command-line interface.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to blockchain-cli

DAPSCoin
DAPS is the world's first coin to implement Bulletproofs and RingCT & Ring Signatures in a staking chain. With DAPS it is possible to stake, run masternodes and mine PoA blocks.
Stars: ✭ 58 (-94.91%)
Mutual labels:  cryptocurrencies, blockchain-technology
electronero
Electronero Network: a secure, private, mobile based cryptocurrency network. 5 parallel, interoperable, scalable, lightning fast blockchains. Electronero $(ETNX) https://t.me/electronero_network, Electronero Pulse $(ETNXP) https://t.me/etnxp, LITENERO $(LTNX) https://t.me/litenero, GOLDNERO $(GLDX) https://t.me/goldnero, CRYSTALEUM $(CRFI) https…
Stars: ✭ 18 (-98.42%)
Mutual labels:  cryptocurrencies, blockchain-technology
LibraBrowser
LibraBrowser
Stars: ✭ 37 (-96.75%)
Mutual labels:  cryptocurrencies, blockchain-technology
Blockchain Cli
⛓️ A minimal blockchain command-line interface.
Stars: ✭ 1,075 (-5.62%)
Mutual labels:  cryptocurrencies, blockchain-technology
coinaly
🚀 Fast and easy to use mobile trade interface for cryptocurrencies. Track your trades to the moon and beyond. Currently only for Bittrex.
Stars: ✭ 32 (-97.19%)
Mutual labels:  cryptocurrencies, blockchain-technology
Gulden Official
Blockchain as intended
Stars: ✭ 126 (-88.94%)
Mutual labels:  cryptocurrencies, blockchain-technology
Gekko Backtesttool
Batch backtest, import and strategy params optimalization for Gekko Trading Bot. With one command you will run any number of backtests.
Stars: ✭ 203 (-82.18%)
Mutual labels:  cryptocurrencies
linX
Linx - A mineable blockchain based digital currency.
Stars: ✭ 21 (-98.16%)
Mutual labels:  blockchain-technology
Cryptocurrencies
📋 Get a list of all the cryptocurrency symbols and names.
Stars: ✭ 186 (-83.67%)
Mutual labels:  cryptocurrencies
Socktrader
🚀 Websocket based trading bot for 💰cryptocurrencies 📈
Stars: ✭ 152 (-86.65%)
Mutual labels:  cryptocurrencies
photos
"Fx Fotos" is an opensource gallery app in react native with the same smoothness and features of Google Photos and Apple Photos. It is backend gnostic and connects to decentralized backends like "box", "Dfinity", "Filecoin" and "Crust".
Stars: ✭ 620 (-45.57%)
Mutual labels:  blockchain-technology
Blockchain-Alpha
Alpha from various sectors in the blockchain space.
Stars: ✭ 102 (-91.04%)
Mutual labels:  blockchain-technology
docker-electrumx
Run an Electrum server with one command
Stars: ✭ 87 (-92.36%)
Mutual labels:  cryptocurrencies
Monerobook
Mastering Monero Book
Stars: ✭ 211 (-81.47%)
Mutual labels:  cryptocurrencies
theta-infrastructure-ledger-explorer
Explorer for the Theta Ledger
Stars: ✭ 57 (-95%)
Mutual labels:  blockchain-technology
Comit Rs
Reference implementation of COMIT, an open protocol facilitating trustless cross-blockchain applications.
Stars: ✭ 190 (-83.32%)
Mutual labels:  cryptocurrencies
OpenTender
E-portal for government tender process using Hyperledger (Blockchain) technology.
Stars: ✭ 18 (-98.42%)
Mutual labels:  blockchain-technology
Catalyst
An Algorithmic Trading Library for Crypto-Assets in Python
Stars: ✭ 2,311 (+102.9%)
Mutual labels:  cryptocurrencies
Algotrading
Algorithmic trading framework for cryptocurrencies.
Stars: ✭ 249 (-78.14%)
Mutual labels:  cryptocurrencies
awesome-bitcoin-cash
Bitcoin Cash projects & resources
Stars: ✭ 28 (-97.54%)
Mutual labels:  cryptocurrencies



Blockchain CLI

A minimal blockchain command-line interface.

Gitter


screenshot

🎉 Features

  • 💎 Blocks with index, hash, data, and timestamp.
  • Proof-of-work system.
  • In-memory JavaScript array to store the blockchain.
  • Block integrity validation.
  • 📡 Decentralized and distributed peer-to-peer communication.
  • 🌴 Merkle tree implementation

📦 Installation

To install this application, you'll need Node.js (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-cli

# Go into the repository
$ cd blockchain-cli

# Install dependencies
$ npm install

# Run the app
$ npm start

⚒️ Built With

🎫 License

This project is licensed under the Apache-2.0 License - see the LICENSE file for details

🙏 Acknowledgments

  • This article written by Lauri Hartikka.
  • Original repo by Lauri Hartikka
  • Antony Jone's fork for refactoring.
  • Nick Fallon fork for PoW implementation.
  • Logo designed by Muammark / Freepik.
  • FAQ by /u/sheepiroth

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