Skip to content
This repository has been archived by the owner on Jul 14, 2020. It is now read-only.

Latest commit

 

History

History
68 lines (54 loc) · 3.16 KB

File metadata and controls

68 lines (54 loc) · 3.16 KB

Getting started for third-party integrators ==========================================

Note

Exchanges interested in or currently listing ada should move to a Shelley-supported version of Cardano.

Warning

Old components like cardano-sl:node, cardano-sl:explorer, cardano-sl:wallet will not be supported after the Shelley Hard-fork.

Only the following components are Shelley compliant and will be supported during and after the Shelley hard-fork and support both Byron and Shelley eras.

  • cardano-node - the latest cardano-node, which supports Ouroboros Praos.
  • cardano-db-sync - a necessary middleware to power both cardano-rest and cardano-graphql. This middleware stores blockchain data fetched from cardano-node in an intermediate database to enable higher-level interfaces for blockchain exploration.
  • cardano-wallet - This API is recommended for 3rd party wallets and exchanges who do not want to manage UTxOs for transactions themselves. Use it to send and receive payments from hierarchical deterministic wallets on the Cardano blockchain via HTTP REST or a command-line interface.
  • cardano-rest - is made of two HTTP APIs that are used to retrieve transactions, addresses, and time periods (epochs and slots) from the cardano-db-sync component and submit an already serialized transaction to the network using cardano-explorer-api & cardano-submit-api respectively. The cardano-submit-api uses the same API as the cardano-sl:explorer to ease migration from already integrated clients. New integration should, however, look into cardano-graphql.
  • cardano-graphql - HTTP GraphQL API for Cardano. A more flexible alternative for blockchain exploration than cardano-rest.
  • Adrestia libraries - Recommended for larger exchanges who wish to construct their own wallet scheme and manage UTXOs themselves. This consists of the following:

The only currently available language target is Haskell, although support for JavaScript is being worked on and should be available soon.

Warning

Adrestia’s components and their respective repositories are also listed on Github.