Giter VIP home page Giter VIP logo

oura's Introduction

Oura

The tail of Cardano

GitHub Crates.io GitHub Workflow Status

Introduction

We have tools to "explore" the Cardano blockchain, which are useful when you know what you're looking for. We argue that there's a different, complementary use-case which is to "observe" the blockchain and react to particular event patterns.

Oura is a rust-native implementation of a pipeline that connects to the tip of a Cardano node through a combination of Ouroboros mini-protocol (using either a unix socket or tcp bearer), filters the events that match a particular pattern and then submits a succint, self-contained payload to pluggable observers called "sinks".

Check our documentation for detailed information on how to start working with Oura.

Etymology

The name of the tool is inspired by the tail command available in unix-like systems which is used to display the tail end of a text file or piped data. Cardano's consensus procotol name, Ouroboros, is a reference to the ancient symbol depicting a serpent or dragon eating its own tail, which means "tail eating". "Oura" is the ancient greek word for "tail".

Terminal Output Demo

In this terminal recording we get to see a few mins of live output from a testnet node connected to the terminal sink.

Terminal Demo

watch full asciicast

Under the Hood

All the heavy lifting required to communicate with the Cardano node is done by the Pallas library, which provides an implementation of the Ouroboros multiplixer and a few of the required mini-protocol state-machines (ChainSync and LocalState in particular).

The data pipeline makes heavy use (maybe a bit too much) of multi-threading and mpsc channels provided by Rust's std::sync library.

Use Cases

CLI to Watch Live Transactions

You can run oura watch <socket> to print TX data into the terminal from the tip of a local or remote node. It can be useful as a debugging tool for developers or if you're just curious to see whats going on in the network (for example, to see airdrops as they happen or oracles posting new information).

As a Bridge to Other Persistence Mechanisms

Similar to the well-known db-sync tool provided by IOHK, Oura can be used as a daemon to follow a node and output the data into a different data storage techonology more suited for your final use-case. The main difference with db-sync is that Oura was designed for easy integration with data-streaming pipelines instead of relational databases.

Given its small memory / cpu footprint, Oura can be deployed side-by-side with your Cardano node even in resource-constrained environments, such as Raspberry PIs.

As a Trigger of Custom Actions

Oura running in daemon mode can be configured to use custom filters to pinpoint particular transaction patterns and trigger actions whenever it finds a match. For example: send an email when a particular policy / asset combination appears in a transaction; call an AWS Lambda function when a wallet delegates to a particular pool; send a http-call to a webhook each time a metadata key appears in the TX payload;

As a Library for Custom Scenarios

If the available out-of-the-box features don't satisfiy your particular use-case, Oura can be used a library in your Rust project to setup tailor-made pipelines. Each component (sources, filters, sinks, etc) in Oura aims at being self-contained and reusable. For example, custom filters and sinks can be built while reusing the existing sources.

How it Works

Oura is in its essence just a pipeline for proccessing events. Each stage of the pipeline fulfills a different roles:

  • Source Stages: are in charge of pulling data from the blockchain and mapping the raw blocks into smaller, more granular events. Each event is then sent through the output port of the stage for further processing.
  • Filter Stages: receive individual events from the source stage and apply some sort of transformation to each one. The transformations applied will depend on the particular use-case, but they usually revolve around selecting relevant events and enriching them with extra information.
  • Sink Stages: receive the final events from the filter stage and submits the payload to some external system, database or service for further processing.

diagram

Feature Status

  • Sources
    • chain-sync full-block (node-to-client)
    • chain-sync + block-fetch (node-to-node)
    • Parsing of Shelley-compatible blocks (Shelley, Allegra, Mary, Alonzo)
    • Parsing of Byron blocks
  • Sinks
    • Kafka topic
    • Elasticsearch index / data stream
    • Rotating log files with compression
    • Redis streams
    • AWS SQS queue
    • AWS Lambda call
    • AWS S3 objects
    • GCP Sinks
    • Azure Sinks
    • webhook (http post)
    • terminal (append-only, tail-like)
  • Events / Parsers
    • block events (start, end)
    • transaction events (inputs, outputs, assets)
    • metadata events (labels, content)
    • mint events (policy, asset, quantity)
    • pool registrations events
    • delegation events
    • CIP-25 metadata parser (image, files)
    • CIP-15 metadata parser
  • Filters
    • cherry pick by event type (block, tx, mint, cert, etc)
    • cherry pick by asset subject (policy, name, etc)
    • cherry pick by metadata keys
    • cherry pick by block property (size, tx count)
    • cherry pick by tx property (fee, has native script, has plutus script, etc)
    • cherry pick by utxo property (address, asset, amount range)
    • enrich events with policy info from external metadata service
    • enrich input tx info from Blockfrost API
    • enrich addresses descriptions using ADAHandle
  • Other
    • stateful chain cursor to recover from restarts
    • buffer stage to hold blocks until they reach a certain depth
    • pipeline metrics to track the progress and performance

Known Limitations

  • Oura only knows how to process blocks from the Shelley era. We are working on adding support for Byron in a future release. (available since v1.2)
  • Oura reads events from minted blocks / transactions. Support for querying the mempool is planned for a future release.
  • Oura will notify about chain rollbacks as a new event. The business logic for "undoing" the already processed events is a responsability of the consumer. We're working on adding support for a "buffer" filter stage which can hold blocks until they reach a configurable depth (number of confirmations). (rollback buffer available since v1.2)

Contributing

All contributions are welcome, but please read the contributing guide of the project before starting to code.

License

This project is licensed under the Apache-2.0 license. Please see the LICENSE file for more details.

oura's People

Contributors

alejandrod-iov avatar dependabot[bot] avatar federicoweill avatar mark-stopka avatar pavlix avatar rinor avatar rvcas avatar savaki avatar scarmuega avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.