Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Bitcoin | 68,681 | 40 minutes ago | 2 | June 21, 2021 | 686 | mit | C++ | |||
Bitcoin Core integration/staging tree | ||||||||||
Ccxt | 27,601 | 122 | 6 | an hour ago | 13,116 | July 14, 2022 | 1,069 | mit | JavaScript | |
A JavaScript / Python / PHP cryptocurrency trading API with support for more than 100 bitcoin/altcoin exchanges | ||||||||||
Freqtrade | 21,044 | 2 | 3 hours ago | 42 | July 03, 2022 | 59 | gpl-3.0 | Python | ||
Free, open source crypto trading bot | ||||||||||
Lnd | 6,779 | 14 | 80 | an hour ago | 39 | November 24, 2021 | 628 | mit | Go | |
Lightning Network Daemon ⚡️ | ||||||||||
Jesse | 4,522 | 2 | 2 days ago | 185 | July 07, 2022 | 8 | mit | Python | ||
An advanced crypto trading bot written in Python | ||||||||||
Crypto Signal | 4,317 | 3 months ago | 61 | mit | Python | |||||
Github.com/CryptoSignal - Trading & Technical Analysis Bot - 4,100+ stars, 1,100+ forks | ||||||||||
Cryptolist | 3,941 | a month ago | 101 | |||||||
Curated collection of blockchain & cryptocurrency resources. | ||||||||||
Awesome Blockchain | 2,711 | a month ago | 6 | mit | Go | |||||
⚡️Curated list of resources for the development and applications of blockchain. | ||||||||||
Cryptocurrency Icons | 2,373 | 30 | 19 | 2 months ago | 31 | August 22, 2022 | 77 | cc0-1.0 | JavaScript | |
A set of icons for all the main cryptocurrencies and altcoins, in a range of styles and sizes. | ||||||||||
Wallet Core | 2,168 | 3 | 2 hours ago | 59 | September 20, 2022 | 20 | mit | C++ | ||
Cross-platform, cross-blockchain wallet library. |
A proof-of-concept for stateless Bitcoin nodes, based on the accumulator crate. Provided totally as-is and probably will not be maintained, though the authors of this simulation are more than happy to answer your questions.
See the accumulator repo for general setup instructions.
Just cargo run
.
The concept for this simulation is adapted from Batching Techniques for Accumulators with Applications to IOPs and Stateless Blockchains (Boneh, Bünz, and Fisch 2018) [Link].
We envision three kinds of actors in a stateless Bitcoin ecosystem (some familiarity with Bitcoin and accumulators is assumed):
In our simulation, each user issues a single transaction per block, and miners cut blocks every t
milliseconds. There are n
users assigned to each of m
bridge nodes, for a total of n * m
users
in the system. Although we include r
different miners in the simulation, one of them is always
elected leader to establish consensus.
For more details, please review our code.