Socket
Book a DemoInstallSign in
Socket

stellar-payment-watcher

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stellar-payment-watcher

Stellar payment watcher library

latest
Source
npmnpm
Version
3.0.0
Version published
Maintainers
1
Created
Source

Stellar payment watcher

Version Build Status Coverage Status David David Try on RunKit

Stellar payment watcher library for nodejs.

Installation

Install the package with:

npm i stellar-payment-watcher

Usage

Initialization

import PaymentWatcher from 'stellar-payment-watcher';

// optional params
const options = {
  allowHttp: false, // Horizon server param
  appName: null, // Horizon server param
  appVersion: null, // Horizon server param
  horizonServerURL: 'https://horizon.stellar.org',
  limit: 100, // amount of transactions to load from given cursor
  reconnectTimeout: 15 * 1000, // Time in milliseconds before restart the watcher
  useTestNet: false, // only required to parse transaction object
}

const watcher = new PaymentWatcher(options);

Watch all payments

Watch all payments using Horizon payments stream.

// optional params
const options = {
  onmessage: (payment) => console.log(payment),
  onerror: (error) => console.error(error),
}

watcher.start(options);

Watch all payments from cursor

Watch all payments from given cursor and then use Horizon payments stream.

// optional params
const options = {
  cursor: '118556627971530752',
  onmessage: (payment) => console.log(payment),
  onerror: (error) => console.error(error),
}

watcher.start(options);

Watch all payments for given accounts

Watch all payments for given accounts using Horizon payments stream.

// optional params
const options = {
  accounts: ['GCBRK7UAKYJ2MG3NNPGHLW6P7LXM5YHB5G4UZA3YTWJ7PTCH6F4VJDH6', 'GDI47LBSD65TNLLH3R36SKLRTSEM4T7OMCZIHHMN2FEQPVSIBBKUNZMY'],
  onmessage: (payment) => console.log(payment),
  onerror: (error) => console.error(error),
}

watcher.start(options);

Watch all payments for given accounts from cursor

Watch all payments for given accounts using Horizon payments stream.

// optional params
const options = {
  cursor: '118556627971530752',
  accounts: ['GCBRK7UAKYJ2MG3NNPGHLW6P7LXM5YHB5G4UZA3YTWJ7PTCH6F4VJDH6', 'GDI47LBSD65TNLLH3R36SKLRTSEM4T7OMCZIHHMN2FEQPVSIBBKUNZMY'],
  onmessage: (payment) => console.log(payment),
  onerror: (error) => console.error(error),
}

watcher.start(options);

Development

Run all tests:

$ npm i
$ npm test

Run a single test suite:

$ npm run mocha -- test/lib/watcher.spec.js

Run a single test (case sensitive):

$ npm run mocha -- test/lib/watcher.spec.js --grep 'allowHttp'

Library based on Stellar Notifier

Keywords

stellar

FAQs

Package last updated on 23 Jan 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.