Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/input-output-hk/Scorex
Modular blockchain framework. Public domain
https://github.com/input-output-hk/Scorex
Last synced: 3 months ago
JSON representation
Modular blockchain framework. Public domain
- Host: GitHub
- URL: https://github.com/input-output-hk/Scorex
- Owner: input-output-hk
- License: cc0-1.0
- Created: 2015-04-06T18:02:03.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-27T12:19:29.000Z (about 7 years ago)
- Last Synced: 2024-07-29T00:49:40.505Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 7.62 MB
- Stars: 503
- Watchers: 70
- Forks: 79
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
- Blockchain-Guide - ScoreX
README
Scorex - The modular blockchain framework
=========================**IMPORTANT: This is repository of outdated version 1 of Scorex framework that is not supported anymore. Second version of Scorex may be found at https://github.com/ScorexFoundation/Scorex.**
Motivation
----------There are two huge problems around cryptocurrencies development project Scorex aims to weaken:
* Bitcoin Core source code contains more 100K lines of code(80K of C++ only), Nxt is more than 45K
line of Java code. All parts of the design(network/transactional/consensus protocols) are mixed in a hard way.
So researchers and developers are not in good start positions to make experiments.In opposite, Scorex is less than 4K lines of Scala code. Transactional layer is as simple as that. Consensus algo
could be switched easily(with two consensus algos out of the box, one could be replaced with an another with
just one line of code edited!)* New coins are trying to make money immediately, often having just one or two pretty controversial
feature. Scorex is the free and open tool aiming to make other systems development easier.Features
--------* Compact, functional code
* Modular design
* Scala language
* Two 100% Proof-of-Stake consensus algos out of the box, Nxt-like and Qora-like. One algo could be replaced
with an another with just one line of code edited.
* Additional consensus module Proof-of-Work consensus algo is available as [separate module](https://github.com/ScorexProject/Permacoin-consensus)
* Simplest transactional model
* Asynchronous network layer on top of TCP
* JSON API
* Command line client for the JSON API
* Cryptographic primitives externalized into [separate scrypto framework](https://github.com/ScorexProject/scrypto)Getting Started
---------------* [Quick start guide](https://github.com/ScorexProject/Scorex/wiki/Getting-started)
* [Documentation](https://github.com/ScorexProject/Scorex/wiki)
* [Example project](https://github.com/ScorexProject/Lagonaki)
* [Additional consensus module](https://github.com/ScorexProject/Permacoin-consensus)
* [CI](http://23.94.190.226:8080/job/scorex/)
* [Releases](https://github.com/ScorexProject/Scorex/releases)Command-Line Client
-------------------Run ./cli.sh after launching server to issue API requests to it via command-line client. See API section below.
Some examples of CLI commands:* GET blocks/first
* POST payment {"amount":400, "fee":1, "sender":"2kx3DyWJpYYfLErWpRMLHwkL1ZGyKHAPNKr","recipient":"Y2BXLjiAhPUMSo8iBbDEhv81VwKnytTXsH"}More reading
------------Besides of [documentation](https://github.com/ScorexProject/Scorex/wiki) there are other resources describing Scorex:
Articles:
[The Architecture Of A Cryptocurrency](docs/articles/components.md)
[On the Way to a Modular Cryptocurrency, Part 1: Generic Block Structure](docs/articles/modular1.md)
[On the Way to a Modular Cryptocurrency, Part 2: Stackable API](docs/articles/modular2.md)
[On Private Blockchains, Technically](docs/artices/private-chains.md)
Readmes:
[Scorex-Basics Sub-Module](scorex-basics/README.md)
Others:
[API Description](docs/API.md)
Please join our mail-list: [https://groups.io/g/scorex-dev](https://groups.io/g/scorex-dev) .
Contributions
-------------Contributions are welcome! Please take a look into [issues](https://github.com/ConsensusResearch/Scorex-Lagonaki/issues).
Testing codebase is very small at the moment, so writing a test is not just good for start, but useful as well.License
-------To the extent possible under law, the authors have dedicated all copyright and related and neighboring
rights to this software to the public domain worldwide. This software is distributed without any warranty.
You can find applied CC0 license legalcode in the [COPYING](COPYING)