2.0.0 • Published 3 months ago

@snickerdoodlelabs/indexers v2.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
3 months ago

Indexers

Snickerdoodle Protocol Indexers Package

Package Contents

  • src: Subdirectory containing source files for the indexers package
  • test: Subdirectory containing test files for the indexers package.

Summary

The indexers package exists as an abstraction on top of various indexing providers, blockchains, and node data sources. In essence it serves as a general interface for polling transactions (and possibly other blockchain data) for use by the data wallet core. Polling logic for the data wallet can be found in the core at MonitoringService.ts.

Install Dependencies

Steps to install and run this project this locally:

yarn install

Compiling

Use yarn to compile the project like this:

yarn compile

This command should always be run before committing changes.

Testing

To run unit tests run:

yarn test

Unit testing files are located in test. See test/README for details.