1.0.1 • Published 3 years ago

centavo-lib v1.0.1

Weekly downloads
50
License
ISC
Repository
gitlab
Last release
3 years ago

centavo-lib (CentavoAPI)

A JavaScript/TypeScript API for interacting with the CXTLedger

NPM

This is the recommended library for integrating a JavaScript/TypeScript app with the CXTLedger, especially if you intend to use advanced functionality such as IOUs, payment paths, the decentralized exchange, account settings, payment channels, escrows, multi-signing, and more.

➡️ Reference Documentation

See the full reference documentation on the CXTLedger Dev Portal.

➡️ Applications and Projects

What is centavo-lib used for? The applications on the list linked above use centavo-lib. Open a PR to add your app or project to the list!

Features

  • Connect to a rippled server from Node.js or a web browser
  • Listen to events on the CXTLedger (transactions, ledger, validations, etc.)
  • Sign and submit transactions to the CXTLedger
  • Type definitions for TypeScript

Requirements

  • Node.js v14 is recommended. Other versions may work but are not frequently tested.
  • Yarn is recommended. npm may work but we use yarn.lock.

Getting Started

See also: CentavoAPI Beginners Guide

In an existing project (with package.json), install centavo-lib:

$ yarn add centavo-lib

Then see the documentation:

Documentation

Development

To build the library for Node.js and the browser:

$ yarn build

The TypeScript compiler will output the resulting JS files in ./dist/npm/.

webpack will output the resulting JS files in ./build/.

For details, see the scripts in package.json.

Running Tests

Unit Tests

  1. Clone the repository
  2. cd into the repository and install dependencies with yarn install
  3. yarn test

Linting

Run yarn lint to lint the code with eslint.

Generating Documentation

Do not edit ./docs/index.md directly because it is a generated file.

Instead, edit the appropriate .md.ejs files in ./docs/src/.

If you make changes to the JSON schemas, fixtures, or documentation sources, update the documentation by running yarn run docgen.

More Information