haskoin-store-data: Data for Haskoin Store

[ bitcoin, finance, library, mit, network ] [ Propose Tags ]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.25.0, 0.25.1, 0.25.2, 0.25.3, 0.25.4, 0.26.0, 0.26.1, 0.26.2, 0.26.3, 0.26.4, 0.26.5, 0.26.6, 0.27.0, 0.28.0, 0.29.0, 0.29.1, 0.29.3, 0.30.0, 0.30.1, 0.31.0, 0.32.0, 0.32.1, 0.32.2, 0.32.3, 0.33.0, 0.33.1, 0.34.0, 0.34.1, 0.34.2, 0.34.3, 0.34.4, 0.34.5, 0.34.6, 0.34.7, 0.35.0, 0.35.1, 0.35.2, 0.36.0, 0.36.2, 0.36.4, 0.37.0, 0.37.1, 0.37.2, 0.37.3, 0.37.4, 0.37.5, 0.38.0, 0.38.1, 0.40.0, 0.40.2, 0.41.0, 0.41.3, 0.42.1, 0.43.0, 0.44.0, 0.45.0, 0.46.1, 0.46.2, 0.46.3, 0.46.4, 0.46.6, 0.47.0, 0.47.1, 0.47.2, 0.47.3, 0.47.4, 0.48.0, 0.49.0, 0.50.1, 0.51.0, 0.52.0, 0.52.5, 0.52.6, 0.52.9, 0.52.10, 0.52.11, 0.52.12, 0.52.13, 0.53.0, 0.53.1, 0.53.2, 0.53.3, 0.53.4, 0.53.5, 0.53.6, 0.53.7, 0.53.8, 0.53.9, 0.53.10, 0.53.11, 0.54.0, 0.55.0, 0.56.0, 0.57.0, 0.58.0, 0.59.0, 0.60.0, 0.61.0, 0.61.1, 0.62.0, 0.62.1, 0.63.0, 0.64.0, 0.64.1, 0.64.2, 0.64.3, 0.64.4, 0.64.5, 0.64.6, 0.64.7, 0.64.8, 0.64.9, 0.64.10, 0.64.11, 0.64.12, 0.64.13, 0.64.14, 0.64.15, 0.64.16, 0.64.17, 0.64.18, 0.64.19, 0.65.0, 0.65.1, 0.65.2, 0.65.5, 1.0.0, 1.0.1, 1.0.2, 1.1.0, 1.2.0, 1.2.2, 1.2.5, 1.3.0
Change log CHANGELOG.md
Dependencies aeson (>=1.4.7.1), base (>=4.9 && <5), binary (>=0.8.8.0), bytes (>=0.17), bytestring (>=0.10.10.0), cereal (>=0.5.8.1), containers (>=0.6.2.1), data-default (>=0.7.1.1), deepseq (>=1.4.4.0), hashable (>=1.3.0.0), haskoin-core (>=0.19.0), http-client (>=0.6.4.1), http-types (>=0.12.3), lens (>=4.18.1), mtl (>=2.2.2), network (>=3.1.1.1), scotty (>=0.11.5), string-conversions (>=0.4.0.1), text (>=1.2.3.0), unordered-containers (>=0.2.10), wreq (>=0.5.3.2) [details]
License MIT
Author Jean-Pierre Rupp
Maintainer jprupp@protonmail.ch
Category Bitcoin, Finance, Network
Home page http://github.com/haskoin/haskoin-store#readme
Bug tracker http://github.com/haskoin/haskoin-store/issues
Source repo head: git clone https://github.com/haskoin/haskoin-store.git
Uploaded by jprupp at 2021-03-12T10:57:45Z
Distributions LTSHaskell:1.2.5, NixOS:1.2.2
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 58380 total (154 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for haskoin-store-data-0.49.0

[back to package description]

Haskoin Store

Block chain store and index featuring:

  • Persistent storage using RocksDB.
  • Bitcoin Cash (BCH) support.
  • Bitcoin Core (BTC) support.
  • Indices for address balances, transactions, and unspent outputs (UTXO).
  • Persistent mempool.
  • Replace Bitcoin Core (BTC) RBF transactions by default.
  • Query transactions, balances and UTXO on extended keys (xpub).
  • Optional accelerated xpub cache using Redis.
  • RESTful API with JSON and binary serialization.
  • High performance concurrent architecture.

Quick Install with Nix Anywhere

nix-env --install stack
git clone https://github.com/haskoin/haskoin-store.git
cd haskoin-store
stack --nix build --copy-bins
~/.local/bin/haskoin-store --help

Install on Ubuntu 20.04 or Debian 10

apt install git libsecp256k1-dev librocksdb-dev pkg-config
git clone https://github.com/haskoin/haskoin-store.git
cd haskoin-store
stack build --copy-bins
~/.local/bin/haskoin-store --help

Non-Haskell Dependencies

API Documentation