Skip to content

CardanoSolutions/kupo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

installation instructions

๐Ÿ“– User Manual | ๐Ÿค Contributing | ๐Ÿ’พ Changelog | Twitter Twitter (@KtorZ)


Kupo is fast, lightweight and configurable chain-index for the Cardano blockchain. It synchronizes data from the blockchain according to patterns matching addresses present in transaction outputs and builds a lookup table from matches to their associated output references, values, datums and scripts.

Roadmap

Cutting-edge work

The project keeps a changelog ๐Ÿ’พ in which all recent-but-not-yet-released changes can be seen. Changes in the changelog have been implemented and are available in latest builds from the master branch.

Warning

Work available on the master branch shall be considered unstable in the sense that interfaces may slightly change and database migrations may not work from a previous master commit. Keeping stability between unreleased commits is only a best-effort.

Planned work

The projects boards ๐ŸŽฏ list planned tasks that haven't been implemented but have reached enough maturity to be well-defined and scoped.

Future work

Finally, discussions ๐Ÿ’ก contains ongoing discussions regarding the future of Kupo, with design decisions still under consideration.

Compatibility

Kupo Cardano-node Ogmios Hydra
v2.9.* 9.0.0 v6.*.* 0.16.0
v2.8.* 8.7.* v6.*.* 0.13.0
v2.7.* 8.1.*, 8.6.* v6.*.* 0.13.0
v2.6.* 8.1.* v6.*.* N/A
v2.5.* 1.35.*, 8.1.* v5.*.* N/A

System Requirements

Category Value
Operating System Linux / MacOS
Architecture arm64 / amd64
RAM 256MB-2048MB1
CPU 2+ cores
Disk Storage 1MB-220GB2

Continuous Integration

Status Description
Docker image pulls
Nix build, providing static binary executables as artifacts.
User manual and API reference deployment.
Test code coverage. Learn more about the testing strategy.

Alternatives

Kupo is well-suited for small (or large) applications which need either:

  • a global chain index for resolving outputs by address, policy id or output reference;
  • a on-the-fly monitoring of an address, policy id or specific transaction output over a short period of time.

It runs in constant memory and is blazing fast. Yet, its use-cases are limited. Here below we provide some possible alternatives with different trade-offs:

Solution Ecosystem Key difference(s)
oura Rust Oura in itself does not provide any chain-indexing, but it supports pluggable sinks where filtered data from the Cardano blockchain can be dumped into (e.g. Elastic Search or Kafka). It also supports a wider variety of events. All-in-all, a good fit for more elaborate solutions.
adder Go Similar to Oura, Adder is is an event-emitter coupled with filters. Therefore, it requires a backend storage or an additional solution for handling and serving events coming from the chain. Like Kupo, it supports a variety of filters on addresses or assets albeit in a more direct way.
Java Yaci Store is a small component built on top of the Yaci libraries -- a collection of Java libraries for interacting with the Cardano networking protocols. It can be used as a library to deal with an event stream similar to Oura and Adder, or as a full blackbox solution storing into various storage solutions (SQLite, Redis, MongoDB, ...).
scrolls Rust Scrolls provides (at this stage) an in-memory aggregation engine via Redis. It allows applications to watch and react instantly on the evolution of some aggregated metric (see Scrolls' README for details about what metrics are supported). Because the data is fully stored in-memory, it is not possible to index the entire chain without resorting to large memory requirements. Hence it is more tailored to specific handpicked pieces of information. It also synchronizes blocks from the chain using the node-to-node protocol which means that it can do so on any remote node relay, but it is also slower (because a more defensive protocol) than the node-to-client protocol upon which Kupo relies.
carp Rust Carp is a modular blockchain indexer built on top of Oura; it synchronizes data in a PostgreSQL database based on behaviors described in tasks (Rust standalone plugins). Some pre-defined common tasks are already available, other can be written on-demand to fit one's use case. As a primary interface, Carps fully relies on PostgreSQL.
cardano-db-sync Haskell cardano-db-sync synchronizes ALL data from the Cardano blockchain, whereas Kupo focuses only on transaction outputs. This comes with obvious trade-offs in both on-disk storage, runtime requirements and performances. Kupo is usually an order of magnitude faster for retrieving outputs by address, stake address or policy id. Note also that like Carp, cardano-db-sync's primary interface is a PostgreSQL database whereas Kupo offers a higher-level HTTP API over JSON.

Sponsors

A big thank to all our sponsors ๐Ÿ’–.

Footnotes

  1. The maximum memory usage depends on runtime flags and internal settings. This can be made lower if necessary (possibly as small as a hundred megabytes) by tweaking those settings. The obvious counter-part being slower synchronization times when syncing over large chunks of data. When synchronized, however, this has close to no impact. โ†ฉ

  2. The size of the database depends on the patterns the indexer is configured with. Storing every single entry of Mainnet currently come close to ~220GB. However, if pruned (i.e. only keep unspent entries), Mainnet is around 12GB. โ†ฉ