
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
stellar-payment-watcher
Advanced tools
Stellar payment watcher library for nodejs.
Install the package with:
npm i stellar-payment-watcher
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 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 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 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 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);
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
FAQs
Stellar payment watcher library
We found that stellar-payment-watcher demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.